Interface AccessEntryProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AccessEntryProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:59.071Z")
@Stability(Stable)
public interface AccessEntryProps
extends software.amazon.jsii.JsiiSerializable
Represents the properties required to create an Amazon EKS access entry.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.eks.*; AccessPolicy accessPolicy; Cluster cluster; AccessEntryProps accessEntryProps = AccessEntryProps.builder() .accessPolicies(List.of(accessPolicy)) .cluster(cluster) .principal("principal") // the properties below are optional .accessEntryName("accessEntryName") .accessEntryType(AccessEntryType.STANDARD) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAccessEntryProps
static final class
An implementation forAccessEntryProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic AccessEntryProps.Builder
builder()
default String
The name of the AccessEntry.default AccessEntryType
The type of the AccessEntry.The access policies that define the permissions and scope for the access entry.The Amazon EKS cluster to which the access entry applies.The Amazon Resource Name (ARN) of the principal (user or role) to associate the access entry with.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessPolicies
The access policies that define the permissions and scope for the access entry. -
getCluster
The Amazon EKS cluster to which the access entry applies. -
getPrincipal
The Amazon Resource Name (ARN) of the principal (user or role) to associate the access entry with. -
getAccessEntryName
The name of the AccessEntry.Default: - No access entry name is provided
-
getAccessEntryType
The type of the AccessEntry.Default: STANDARD
-
builder
- Returns:
- a
AccessEntryProps.Builder
ofAccessEntryProps
-