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 |
Encryption configuration for the S3 Table Integration.
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 ARN of the KMS key used to encrypt the S3 Table Integration. |
| sse | string | The server-side encryption algorithm used to encrypt the S3 Table(s) data. |
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key used to encrypt the S3 Table Integration.
sseAlgorithm?
Type:
string
(optional)
The server-side encryption algorithm used to encrypt the S3 Table(s) data.

.NET
Go
Java
Python
TypeScript