interface AwsAuthProps
This page is available in another version. Click here for the v2 documentation.
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EKS.AwsAuthProps |
Java | software.amazon.awscdk.services.eks.AwsAuthProps |
Python | aws_cdk.aws_eks.AwsAuthProps |
TypeScript (source) | @aws-cdk/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 * as eks from '@aws-cdk/aws-eks';
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]