aws-cdk-lib.aws_eks.KubectlProviderProps

interface KubectlProviderProps

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

Properties for a KubectlProvider.

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 kubectlProviderProps: eks.KubectlProviderProps = {
  cluster: cluster,
};

Properties

NameTypeDescription
clusterIClusterThe cluster to control.

cluster

Type: ICluster

The cluster to control.