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