interface AccessConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCluster.AccessConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_AccessConfigProperty |
Java | software.amazon.awscdk.services.eks.CfnCluster.AccessConfigProperty |
Python | aws_cdk.aws_eks.CfnCluster.AccessConfigProperty |
TypeScript | aws-cdk-lib » aws_eks » CfnCluster » AccessConfigProperty |
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 { aws_eks as eks } from 'aws-cdk-lib';
const accessConfigProperty: eks.CfnCluster.AccessConfigProperty = {
authenticationMode: 'authenticationMode',
bootstrapClusterCreatorAdminPermissions: false,
};
Properties
Name | Type | Description |
---|---|---|
authentication | string | The desired authentication mode for the cluster. |
bootstrap | boolean | IResolvable | Specifies whether or not the cluster creator IAM principal was set as a cluster admin access entry during cluster creation time. |
authenticationMode?
Type:
string
(optional)
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 is API_AND_CONFIG_MAP
.
bootstrapClusterCreatorAdminPermissions?
Type:
boolean |
IResolvable
(optional)
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
.