Class AthenaGetQueryResults

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

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:30.672Z") @Stability(Stable) public class AthenaGetQueryResults extends TaskStateBase
Get an Athena Query Results as a Task.

Example:

 AthenaGetQueryResults getQueryResultsJob = AthenaGetQueryResults.Builder.create(this, "Get Query Results")
         .queryExecutionId(JsonPath.stringAt("$.QueryExecutionId"))
         .build();
 

See Also:
  • Constructor Details

    • AthenaGetQueryResults

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

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

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