Class AthenaStopQueryExecution

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.AthenaStopQueryExecution
All Implemented Interfaces:
IChainable, INextable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-04-10T22:22:36.030Z") @Stability(Stable) public class AthenaStopQueryExecution extends TaskStateBase
Stop an Athena Query Execution as a Task.

Example:

 AthenaStopQueryExecution stopQueryExecutionJob = AthenaStopQueryExecution.Builder.create(this, "Stop Query Execution")
         .queryExecutionId(JsonPath.stringAt("$.QueryExecutionId"))
         .build();
 

See Also:
  • Constructor Details

    • AthenaStopQueryExecution

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

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

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