interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.CfnCluster.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_EncryptionConfigProperty |
Java | software.amazon.awscdk.services.eks.CfnCluster.EncryptionConfigProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| provider? | IResolvable | Provider | The encryption provider for the cluster. |
| resources? | string[] | Specifies the resources to be encrypted. |
provider?
Type:
IResolvable | Provider
(optional)
The encryption provider for the cluster.
resources?
Type:
string[]
(optional)
Specifies the resources to be encrypted.
The only supported value is secrets .

.NET
Go
Java
Python
TypeScript