Interface ManagedQueryResultsConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ManagedQueryResultsConfiguration.Builder,ManagedQueryResultsConfiguration>,SdkBuilder<ManagedQueryResultsConfiguration.Builder,ManagedQueryResultsConfiguration>,SdkPojo
- Enclosing class:
- ManagedQueryResultsConfiguration
@Mutable @NotThreadSafe public static interface ManagedQueryResultsConfiguration.Builder extends SdkPojo, CopyableBuilder<ManagedQueryResultsConfiguration.Builder,ManagedQueryResultsConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ManagedQueryResultsConfiguration.Builderenabled(Boolean enabled)If set to true, allows you to store query results in Athena owned storage.default ManagedQueryResultsConfiguration.BuilderencryptionConfiguration(Consumer<ManagedQueryResultsEncryptionConfiguration.Builder> encryptionConfiguration)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.ManagedQueryResultsConfiguration.BuilderencryptionConfiguration(ManagedQueryResultsEncryptionConfiguration encryptionConfiguration)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.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
enabled
ManagedQueryResultsConfiguration.Builder enabled(Boolean enabled)
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 theResultConfiguration$OutputLocationparameter when you set this field to true.- Parameters:
enabled- 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 underResultConfiguration$OutputLocation. The default is false. A workgroup cannot have theResultConfiguration$OutputLocationparameter when you set this field to true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
ManagedQueryResultsConfiguration.Builder encryptionConfiguration(ManagedQueryResultsEncryptionConfiguration encryptionConfiguration)
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.
- Parameters:
encryptionConfiguration- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionConfiguration
default ManagedQueryResultsConfiguration.Builder encryptionConfiguration(Consumer<ManagedQueryResultsEncryptionConfiguration.Builder> encryptionConfiguration)
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.
This is a convenience method that creates an instance of theManagedQueryResultsEncryptionConfiguration.Builderavoiding the need to create one manually viaManagedQueryResultsEncryptionConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryptionConfiguration(ManagedQueryResultsEncryptionConfiguration).- Parameters:
encryptionConfiguration- a consumer that will call methods onManagedQueryResultsEncryptionConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryptionConfiguration(ManagedQueryResultsEncryptionConfiguration)
-
-