interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnS3TableIntegrationPropsMixin_EncryptionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnS3TableIntegrationPropsMixin » 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 { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const encryptionConfigProperty: observabilityadmin_mixins.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty = {
kmsKeyArn: 'kmsKeyArn',
sseAlgorithm: 'sseAlgorithm',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys. |
| sse | 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.
sseAlgorithm?
Type:
string
(optional)
The server-side encryption algorithm used for encrypting data in the S3 Table integration.

.NET
Go
Java
Python
TypeScript