interface EncryptionDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DSQL.CfnClusterPropsMixin.EncryptionDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdsql#CfnClusterPropsMixin_EncryptionDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dsql.CfnClusterPropsMixin.EncryptionDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_dsql.CfnClusterPropsMixin.EncryptionDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dsql » CfnClusterPropsMixin » EncryptionDetailsProperty |
Configuration details about encryption for the cluster including the AWS key ARN, encryption type, and encryption status.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dsql as dsql } from '@aws-cdk/cfn-property-mixins';
const encryptionDetailsProperty: dsql.CfnClusterPropsMixin.EncryptionDetailsProperty = {
encryptionStatus: 'encryptionStatus',
encryptionType: 'encryptionType',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | The status of encryption for the cluster. |
| encryption | string | The type of encryption that protects the data on your cluster. |
| kms | string | The ARN of the AWS key that encrypts data in the cluster. |
encryptionStatus?
Type:
string
(optional)
The status of encryption for the cluster.
encryptionType?
Type:
string
(optional)
The type of encryption that protects the data on your cluster.
kmsKeyArn?
Type:
string
(optional)
The ARN of the AWS key that encrypts data in the cluster.

.NET
Go
Java
Python
TypeScript