Interface ListTemplateStepsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListTemplateStepsResponse.Builder,ListTemplateStepsResponse>,MigrationHubOrchestratorResponse.Builder,SdkBuilder<ListTemplateStepsResponse.Builder,ListTemplateStepsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTemplateStepsResponse
public static interface ListTemplateStepsResponse.Builder extends MigrationHubOrchestratorResponse.Builder, SdkPojo, CopyableBuilder<ListTemplateStepsResponse.Builder,ListTemplateStepsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTemplateStepsResponse.BuildernextToken(String nextToken)The pagination token.ListTemplateStepsResponse.BuildertemplateStepSummaryList(Collection<TemplateStepSummary> templateStepSummaryList)The list of summaries of steps in a template.ListTemplateStepsResponse.BuildertemplateStepSummaryList(Consumer<TemplateStepSummary.Builder>... templateStepSummaryList)The list of summaries of steps in a template.ListTemplateStepsResponse.BuildertemplateStepSummaryList(TemplateStepSummary... templateStepSummaryList)The list of summaries of steps in a template.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.migrationhuborchestrator.model.MigrationHubOrchestratorResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListTemplateStepsResponse.Builder nextToken(String nextToken)
The pagination token.
- Parameters:
nextToken- The pagination token.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateStepSummaryList
ListTemplateStepsResponse.Builder templateStepSummaryList(Collection<TemplateStepSummary> templateStepSummaryList)
The list of summaries of steps in a template.
- Parameters:
templateStepSummaryList- The list of summaries of steps in a template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateStepSummaryList
ListTemplateStepsResponse.Builder templateStepSummaryList(TemplateStepSummary... templateStepSummaryList)
The list of summaries of steps in a template.
- Parameters:
templateStepSummaryList- The list of summaries of steps in a template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateStepSummaryList
ListTemplateStepsResponse.Builder templateStepSummaryList(Consumer<TemplateStepSummary.Builder>... templateStepSummaryList)
The list of summaries of steps in a template.
This is a convenience method that creates an instance of theTemplateStepSummary.Builderavoiding the need to create one manually viaTemplateStepSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#templateStepSummaryList(List.) - Parameters:
templateStepSummaryList- a consumer that will call methods onTemplateStepSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#templateStepSummaryList(java.util.Collection)
-
-