Show / Hide Table of Contents

Class CfnS3TableIntegration.EncryptionConfigProperty

Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.

Inheritance
object
CfnS3TableIntegration.EncryptionConfigProperty
Implements
CfnS3TableIntegration.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.ObservabilityAdmin
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnS3TableIntegration.EncryptionConfigProperty : CfnS3TableIntegration.IEncryptionConfigProperty
Syntax (vb)
Public Class CfnS3TableIntegration.EncryptionConfigProperty Implements CfnS3TableIntegration.IEncryptionConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-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.ObservabilityAdmin;

             var encryptionConfigProperty = new EncryptionConfigProperty {
                 SseAlgorithm = "sseAlgorithm",

                 // the properties below are optional
                 KmsKeyArn = "kmsKeyArn"
             };

Synopsis

Constructors

EncryptionConfigProperty()

Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.

Properties

KmsKeyArn

The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.

SseAlgorithm

The server-side encryption algorithm used for encrypting data in the S3 Table integration.

Constructors

EncryptionConfigProperty()

Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.

public EncryptionConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-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.ObservabilityAdmin;

             var encryptionConfigProperty = new EncryptionConfigProperty {
                 SseAlgorithm = "sseAlgorithm",

                 // the properties below are optional
                 KmsKeyArn = "kmsKeyArn"
             };

Properties

KmsKeyArn

The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.

public string? KmsKeyArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html#cfn-observabilityadmin-s3tableintegration-encryptionconfig-kmskeyarn

SseAlgorithm

The server-side encryption algorithm used for encrypting data in the S3 Table integration.

public string SseAlgorithm { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html#cfn-observabilityadmin-s3tableintegration-encryptionconfig-ssealgorithm

Implements

CfnS3TableIntegration.IEncryptionConfigProperty
Back to top Generated by DocFX