Interface CfnClusterPropsMixin.IStepConfigProperty
StepConfig is a property of the AWS::EMR::Cluster resource.
Namespace: Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnClusterPropsMixin.IStepConfigProperty
Syntax (vb)
Public Interface CfnClusterPropsMixin.IStepConfigProperty
Remarks
The StepConfig property type specifies a cluster (job flow) step, which runs only on the master node. Steps are used to submit data processing jobs to the cluster.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins;
var stepConfigProperty = new StepConfigProperty {
ActionOnFailure = "actionOnFailure",
HadoopJarStep = new HadoopJarStepConfigProperty {
Args = new [] { "args" },
Jar = "jar",
MainClass = "mainClass",
StepProperties = new [] { new KeyValueProperty {
Key = "key",
Value = "value"
} }
},
Name = "name"
};
Synopsis
Properties
| ActionOnFailure | The action to take when the cluster step fails. |
| HadoopJarStep | The JAR file used for the step. |
| Name | The name of the step. |
Properties
ActionOnFailure
The action to take when the cluster step fails.
string? ActionOnFailure { get; }
Property Value
Remarks
Possible values are CANCEL_AND_WAIT and CONTINUE .
HadoopJarStep
The JAR file used for the step.
object? HadoopJarStep { get; }
Property Value
Remarks
Name
The name of the step.
string? Name { get; }