aws-cdk-lib.aws_eks.CfnCluster.EncryptionConfigProperty

interface EncryptionConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.EKS.CfnCluster.EncryptionConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_EncryptionConfigProperty
Javasoftware.amazon.awscdk.services.eks.CfnCluster.EncryptionConfigProperty
Pythonaws_cdk.aws_eks.CfnCluster.EncryptionConfigProperty
TypeScript aws-cdk-lib » aws_eks » CfnCluster » EncryptionConfigProperty

The encryption 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-lib';
const encryptionConfigProperty: eks.CfnCluster.EncryptionConfigProperty = {
  provider: {
    keyArn: 'keyArn',
  },
  resources: ['resources'],
};

Properties

NameTypeDescription
provider?IResolvable | ProviderPropertyThe encryption provider for the cluster.
resources?string[]Specifies the resources to be encrypted.

provider?

Type: IResolvable | ProviderProperty (optional)

The encryption provider for the cluster.


resources?

Type: string[] (optional)

Specifies the resources to be encrypted.

The only supported value is "secrets".