Show / Hide Table of Contents

Class BatchSubmitJob

Task to submits an AWS Batch job from a job definition.

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

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

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.Batch;
             EcsJobDefinition batchJobDefinition;
             JobQueue batchQueue;


             var task = new BatchSubmitJob(this, "Submit Job", new BatchSubmitJobProps {
                 JobDefinitionArn = batchJobDefinition.JobDefinitionArn,
                 JobName = "MyJob",
                 JobQueueArn = batchQueue.JobQueueArn
             });

Synopsis

Constructors

BatchSubmitJob(Construct, string, IBatchSubmitJobProps)

Task to submits an AWS Batch job from a job definition.

Properties

TaskMetrics

Task to submits an AWS Batch job from a job definition.

TaskPolicies

Task to submits an AWS Batch job from a job definition.

Methods

JsonPath(Construct, string, IBatchSubmitJobJsonPathProps)

Task to submits an AWS Batch job from a job definition using JSONPath.

Jsonata(Construct, string, IBatchSubmitJobJsonataProps)

Task to submits an AWS Batch job from a job definition using JSONata.

Constructors

BatchSubmitJob(Construct, string, IBatchSubmitJobProps)

Task to submits an AWS Batch job from a job definition.

public BatchSubmitJob(Construct scope, string id, IBatchSubmitJobProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props IBatchSubmitJobProps
Remarks

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

ExampleMetadata: infused

Properties

TaskMetrics

Task to submits an AWS Batch job from a job definition.

protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics
Remarks

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

ExampleMetadata: infused

TaskPolicies

Task to submits an AWS Batch job from a job definition.

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

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies
Remarks

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

ExampleMetadata: infused

Methods

JsonPath(Construct, string, IBatchSubmitJobJsonPathProps)

Task to submits an AWS Batch job from a job definition using JSONPath.

public static BatchSubmitJob JsonPath(Construct scope, string id, IBatchSubmitJobJsonPathProps props)
Parameters
scope Construct
id string
props IBatchSubmitJobJsonPathProps
Returns

BatchSubmitJob

Remarks

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

Jsonata(Construct, string, IBatchSubmitJobJsonataProps)

Task to submits an AWS Batch job from a job definition using JSONata.

public static BatchSubmitJob Jsonata(Construct scope, string id, IBatchSubmitJobJsonataProps props)
Parameters
scope Construct
id string
props IBatchSubmitJobJsonataProps
Returns

BatchSubmitJob

Remarks

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

Implements

IChainable
INextable
Back to top Generated by DocFX