Interface GetTemplateResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetTemplateResponse.Builder,GetTemplateResponse>,MigrationHubOrchestratorResponse.Builder,SdkBuilder<GetTemplateResponse.Builder,GetTemplateResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetTemplateResponse
public static interface GetTemplateResponse.Builder extends MigrationHubOrchestratorResponse.Builder, SdkPojo, CopyableBuilder<GetTemplateResponse.Builder,GetTemplateResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetTemplateResponse.BuildercreationTime(Instant creationTime)The time at which the template was last created.GetTemplateResponse.Builderdescription(String description)The time at which the template was last created.GetTemplateResponse.Builderid(String id)The ID of the template.GetTemplateResponse.Builderinputs(Collection<TemplateInput> inputs)The inputs provided for the creation of the migration workflow.GetTemplateResponse.Builderinputs(Consumer<TemplateInput.Builder>... inputs)The inputs provided for the creation of the migration workflow.GetTemplateResponse.Builderinputs(TemplateInput... inputs)The inputs provided for the creation of the migration workflow.GetTemplateResponse.Buildername(String name)The name of the template.GetTemplateResponse.Builderstatus(String status)The status of the template.GetTemplateResponse.Builderstatus(TemplateStatus status)The status of the template.GetTemplateResponse.Buildertools(Collection<Tool> tools)List of AWS services utilized in a migration workflow.GetTemplateResponse.Buildertools(Consumer<Tool.Builder>... tools)List of AWS services utilized in a migration workflow.GetTemplateResponse.Buildertools(Tool... tools)List of AWS services utilized in a migration workflow.-
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
-
id
GetTemplateResponse.Builder id(String id)
The ID of the template.
- Parameters:
id- The ID of the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
GetTemplateResponse.Builder name(String name)
The name of the template.
- Parameters:
name- The name of the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetTemplateResponse.Builder description(String description)
The time at which the template was last created.
- Parameters:
description- The time at which the template was last created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
GetTemplateResponse.Builder inputs(Collection<TemplateInput> inputs)
The inputs provided for the creation of the migration workflow.
- Parameters:
inputs- The inputs provided for the creation of the migration workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
GetTemplateResponse.Builder inputs(TemplateInput... inputs)
The inputs provided for the creation of the migration workflow.
- Parameters:
inputs- The inputs provided for the creation of the migration workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
GetTemplateResponse.Builder inputs(Consumer<TemplateInput.Builder>... inputs)
The inputs provided for the creation of the migration workflow.
This is a convenience method that creates an instance of theTemplateInput.Builderavoiding the need to create one manually viaTemplateInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inputs(List.) - Parameters:
inputs- a consumer that will call methods onTemplateInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inputs(java.util.Collection)
-
tools
GetTemplateResponse.Builder tools(Collection<Tool> tools)
List of AWS services utilized in a migration workflow.
- Parameters:
tools- List of AWS services utilized in a migration workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tools
GetTemplateResponse.Builder tools(Tool... tools)
List of AWS services utilized in a migration workflow.
- Parameters:
tools- List of AWS services utilized in a migration workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tools
GetTemplateResponse.Builder tools(Consumer<Tool.Builder>... tools)
List of AWS services utilized in a migration workflow.
This is a convenience method that creates an instance of theTool.Builderavoiding the need to create one manually viaTool.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tools(List.) - Parameters:
tools- a consumer that will call methods onTool.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tools(java.util.Collection)
-
status
GetTemplateResponse.Builder status(String status)
The status of the template.
- Parameters:
status- The status of the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TemplateStatus,TemplateStatus
-
status
GetTemplateResponse.Builder status(TemplateStatus status)
The status of the template.
- Parameters:
status- The status of the template.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TemplateStatus,TemplateStatus
-
creationTime
GetTemplateResponse.Builder creationTime(Instant creationTime)
The time at which the template was last created.
- Parameters:
creationTime- The time at which the template was last created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-