interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EKS.Mixins.CfnClusterPropsMixin.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseks/mixins#CfnClusterPropsMixin_EncryptionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.eks.mixins.CfnClusterPropsMixin.EncryptionConfigProperty |
Python | aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterPropsMixin.EncryptionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_eks » mixins » CfnClusterPropsMixin » 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 { mixins as eks_mixins } from '@aws-cdk/mixins-preview/aws-eks';
const encryptionConfigProperty: eks_mixins.CfnClusterPropsMixin.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