Interface WorkflowListItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowListItem.Builder,WorkflowListItem>,SdkBuilder<WorkflowListItem.Builder,WorkflowListItem>,SdkPojo
- Enclosing class:
- WorkflowListItem
public static interface WorkflowListItem.Builder extends SdkPojo, CopyableBuilder<WorkflowListItem.Builder,WorkflowListItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowListItem.Builderarn(String arn)The workflow's ARN.WorkflowListItem.BuildercreationTime(Instant creationTime)When the workflow was created.WorkflowListItem.Builderdigest(String digest)The workflow's digest.WorkflowListItem.Builderid(String id)The workflow's ID.WorkflowListItem.Buildermetadata(Map<String,String> metadata)Any metadata available for workflow.WorkflowListItem.Buildername(String name)The workflow's name.WorkflowListItem.Builderstatus(String status)The workflow's status.WorkflowListItem.Builderstatus(WorkflowStatus status)The workflow's status.WorkflowListItem.Buildertype(String type)The workflow's type.WorkflowListItem.Buildertype(WorkflowType type)The workflow's type.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
arn
WorkflowListItem.Builder arn(String arn)
The workflow's ARN.
- Parameters:
arn- The workflow's ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
WorkflowListItem.Builder id(String id)
The workflow's ID.
- Parameters:
id- The workflow's ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
WorkflowListItem.Builder name(String name)
The workflow's name.
- Parameters:
name- The workflow's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
WorkflowListItem.Builder status(String status)
The workflow's status.
- Parameters:
status- The workflow's status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowStatus,WorkflowStatus
-
status
WorkflowListItem.Builder status(WorkflowStatus status)
The workflow's status.
- Parameters:
status- The workflow's status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowStatus,WorkflowStatus
-
type
WorkflowListItem.Builder type(String type)
The workflow's type.
- Parameters:
type- The workflow's type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowType,WorkflowType
-
type
WorkflowListItem.Builder type(WorkflowType type)
The workflow's type.
- Parameters:
type- The workflow's type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowType,WorkflowType
-
digest
WorkflowListItem.Builder digest(String digest)
The workflow's digest.
- Parameters:
digest- The workflow's digest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
WorkflowListItem.Builder creationTime(Instant creationTime)
When the workflow was created.
- Parameters:
creationTime- When the workflow was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadata
WorkflowListItem.Builder metadata(Map<String,String> metadata)
Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return.
- Parameters:
metadata- Any metadata available for workflow. The information listed may vary depending on the workflow, and there may also be no metadata to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-