interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnS3TableIntegration.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnS3TableIntegration_EncryptionConfigProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnS3TableIntegration.EncryptionConfigProperty |
Python | aws_cdk.aws_observabilityadmin.CfnS3TableIntegration.EncryptionConfigProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnS3TableIntegration » EncryptionConfigProperty |
Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const encryptionConfigProperty: observabilityadmin.CfnS3TableIntegration.EncryptionConfigProperty = {
sseAlgorithm: 'sseAlgorithm',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| sse | string | The server-side encryption algorithm used for encrypting data in the S3 Table integration. |
| kms | string | The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys. |
sseAlgorithm
Type:
string
The server-side encryption algorithm used for encrypting data in the S3 Table integration.
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.

.NET
Go
Java
Python
TypeScript