aws-cdk-lib.aws_eks.AwsAuthProps

interface AwsAuthProps

LanguageType name
.NETAmazon.CDK.AWS.EKS.AwsAuthProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awseks#AwsAuthProps
Javasoftware.amazon.awscdk.services.eks.AwsAuthProps
Pythonaws_cdk.aws_eks.AwsAuthProps
TypeScript (source)aws-cdk-lib » aws_eks » AwsAuthProps

Configuration props for the AwsAuth construct.

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';

declare const cluster: eks.Cluster;
const awsAuthProps: eks.AwsAuthProps = {
  cluster: cluster,
};

Properties

NameTypeDescription
clusterClusterThe EKS cluster to apply this configuration to.

cluster

Type: Cluster

The EKS cluster to apply this configuration to.

[disable-awslint:ref-via-interface]