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 |
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 { 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 to encrypt the S3 Table(s) data. |
| kms | string | The ARN of the KMS key used to encrypt the S3 Table Integration. |
sseAlgorithm
Type:
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.

.NET
Go
Java
Python
TypeScript