Interface WorkflowStepGroupSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowStepGroupSummary.Builder,WorkflowStepGroupSummary>,SdkBuilder<WorkflowStepGroupSummary.Builder,WorkflowStepGroupSummary>,SdkPojo
- Enclosing class:
- WorkflowStepGroupSummary
public static interface WorkflowStepGroupSummary.Builder extends SdkPojo, CopyableBuilder<WorkflowStepGroupSummary.Builder,WorkflowStepGroupSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowStepGroupSummary.Builderid(String id)The ID of the step group.WorkflowStepGroupSummary.Buildername(String name)The name of the step group.WorkflowStepGroupSummary.Buildernext(String... next)The next step group.WorkflowStepGroupSummary.Buildernext(Collection<String> next)The next step group.WorkflowStepGroupSummary.Builderowner(String owner)The owner of the step group.WorkflowStepGroupSummary.Builderowner(Owner owner)The owner of the step group.WorkflowStepGroupSummary.Builderprevious(String... previous)The previous step group.WorkflowStepGroupSummary.Builderprevious(Collection<String> previous)The previous step group.WorkflowStepGroupSummary.Builderstatus(String status)The status of the step group.WorkflowStepGroupSummary.Builderstatus(StepGroupStatus status)The status of the step group.-
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
-
id
WorkflowStepGroupSummary.Builder id(String id)
The ID of the step group.
- Parameters:
id- The ID of the step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
WorkflowStepGroupSummary.Builder name(String name)
The name of the step group.
- Parameters:
name- The name of the step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
owner
WorkflowStepGroupSummary.Builder owner(String owner)
The owner of the step group.
-
owner
WorkflowStepGroupSummary.Builder owner(Owner owner)
The owner of the step group.
-
status
WorkflowStepGroupSummary.Builder status(String status)
The status of the step group.
- Parameters:
status- The status of the step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StepGroupStatus,StepGroupStatus
-
status
WorkflowStepGroupSummary.Builder status(StepGroupStatus status)
The status of the step group.
- Parameters:
status- The status of the step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StepGroupStatus,StepGroupStatus
-
previous
WorkflowStepGroupSummary.Builder previous(Collection<String> previous)
The previous step group.
- Parameters:
previous- The previous step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
previous
WorkflowStepGroupSummary.Builder previous(String... previous)
The previous step group.
- Parameters:
previous- The previous step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
WorkflowStepGroupSummary.Builder next(Collection<String> next)
The next step group.
- Parameters:
next- The next step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
WorkflowStepGroupSummary.Builder next(String... next)
The next step group.
- Parameters:
next- The next step group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-