interface EncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnS3TableIntegrationPropsMixin_EncryptionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnS3TableIntegrationPropsMixin.EncryptionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » 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 { aws_observabilityadmin as observabilityadmin } from '@aws-cdk/cfn-property-mixins';
const encryptionConfigProperty: observabilityadmin.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