Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html#cfn-dsql-cluster-encryptiondetails-encryptionstatus

EncryptionType

The type of encryption that protects the data on your cluster.

string? EncryptionType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html#cfn-dsql-cluster-encryptiondetails-encryptiontype

KmsKeyArn

The ARN of the AWS key that encrypts data in the cluster.

string? KmsKeyArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html#cfn-dsql-cluster-encryptiondetails-kmskeyarn

Back to top Generated by DocFX