Show / Hide Table of Contents

Class EmrContainersCreateVirtualCluster

Task that creates an EMR Containers virtual cluster from an EKS cluster.

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

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

ExampleMetadata: infused

Examples
new EmrContainersCreateVirtualCluster(this, "Create a Virtual Cluster", new EmrContainersCreateVirtualClusterProps {
                 EksCluster = EksClusterInput.FromTaskInput(TaskInput.FromText("clusterId")),
                 EksNamespace = "specified-namespace"
             });

Synopsis

Constructors

EmrContainersCreateVirtualCluster(Construct, string, IEmrContainersCreateVirtualClusterProps)

Task that creates an EMR Containers virtual cluster from an EKS cluster.

Properties

TaskMetrics

Task that creates an EMR Containers virtual cluster from an EKS cluster.

TaskPolicies

Task that creates an EMR Containers virtual cluster from an EKS cluster.

Methods

JsonPath(Construct, string, IEmrContainersCreateVirtualClusterJsonPathProps)

Task that using JSONPath and creates an EMR Containers virtual cluster from an EKS cluster.

Jsonata(Construct, string, IEmrContainersCreateVirtualClusterJsonataProps)

Task that using JSONata and that creates an EMR Containers virtual cluster from an EKS cluster.

Constructors

EmrContainersCreateVirtualCluster(Construct, string, IEmrContainersCreateVirtualClusterProps)

Task that creates an EMR Containers virtual cluster from an EKS cluster.

public EmrContainersCreateVirtualCluster(Construct scope, string id, IEmrContainersCreateVirtualClusterProps props)
Parameters
scope Construct
id string

Descriptive identifier for this chainable.

props IEmrContainersCreateVirtualClusterProps
Remarks

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

ExampleMetadata: infused

Properties

TaskMetrics

Task that creates an EMR Containers virtual cluster from an EKS cluster.

protected override ITaskMetricsConfig? TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics
Remarks

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

ExampleMetadata: infused

TaskPolicies

Task that creates an EMR Containers virtual cluster from an EKS cluster.

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

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies
Remarks

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

ExampleMetadata: infused

Methods

JsonPath(Construct, string, IEmrContainersCreateVirtualClusterJsonPathProps)

Task that using JSONPath and creates an EMR Containers virtual cluster from an EKS cluster.

public static EmrContainersCreateVirtualCluster JsonPath(Construct scope, string id, IEmrContainersCreateVirtualClusterJsonPathProps props)
Parameters
scope Construct
id string
props IEmrContainersCreateVirtualClusterJsonPathProps
Returns

EmrContainersCreateVirtualCluster

Remarks

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

Jsonata(Construct, string, IEmrContainersCreateVirtualClusterJsonataProps)

Task that using JSONata and that creates an EMR Containers virtual cluster from an EKS cluster.

public static EmrContainersCreateVirtualCluster Jsonata(Construct scope, string id, IEmrContainersCreateVirtualClusterJsonataProps props)
Parameters
scope Construct
id string
props IEmrContainersCreateVirtualClusterJsonataProps
Returns

EmrContainersCreateVirtualCluster

Remarks

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

Implements

IChainable
INextable
Back to top Generated by DocFX