Show / Hide Table of Contents

Class CfnInstanceStorageConfig.EncryptionConfigProperty

The encryption configuration.

Inheritance
object
CfnInstanceStorageConfig.EncryptionConfigProperty
Implements
CfnInstanceStorageConfig.IEncryptionConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInstanceStorageConfig.EncryptionConfigProperty : CfnInstanceStorageConfig.IEncryptionConfigProperty
Syntax (vb)
Public Class CfnInstanceStorageConfig.EncryptionConfigProperty Implements CfnInstanceStorageConfig.IEncryptionConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-encryptionconfig.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.Connect;

             var encryptionConfigProperty = new EncryptionConfigProperty {
                 EncryptionType = "encryptionType",
                 KeyId = "keyId"
             };

Synopsis

Constructors

EncryptionConfigProperty()

The encryption configuration.

Properties

EncryptionType

The type of encryption.

KeyId

The full ARN of the encryption key.

Constructors

EncryptionConfigProperty()

The encryption configuration.

public EncryptionConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-encryptionconfig.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.Connect;

             var encryptionConfigProperty = new EncryptionConfigProperty {
                 EncryptionType = "encryptionType",
                 KeyId = "keyId"
             };

Properties

EncryptionType

The type of encryption.

public string EncryptionType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-encryptionconfig.html#cfn-connect-instancestorageconfig-encryptionconfig-encryptiontype

KeyId

The full ARN of the encryption key.

public string KeyId { get; set; }
Property Value

string

Remarks
Be sure to provide the full ARN of the encryption key, not just the ID.

Amazon Connect supports only KMS keys with the default key spec of SYMMETRIC_DEFAULT .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-instancestorageconfig-encryptionconfig.html#cfn-connect-instancestorageconfig-encryptionconfig-keyid

Implements

CfnInstanceStorageConfig.IEncryptionConfigProperty
Back to top Generated by DocFX