Interface AthenaStartQueryExecutionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,TaskStateBaseProps
- All Known Implementing Classes:
AthenaStartQueryExecutionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:10.241Z")
@Stability(Stable)
public interface AthenaStartQueryExecutionProps
extends software.amazon.jsii.JsiiSerializable, TaskStateBaseProps
Properties for starting a Query Execution.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAthenaStartQueryExecutionProps
static final class
An implementation forAthenaStartQueryExecutionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Unique string string to ensure idempotence.A list of values for the parameters in a query.default QueryExecutionContext
Database within which query executes.Query that will be started.default ResultConfiguration
Configuration on how and where to save query.default Duration
Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse.default String
Configuration on how and where to save query.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.TaskStateBaseProps
getComment, getCredentials, getHeartbeat, getHeartbeatTimeout, getInputPath, getIntegrationPattern, getOutputPath, getResultPath, getResultSelector, getStateName, getTaskTimeout, getTimeout
-
Method Details
-
getQueryString
Query that will be started. -
getClientRequestToken
Unique string string to ensure idempotence.Default: - No client request token
-
getExecutionParameters
A list of values for the parameters in a query.The values are applied sequentially to the parameters in the query in the order in which the parameters occur.
Default: - No parameters
-
getQueryExecutionContext
Database within which query executes.Default: - No query execution context
-
getResultConfiguration
Configuration on how and where to save query.Default: - No result configuration
-
getResultReuseConfigurationMaxAge
Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse.Default: - Query results are not reused
-
getWorkGroup
Configuration on how and where to save query.Default: - No work group
-
builder
-