interface AwsAuthProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EKS.AwsAuthProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#AwsAuthProps | 
|  Java | software.amazon.awscdk.services.eks.AwsAuthProps | 
|  Python | aws_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
| Name | Type | Description | 
|---|---|---|
| cluster | Cluster | The EKS cluster to apply this configuration to. | 
cluster
Type:
Cluster
The EKS cluster to apply this configuration to.
[disable-awslint:ref-via-interface]
