Interface CfnS3TableIntegration.IEncryptionConfigProperty
Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.
Namespace: Amazon.CDK.AWS.ObservabilityAdmin
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnS3TableIntegration.IEncryptionConfigProperty
Syntax (vb)
Public Interface CfnS3TableIntegration.IEncryptionConfigProperty
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.ObservabilityAdmin;
var encryptionConfigProperty = new EncryptionConfigProperty {
SseAlgorithm = "sseAlgorithm",
// the properties below are optional
KmsKeyArn = "kmsKeyArn"
};
Synopsis
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. |
Properties
KmsKeyArn
The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.
string? KmsKeyArn { get; }
Property Value
Remarks
SseAlgorithm
The server-side encryption algorithm used for encrypting data in the S3 Table integration.
string SseAlgorithm { get; }