Interface CfnCluster.IEncryptionDetailsProperty
Configuration details about encryption for the cluster including the AWS key ARN, encryption type, and encryption status.
Namespace: Amazon.CDK.AWS.DSQL
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCluster.IEncryptionDetailsProperty
Syntax (vb)
Public Interface CfnCluster.IEncryptionDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DSQL;
var encryptionDetailsProperty = new EncryptionDetailsProperty {
EncryptionStatus = "encryptionStatus",
EncryptionType = "encryptionType",
KmsKeyArn = "kmsKeyArn"
};
Synopsis
Properties
| EncryptionStatus | The status of encryption for the cluster. |
| EncryptionType | The type of encryption that protects the data on your cluster. |
| KmsKeyArn | The ARN of the AWS key that encrypts data in the cluster. |
Properties
EncryptionStatus
The status of encryption for the cluster.
string? EncryptionStatus { get; }
Property Value
Remarks
EncryptionType
The type of encryption that protects the data on your cluster.
string? EncryptionType { get; }
Property Value
Remarks
KmsKeyArn
The ARN of the AWS key that encrypts data in the cluster.
string? KmsKeyArn { get; }