interface ManagedQueryResultsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnWorkGroupPropsMixin.ManagedQueryResultsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnWorkGroupPropsMixin_ManagedQueryResultsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnWorkGroupPropsMixin.ManagedQueryResultsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnWorkGroupPropsMixin.ManagedQueryResultsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » CfnWorkGroupPropsMixin » ManagedQueryResultsConfigurationProperty |
The configuration for storing results in Athena owned storage, which includes whether this feature is enabled;
whether encryption configuration, if any, is used for encrypting query results.
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 managedQueryResultsConfigurationProperty: athena_mixins.CfnWorkGroupPropsMixin.ManagedQueryResultsConfigurationProperty = {
enabled: false,
encryptionConfiguration: {
kmsKey: 'kmsKey',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | If set to true, allows you to store query results in Athena owned storage. |
| encryption | IResolvable | Managed | If you encrypt query and calculation results in Athena owned storage, this field indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key information. |
enabled?
Type:
boolean | IResolvable
(optional)
If set to true, allows you to store query results in Athena owned storage.
If set to false, workgroup member stores query results in location specified under ResultConfiguration$OutputLocation . The default is false. A workgroup cannot have the ResultConfiguration$OutputLocation parameter when you set this field to true.
encryptionConfiguration?
Type:
IResolvable | Managed
(optional)
If you encrypt query and calculation results in Athena owned storage, this field indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key information.

.NET
Go
Java
Python
TypeScript