Interface WorkflowStepSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowStepSummary.Builder,WorkflowStepSummary>,SdkBuilder<WorkflowStepSummary.Builder,WorkflowStepSummary>,SdkPojo
- Enclosing class:
- WorkflowStepSummary
public static interface WorkflowStepSummary.Builder extends SdkPojo, CopyableBuilder<WorkflowStepSummary.Builder,WorkflowStepSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowStepSummary.Builderdescription(String description)The description of the step.WorkflowStepSummary.Buildername(String name)The name of the step.WorkflowStepSummary.Buildernext(String... next)The next step.WorkflowStepSummary.Buildernext(Collection<String> next)The next step.WorkflowStepSummary.BuildernoOfSrvCompleted(Integer noOfSrvCompleted)The number of servers that have been migrated.WorkflowStepSummary.BuildernoOfSrvFailed(Integer noOfSrvFailed)The number of servers that have failed to migrate.WorkflowStepSummary.Builderowner(String owner)The owner of the step.WorkflowStepSummary.Builderowner(Owner owner)The owner of the step.WorkflowStepSummary.Builderprevious(String... previous)The previous step.WorkflowStepSummary.Builderprevious(Collection<String> previous)The previous step.WorkflowStepSummary.BuilderscriptLocation(String scriptLocation)The location of the script.WorkflowStepSummary.Builderstatus(String status)The status of the step.WorkflowStepSummary.Builderstatus(StepStatus status)The status of the step.WorkflowStepSummary.BuilderstatusMessage(String statusMessage)The status message of the migration workflow.WorkflowStepSummary.BuilderstepActionType(String stepActionType)The action type of the step.WorkflowStepSummary.BuilderstepActionType(StepActionType stepActionType)The action type of the step.WorkflowStepSummary.BuilderstepId(String stepId)The ID of the step.WorkflowStepSummary.BuildertotalNoOfSrv(Integer totalNoOfSrv)The total number of servers that have been migrated.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
stepId
WorkflowStepSummary.Builder stepId(String stepId)
The ID of the step.
- Parameters:
stepId- The ID of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
WorkflowStepSummary.Builder name(String name)
The name of the step.
- Parameters:
name- The name of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepActionType
WorkflowStepSummary.Builder stepActionType(String stepActionType)
The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
- Parameters:
stepActionType- The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StepActionType,StepActionType
-
stepActionType
WorkflowStepSummary.Builder stepActionType(StepActionType stepActionType)
The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.
- Parameters:
stepActionType- The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StepActionType,StepActionType
-
owner
WorkflowStepSummary.Builder owner(String owner)
The owner of the step.
-
owner
WorkflowStepSummary.Builder owner(Owner owner)
The owner of the step.
-
previous
WorkflowStepSummary.Builder previous(Collection<String> previous)
The previous step.
- Parameters:
previous- The previous step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
previous
WorkflowStepSummary.Builder previous(String... previous)
The previous step.
- Parameters:
previous- The previous step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
WorkflowStepSummary.Builder next(Collection<String> next)
The next step.
- Parameters:
next- The next step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
WorkflowStepSummary.Builder next(String... next)
The next step.
- Parameters:
next- The next step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
WorkflowStepSummary.Builder status(String status)
The status of the step.
- Parameters:
status- The status of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StepStatus,StepStatus
-
status
WorkflowStepSummary.Builder status(StepStatus status)
The status of the step.
- Parameters:
status- The status of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StepStatus,StepStatus
-
statusMessage
WorkflowStepSummary.Builder statusMessage(String statusMessage)
The status message of the migration workflow.
- Parameters:
statusMessage- The status message of the migration workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noOfSrvCompleted
WorkflowStepSummary.Builder noOfSrvCompleted(Integer noOfSrvCompleted)
The number of servers that have been migrated.
- Parameters:
noOfSrvCompleted- The number of servers that have been migrated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noOfSrvFailed
WorkflowStepSummary.Builder noOfSrvFailed(Integer noOfSrvFailed)
The number of servers that have failed to migrate.
- Parameters:
noOfSrvFailed- The number of servers that have failed to migrate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalNoOfSrv
WorkflowStepSummary.Builder totalNoOfSrv(Integer totalNoOfSrv)
The total number of servers that have been migrated.
- Parameters:
totalNoOfSrv- The total number of servers that have been migrated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
WorkflowStepSummary.Builder description(String description)
The description of the step.
- Parameters:
description- The description of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scriptLocation
WorkflowStepSummary.Builder scriptLocation(String scriptLocation)
The location of the script.
- Parameters:
scriptLocation- The location of the script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-