Show / Hide Table of Contents

Class GlueStartJobRun

Starts an AWS Glue job in a Task state.

Inheritance
object
State
TaskStateBase
GlueStartJobRun
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 GlueStartJobRun : TaskStateBase, IChainable, INextable
Syntax (vb)
Public Class GlueStartJobRun Inherits TaskStateBase Implements IChainable, INextable
Remarks

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

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

ExampleMetadata: infused

Examples
new GlueStartJobRun(this, "Task", new GlueStartJobRunProps {
                 GlueJobName = "my-glue-job",
                 WorkerConfiguration = new WorkerConfigurationProperty {
                     WorkerTypeV2 = WorkerTypeV2.G_1X,  // Worker type
                     NumberOfWorkers = 2
                 }
             });

Synopsis

Constructors

GlueStartJobRun(Construct, string, IGlueStartJobRunProps)

Starts an AWS Glue job in a Task state.

Properties

TaskMetrics

Starts an AWS Glue job in a Task state.

TaskPolicies

Starts an AWS Glue job in a Task state.

Methods

JsonPath(Construct, string, IGlueStartJobRunJsonPathProps)

Starts an AWS Glue job in a Task state using JSONPath.

Jsonata(Construct, string, IGlueStartJobRunJsonataProps)

Starts an AWS Glue job in a Task state using JSONata.

Constructors

GlueStartJobRun(Construct, string, IGlueStartJobRunProps)

Starts an AWS Glue job in a Task state.

public GlueStartJobRun(Construct scope, string id, IGlueStartJobRunProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props IGlueStartJobRunProps
Remarks

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

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

ExampleMetadata: infused

Properties

TaskMetrics

Starts an AWS Glue job in a Task state.

protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics
Remarks

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

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

ExampleMetadata: infused

TaskPolicies

Starts an AWS Glue job in a Task state.

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

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies
Remarks

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

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

ExampleMetadata: infused

Methods

JsonPath(Construct, string, IGlueStartJobRunJsonPathProps)

Starts an AWS Glue job in a Task state using JSONPath.

public static GlueStartJobRun JsonPath(Construct scope, string id, IGlueStartJobRunJsonPathProps props)
Parameters
scope Construct
id string
props IGlueStartJobRunJsonPathProps
Returns

GlueStartJobRun

Remarks

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

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

Jsonata(Construct, string, IGlueStartJobRunJsonataProps)

Starts an AWS Glue job in a Task state using JSONata.

public static GlueStartJobRun Jsonata(Construct scope, string id, IGlueStartJobRunJsonataProps props)
Parameters
scope Construct
id string
props IGlueStartJobRunJsonataProps
Returns

GlueStartJobRun

Remarks

OUTPUT: the output of this task is a JobRun structure, for details consult https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-runs.html#aws-glue-api-jobs-runs-JobRun

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

Implements

IChainable
INextable
Back to top Generated by DocFX