Interface CfnCluster.AccessConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.AccessConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.AccessConfigProperty
extends software.amazon.jsii.JsiiSerializable
The access configuration for the cluster.
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.*; AccessConfigProperty accessConfigProperty = AccessConfigProperty.builder() .authenticationMode("authenticationMode") .bootstrapClusterCreatorAdminPermissions(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.AccessConfigProperty
static final class
An implementation forCfnCluster.AccessConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationMode
The desired authentication mode for the cluster.If you create a cluster by using the EKS API, AWS SDKs, or AWS CloudFormation , the default is
CONFIG_MAP
. If you create the cluster by using the AWS Management Console , the default value isAPI_AND_CONFIG_MAP
.- See Also:
-
getBootstrapClusterCreatorAdminPermissions
Specifies whether or not the cluster creator IAM principal was set as a cluster admin access entry during cluster creation time.The default value is
true
.- See Also:
-
builder
-