Class AthenaGetQueryExecution

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.AthenaGetQueryExecution
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-02T15:58:34.100Z") @Stability(Stable) public class AthenaGetQueryExecution extends TaskStateBase
Get an Athena Query Execution as a Task.

Example:

 AthenaGetQueryExecution getQueryExecutionJob = AthenaGetQueryExecution.Builder.create(this, "Get Query Execution")
         .queryExecutionId(JsonPath.stringAt("$.QueryExecutionId"))
         .build();
 

See Also:
  • Constructor Details

    • AthenaGetQueryExecution

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

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

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