Interface CfnWorkGroup.ManagedQueryResultsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkGroup.ManagedQueryResultsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnWorkGroup

@Stability(Stable) public static interface CfnWorkGroup.ManagedQueryResultsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.athena.*;
 ManagedQueryResultsConfigurationProperty managedQueryResultsConfigurationProperty = ManagedQueryResultsConfigurationProperty.builder()
         .enabled(false)
         .encryptionConfiguration(ManagedStorageEncryptionConfigurationProperty.builder()
                 .kmsKey("kmsKey")
                 .build())
         .build();
 

See Also: