interface ManagedStorageEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnWorkGroupPropsMixin.ManagedStorageEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnWorkGroupPropsMixin_ManagedStorageEncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnWorkGroupPropsMixin.ManagedStorageEncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnWorkGroupPropsMixin.ManagedStorageEncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » CfnWorkGroupPropsMixin » ManagedStorageEncryptionConfigurationProperty |
Indicates the encryption configuration for Athena Managed Storage.
If not setting this field, Managed Storage will encrypt the query results with Athena's encryption key
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as athena_mixins } from '@aws-cdk/mixins-preview/aws-athena';
const managedStorageEncryptionConfigurationProperty: athena_mixins.CfnWorkGroupPropsMixin.ManagedStorageEncryptionConfigurationProperty = {
kmsKey: 'kmsKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | For SSE-KMS and CSE-KMS, this is the KMS key ARN or ID. |
kmsKey?
Type:
string
(optional)
For SSE-KMS and CSE-KMS, this is the KMS key ARN or ID.

.NET
Go
Java
Python
TypeScript