@Stability(value=Stable)
public static interface CfnCluster.StepConfigProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
StepConfigProperty stepConfigProperty = StepConfigProperty.builder()
.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())
.name("name")
// the properties below are optional
.actionOnFailure("actionOnFailure")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCluster.StepConfigProperty.Builder
A builder for
CfnCluster.StepConfigProperty |
static class |
CfnCluster.StepConfigProperty.Jsii$Proxy
An implementation for
CfnCluster.StepConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCluster.StepConfigProperty.Builder |
builder() |
default String |
getActionOnFailure()
`CfnCluster.StepConfigProperty.ActionOnFailure`.
|
Object |
getHadoopJarStep()
`CfnCluster.StepConfigProperty.HadoopJarStep`.
|
String |
getName()
`CfnCluster.StepConfigProperty.Name`.
|
@Stability(value=Stable) @Nullable default String getActionOnFailure()
@Stability(value=Stable) @NotNull Object getHadoopJarStep()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) static CfnCluster.StepConfigProperty.Builder builder()
Copyright © 2021. All rights reserved.