interface EncryptionConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EKS.CfnCluster.EncryptionConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awseks#CfnCluster_EncryptionConfigProperty |
![]() | software.amazon.awscdk.services.eks.CfnCluster.EncryptionConfigProperty |
![]() | aws_cdk.aws_eks.CfnCluster.EncryptionConfigProperty |
![]() | 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
.