Interface CfnWorkGroup.ResultConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkGroup.ResultConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnWorkGroup
These are known as "client-side settings". If workgroup settings override client-side settings, then the query uses the workgroup settings.
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.*;
ResultConfigurationProperty resultConfigurationProperty = ResultConfigurationProperty.builder()
.aclConfiguration(AclConfigurationProperty.builder()
.s3AclOption("s3AclOption")
.build())
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.encryptionOption("encryptionOption")
// the properties below are optional
.kmsKey("kmsKey")
.build())
.expectedBucketOwner("expectedBucketOwner")
.outputLocation("outputLocation")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkGroup.ResultConfigurationPropertystatic final classAn implementation forCfnWorkGroup.ResultConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIndicates that an Amazon S3 canned ACL should be set to control ownership of stored query results.default ObjectIf query results are encrypted in Amazon S3, indicates the encryption option used (for example,SSE_KMSorCSE_KMS) and key information.default StringThe account ID that you expect to be the owner of the Amazon S3 bucket specified byResultConfiguration:OutputLocation.default StringThe location in Amazon S3 where your query results are stored, such ass3://path/to/query/bucket/.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAclConfiguration
Indicates that an Amazon S3 canned ACL should be set to control ownership of stored query results.Currently the only supported canned ACL is
BUCKET_OWNER_FULL_CONTROL. This is a client-side setting. If workgroup settings override client-side settings, then the query uses the ACL configuration that is specified for the workgroup, and also uses the location for storing query results specified in the workgroup. SeeEnforceWorkGroupConfiguration.Returns union: either
IResolvableorCfnWorkGroup.AclConfigurationProperty- See Also:
-
getEncryptionConfiguration
If query results are encrypted in Amazon S3, indicates the encryption option used (for example,SSE_KMSorCSE_KMS) and key information.This is a client-side setting. If workgroup settings override client-side settings, then the query uses the encryption configuration that is specified for the workgroup, and also uses the location for storing query results specified in the workgroup. See
EnforceWorkGroupConfigurationand Override client-side settings .Returns union: either
IResolvableorCfnWorkGroup.EncryptionConfigurationProperty- See Also:
-
getExpectedBucketOwner
The account ID that you expect to be the owner of the Amazon S3 bucket specified byResultConfiguration:OutputLocation.If set, Athena uses the value for
ExpectedBucketOwnerwhen it makes Amazon S3 calls to your specified output location. If theExpectedBucketOwneraccount ID does not match the actual owner of the Amazon S3 bucket, the call fails with a permissions error.This is a client-side setting. If workgroup settings override client-side settings, then the query uses the
ExpectedBucketOwnersetting that is specified for the workgroup, and also uses the location for storing query results specified in the workgroup. SeeEnforceWorkGroupConfiguration.- See Also:
-
getOutputLocation
The location in Amazon S3 where your query results are stored, such ass3://path/to/query/bucket/.To run a query, you must specify the query results location using either a client-side setting for individual queries or a location specified by the workgroup. If workgroup settings override client-side settings, then the query uses the location specified for the workgroup. If no query location is set, Athena issues an error. For more information, see Work with query results and recent queries and
EnforceWorkGroupConfiguration.- See Also:
-
builder
-