Interface Location
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Location.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:08.922Z")
@Stability(Stable)
public interface Location
extends software.amazon.jsii.JsiiSerializable
An interface that represents the location of a specific object in an S3 Bucket.
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("query-results-bucket") .objectKey("folder") .build()) .build()) .executionParameters(List.of("param1", "param2")) .resultReuseConfigurationMaxAge(Duration.minutes(100)) .build();
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Location.Builder
builder()
The name of the S3 Bucket the object is in.The path inside the Bucket where the object is located at.default String
The S3 object version.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The name of the S3 Bucket the object is in. -
getObjectKey
The path inside the Bucket where the object is located at. -
getObjectVersion
The S3 object version. -
builder
- Returns:
- a
Location.Builder
ofLocation
-