Interface DescribeStepResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeStepResponse.Builder,DescribeStepResponse>
,EmrResponse.Builder
,SdkBuilder<DescribeStepResponse.Builder,DescribeStepResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeStepResponse
public static interface DescribeStepResponse.Builder extends EmrResponse.Builder, SdkPojo, CopyableBuilder<DescribeStepResponse.Builder,DescribeStepResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DescribeStepResponse.Builder
step(Consumer<Step.Builder> step)
The step details for the requested step identifier.DescribeStepResponse.Builder
step(Step step)
The step details for the requested step identifier.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.emr.model.EmrResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
step
DescribeStepResponse.Builder step(Step step)
The step details for the requested step identifier.
- Parameters:
step
- The step details for the requested step identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
step
default DescribeStepResponse.Builder step(Consumer<Step.Builder> step)
The step details for the requested step identifier.
This is a convenience method that creates an instance of theStep.Builder
avoiding the need to create one manually viaStep.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostep(Step)
.- Parameters:
step
- a consumer that will call methods onStep.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
step(Step)
-
-