You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Athena::Types::ResultConfigurationUpdates
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ResultConfigurationUpdates
- Defined in:
- (unknown)
Overview
When passing ResultConfigurationUpdates as input to an Aws::Client method, you can use a vanilla Hash:
{
output_location: "String",
remove_output_location: false,
encryption_configuration: {
encryption_option: "SSE_S3", # required, accepts SSE_S3, SSE_KMS, CSE_KMS
kms_key: "String",
},
remove_encryption_configuration: false,
}
The information about the updates in the query results, such as output location and encryption configuration for the query results.
Returned by:
Instance Attribute Summary collapse
-
#encryption_configuration ⇒ Types::EncryptionConfiguration
The encryption configuration for the query results.
-
#output_location ⇒ String
The location in Amazon S3 where your query results are stored, such as
s3://path/to/query/bucket/
. -
#remove_encryption_configuration ⇒ Boolean
If set to \"true\", indicates that the previously-specified encryption configuration (also known as the client-side setting) for queries in this workgroup should be ignored and set to null.
-
#remove_output_location ⇒ Boolean
If set to \"true\", indicates that the previously-specified query results location (also known as a client-side setting) for queries in this workgroup should be ignored and set to null.
Instance Attribute Details
#encryption_configuration ⇒ Types::EncryptionConfiguration
The encryption configuration for the query results.
#output_location ⇒ String
The location in Amazon S3 where your query results are stored, such as
s3://path/to/query/bucket/
. For more information, see Query
Results If workgroup settings override client-side settings, then
the query uses the location for the query results and the encryption
configuration that are specified for the workgroup. The \"workgroup
settings override\" is specified in EnforceWorkGroupConfiguration
(true/false) in the WorkGroupConfiguration. See
WorkGroupConfiguration$EnforceWorkGroupConfiguration.
#remove_encryption_configuration ⇒ Boolean
If set to \"true\", indicates that the previously-specified encryption configuration (also known as the client-side setting) for queries in this workgroup should be ignored and set to null. If set to \"false\" or not set, and a value is present in the EncryptionConfiguration in ResultConfigurationUpdates (the client-side setting), the EncryptionConfiguration in the workgroup\'s ResultConfiguration will be updated with the new value. For more information, see Workgroup Settings Override Client-Side Settings.
#remove_output_location ⇒ Boolean
If set to \"true\", indicates that the previously-specified query results location (also known as a client-side setting) for queries in this workgroup should be ignored and set to null. If set to \"false\" or not set, and a value is present in the OutputLocation in ResultConfigurationUpdates (the client-side setting), the OutputLocation in the workgroup\'s ResultConfiguration will be updated with the new value. For more information, see Workgroup Settings Override Client-Side Settings.