interface EncryptionDetailsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_dsql.CfnCluster.EncryptionDetailsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdsql#CfnCluster_EncryptionDetailsProperty |
![]() | software.amazon.awscdk.services.dsql.CfnCluster.EncryptionDetailsProperty |
![]() | aws_cdk.aws_dsql.CfnCluster.EncryptionDetailsProperty |
![]() | aws-cdk-lib » aws_dsql » CfnCluster » EncryptionDetailsProperty |
Configuration details about encryption for the cluster including the AWS KMS 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-lib';
const encryptionDetailsProperty: dsql.CfnCluster.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 KMS 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 KMS key that encrypts data in the cluster.