interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnWorkGroupPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnWorkGroupPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnWorkGroupPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnWorkGroupPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » CfnWorkGroupPropsMixin » EncryptionConfigurationProperty |
If query results are encrypted in Amazon S3, indicates the encryption option used (for example, SSE_KMS or CSE_KMS ) and key information.
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 encryptionConfigurationProperty: athena_mixins.CfnWorkGroupPropsMixin.EncryptionConfigurationProperty = {
encryptionOption: 'encryptionOption',
kmsKey: 'kmsKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | Indicates whether Amazon S3 server-side encryption with Amazon S3-managed keys ( SSE_S3 ), server-side encryption with KMS-managed keys ( SSE_KMS ), or client-side encryption with KMS-managed keys ( CSE_KMS ) is used. |
| kms | string | For SSE_KMS and CSE_KMS , this is the KMS key ARN or ID. |
encryptionOption?
Type:
string
(optional)
Indicates whether Amazon S3 server-side encryption with Amazon S3-managed keys ( SSE_S3 ), server-side encryption with KMS-managed keys ( SSE_KMS ), or client-side encryption with KMS-managed keys ( CSE_KMS ) is used.
If a query runs in a workgroup and the workgroup overrides client-side settings, then the workgroup's setting for encryption is used. It specifies whether query results must be encrypted, for all queries that run in this workgroup.
kmsKey?
Type:
string
(optional)
For SSE_KMS and CSE_KMS , this is the KMS key ARN or ID.

.NET
Go
Java
Python
TypeScript