public static final class EmrAddStepProps.Builder
extends java.lang.Object
EmrAddStepProps
Constructor and Description |
---|
Builder() |
public EmrAddStepProps.Builder clusterId(java.lang.String clusterId)
EmrAddStepProps.getClusterId()
clusterId
- The ClusterId to add the Step to. This parameter is required.this
public EmrAddStepProps.Builder jar(java.lang.String jar)
EmrAddStepProps.getJar()
jar
- A path to a JAR file run during the step. This parameter is required.this
public EmrAddStepProps.Builder name(java.lang.String name)
EmrAddStepProps.getName()
name
- The name of the Step. This parameter is required.this
public EmrAddStepProps.Builder actionOnFailure(ActionOnFailure actionOnFailure)
EmrAddStepProps.getActionOnFailure()
actionOnFailure
- The action to take when the cluster step fails.this
public EmrAddStepProps.Builder args(java.util.List<java.lang.String> args)
EmrAddStepProps.getArgs()
args
- A list of command line arguments passed to the JAR file's main function when executed.this
public EmrAddStepProps.Builder mainClass(java.lang.String mainClass)
EmrAddStepProps.getMainClass()
mainClass
- The name of the main class in the specified Java file.
If not specified, the JAR file should specify a Main-Class in its manifest file.this
public EmrAddStepProps.Builder properties(java.util.Map<java.lang.String,java.lang.String> properties)
EmrAddStepProps.getProperties()
properties
- A list of Java properties that are set when the step runs.
You can use these properties to pass key value pairs to your main function.this
public EmrAddStepProps.Builder comment(java.lang.String comment)
TaskStateBaseProps.getComment()
comment
- An optional description for this state.this
public EmrAddStepProps.Builder heartbeat(Duration heartbeat)
TaskStateBaseProps.getHeartbeat()
heartbeat
- Timeout for the heartbeat.this
public EmrAddStepProps.Builder inputPath(java.lang.String inputPath)
TaskStateBaseProps.getInputPath()
inputPath
- JSONPath expression to select part of the state to be the input to this state.
May also be the special value JsonPath.DISCARD, which will cause the effective
input to be the empty object {}.this
public EmrAddStepProps.Builder integrationPattern(IntegrationPattern integrationPattern)
TaskStateBaseProps.getIntegrationPattern()
integrationPattern
- AWS Step Functions integrates with services directly in the Amazon States Language.
You can control these AWS services using service integration patternsthis
public EmrAddStepProps.Builder outputPath(java.lang.String outputPath)
TaskStateBaseProps.getOutputPath()
outputPath
- JSONPath expression to select select a portion of the state output to pass to the next state.
May also be the special value JsonPath.DISCARD, which will cause the effective
output to be the empty object {}.this
public EmrAddStepProps.Builder resultPath(java.lang.String resultPath)
TaskStateBaseProps.getResultPath()
resultPath
- JSONPath expression to indicate where to inject the state's output.
May also be the special value JsonPath.DISCARD, which will cause the state's
input to become its output.this
public EmrAddStepProps.Builder resultSelector(java.util.Map<java.lang.String,? extends java.lang.Object> resultSelector)
TaskStateBaseProps.getResultSelector()
resultSelector
- The JSON that will replace the state's raw result and become the effective result before ResultPath is applied.
You can use ResultSelector to create a payload with values that are static
or selected from the state's raw result.this
public EmrAddStepProps.Builder timeout(Duration timeout)
TaskStateBaseProps.getTimeout()
timeout
- Timeout for the state machine.this
public EmrAddStepProps build()
EmrAddStepProps
java.lang.NullPointerException
- if any required attribute was not provided