Class AthenaStartQueryExecution

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.services.stepfunctions.State
software.amazon.awscdk.services.stepfunctions.TaskStateBase
software.amazon.awscdk.services.stepfunctions.tasks.AthenaStartQueryExecution
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:14.449Z") @Stability(Stable) public class AthenaStartQueryExecution extends TaskStateBase
Start an Athena Query as a Task.

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"))
         .build();
 

See Also:
  • Constructor Details

    • AthenaStartQueryExecution

      protected AthenaStartQueryExecution(software.amazon.jsii.JsiiObjectRef objRef)
    • AthenaStartQueryExecution

      protected AthenaStartQueryExecution(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • AthenaStartQueryExecution

      @Stability(Stable) public AthenaStartQueryExecution(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull AthenaStartQueryExecutionProps props)
      Parameters:
      scope - This parameter is required.
      id - Descriptive identifier for this chainable. This parameter is required.
      props - This parameter is required.
  • Method Details