interface AccessConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EKS.CfnClusterPropsMixin.AccessConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseks#CfnClusterPropsMixin_AccessConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.eks.CfnClusterPropsMixin.AccessConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_eks.CfnClusterPropsMixin.AccessConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eks » CfnClusterPropsMixin » 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/cfn-property-mixins';
const accessConfigProperty: eks.CfnClusterPropsMixin.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 .

.NET
Go
Java
Python
TypeScript