@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.530Z") @Stability(value=Stable) public interface CfnStepProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.emr.*;
CfnStepProps cfnStepProps = CfnStepProps.builder()
.actionOnFailure("actionOnFailure")
.hadoopJarStep(HadoopJarStepConfigProperty.builder()
.jar("jar")
// the properties below are optional
.args(List.of("args"))
.mainClass("mainClass")
.stepProperties(List.of(KeyValueProperty.builder()
.key("key")
.value("value")
.build()))
.build())
.jobFlowId("jobFlowId")
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStepProps.Builder
A builder for
CfnStepProps |
static class |
CfnStepProps.Jsii$Proxy
An implementation for
CfnStepProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStepProps.Builder |
builder() |
String |
getActionOnFailure()
`AWS::EMR::Step.ActionOnFailure`.
|
Object |
getHadoopJarStep()
`AWS::EMR::Step.HadoopJarStep`.
|
String |
getJobFlowId()
`AWS::EMR::Step.JobFlowId`.
|
String |
getName()
`AWS::EMR::Step.Name`.
|
@Stability(value=Stable) @NotNull String getActionOnFailure()
@Stability(value=Stable) @NotNull Object getHadoopJarStep()
@Stability(value=Stable) @NotNull String getJobFlowId()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) static CfnStepProps.Builder builder()
CfnStepProps.Builder of CfnStepPropsCopyright © 2021. All rights reserved.