Show / Hide Table of Contents

Class AthenaGetQueryExecution

Get an Athena Query Execution as a Task.

Inheritance
object
State
TaskStateBase
AthenaGetQueryExecution
Implements
IChainable
INextable
Inherited Members
TaskStateBase.AddCatch(IChainable, ICatchProps)
TaskStateBase.AddRetry(IRetryProps)
TaskStateBase.Metric(string, IMetricOptions)
TaskStateBase.MetricFailed(IMetricOptions)
TaskStateBase.MetricHeartbeatTimedOut(IMetricOptions)
TaskStateBase.MetricRunTime(IMetricOptions)
TaskStateBase.MetricScheduled(IMetricOptions)
TaskStateBase.MetricScheduleTime(IMetricOptions)
TaskStateBase.MetricStarted(IMetricOptions)
TaskStateBase.MetricSucceeded(IMetricOptions)
TaskStateBase.MetricTime(IMetricOptions)
TaskStateBase.MetricTimedOut(IMetricOptions)
TaskStateBase.Next(IChainable)
TaskStateBase.ToStateJson(QueryLanguage?)
TaskStateBase.WhenBoundToGraph(StateGraph)
TaskStateBase.EndStates
State.FilterNextables(State[])
State.FindReachableEndStates(State, IFindStateOptions)
State.FindReachableStates(State, IFindStateOptions)
State.PrefixStates(IConstruct, string)
State.AddBranch(StateGraph)
State.AddChoice(Condition, State, IChoiceTransitionOptions)
State.AddItemProcessor(StateGraph, IProcessorConfig)
State.AddIterator(StateGraph)
State.AddPrefix(string)
State.BindToGraph(StateGraph)
State.MakeDefault(State)
State.MakeNext(State)
State.RenderAssign(QueryLanguage?)
State.RenderBranches()
State.RenderChoices(QueryLanguage?)
State.RenderInputOutput()
State.RenderItemProcessor()
State.RenderIterator()
State.RenderNextEnd()
State.RenderQueryLanguage(QueryLanguage?)
State.RenderResultSelector()
State.RenderRetryCatch(QueryLanguage?)
State.ValidateState()
State.Branches
State.Id
State.StartState
State.StateId
State.Arguments
State.Assign
State.Comment
State.InputPath
State.OutputPath
State.Outputs
State.Parameters
State.QueryLanguage
State.ResultPath
State.ResultSelector
State.StateName
State.DefaultChoice
State.Iteration
State.Processor
State.ProcessorConfig
State.ProcessorMode
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AthenaGetQueryExecution : TaskStateBase, IChainable, INextable
Syntax (vb)
Public Class AthenaGetQueryExecution Inherits TaskStateBase Implements IChainable, INextable
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html

ExampleMetadata: infused

Examples
var getQueryExecutionJob = new AthenaGetQueryExecution(this, "Get Query Execution", new AthenaGetQueryExecutionProps {
                 QueryExecutionId = JsonPath.StringAt("$.QueryExecutionId")
             });

Synopsis

Constructors

AthenaGetQueryExecution(Construct, string, IAthenaGetQueryExecutionProps)

Get an Athena Query Execution as a Task.

Properties

TaskMetrics

Get an Athena Query Execution as a Task.

TaskPolicies

Get an Athena Query Execution as a Task.

Methods

JsonPath(Construct, string, IAthenaGetQueryExecutionJsonPathProps)

Get an Athena Query Execution as a Task that using JSONPath.

Jsonata(Construct, string, IAthenaGetQueryExecutionJsonataProps)

Get an Athena Query Execution as a Task that using JSONata.

Constructors

AthenaGetQueryExecution(Construct, string, IAthenaGetQueryExecutionProps)

Get an Athena Query Execution as a Task.

public AthenaGetQueryExecution(Construct scope, string id, IAthenaGetQueryExecutionProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props IAthenaGetQueryExecutionProps
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html

ExampleMetadata: infused

Properties

TaskMetrics

Get an Athena Query Execution as a Task.

protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html

ExampleMetadata: infused

TaskPolicies

Get an Athena Query Execution as a Task.

protected override PolicyStatement[]? TaskPolicies { get; }
Property Value

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies
Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html

ExampleMetadata: infused

Methods

JsonPath(Construct, string, IAthenaGetQueryExecutionJsonPathProps)

Get an Athena Query Execution as a Task that using JSONPath.

public static AthenaGetQueryExecution JsonPath(Construct scope, string id, IAthenaGetQueryExecutionJsonPathProps props)
Parameters
scope Construct
id string
props IAthenaGetQueryExecutionJsonPathProps
Returns

AthenaGetQueryExecution

Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html

Jsonata(Construct, string, IAthenaGetQueryExecutionJsonataProps)

Get an Athena Query Execution as a Task that using JSONata.

public static AthenaGetQueryExecution Jsonata(Construct scope, string id, IAthenaGetQueryExecutionJsonataProps props)
Parameters
scope Construct
id string
props IAthenaGetQueryExecutionJsonataProps
Returns

AthenaGetQueryExecution

Remarks

See: https://docs.aws.amazon.com/step-functions/latest/dg/connect-athena.html

Implements

IChainable
INextable
Back to top Generated by DocFX