Interface ResultConfiguration
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ResultConfiguration.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.802Z")
@Stability(Stable)
public interface ResultConfiguration
extends software.amazon.jsii.JsiiSerializable
Location of query result along with S3 bucket configuration.
Example:
AthenaStartQueryExecution startQueryExecutionJob = AthenaStartQueryExecution.Builder.create(this, "Start Athena Query") .queryString(JsonPath.stringAt("$.queryString")) .queryExecutionContext(QueryExecutionContext.builder() .databaseName("mydatabase") .build()) .resultConfiguration(ResultConfiguration.builder() .encryptionConfiguration(EncryptionConfiguration.builder() .encryptionOption(EncryptionOption.S3_MANAGED) .build()) .outputLocation(Location.builder() .bucketName("amzn-s3-demo-bucket") .objectKey("folder") .build()) .build()) .executionParameters(List.of("param1", "param2")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forResultConfiguration
static final class
An implementation forResultConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionstatic ResultConfiguration.Builder
builder()
default EncryptionConfiguration
Encryption option used if enabled in S3.default Location
S3 path of query results.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfiguration
Encryption option used if enabled in S3.Default: - SSE_S3 encryption is enabled with default encryption key
-
getOutputLocation
S3 path of query results.Example value:
s3://query-results-bucket/folder/
Default: - Query Result Location set in Athena settings for this workgroup
-
builder
- Returns:
- a
ResultConfiguration.Builder
ofResultConfiguration
-