Interface RunListItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RunListItem.Builder,RunListItem>,SdkBuilder<RunListItem.Builder,RunListItem>,SdkPojo
- Enclosing class:
- RunListItem
public static interface RunListItem.Builder extends SdkPojo, CopyableBuilder<RunListItem.Builder,RunListItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RunListItem.Builderarn(String arn)The run's ARN.RunListItem.BuildercreationTime(Instant creationTime)When the run was created.RunListItem.Builderid(String id)The run's ID.RunListItem.Buildername(String name)The run's name.RunListItem.Builderpriority(Integer priority)The run's priority.RunListItem.BuilderstartTime(Instant startTime)When the run started.RunListItem.Builderstatus(String status)The run's status.RunListItem.Builderstatus(RunStatus status)The run's status.RunListItem.BuilderstopTime(Instant stopTime)When the run stopped.RunListItem.BuilderstorageCapacity(Integer storageCapacity)The run's storage capacity in gibibytes.RunListItem.BuilderstorageType(String storageType)The run's storage type.RunListItem.BuilderstorageType(StorageType storageType)The run's storage type.RunListItem.BuilderworkflowId(String workflowId)The run's workflow ID.-
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
RunListItem.Builder arn(String arn)
The run's ARN.
- Parameters:
arn- The run's ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
RunListItem.Builder id(String id)
The run's ID.
- Parameters:
id- The run's ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
RunListItem.Builder status(String status)
The run's status.
-
status
RunListItem.Builder status(RunStatus status)
The run's status.
-
workflowId
RunListItem.Builder workflowId(String workflowId)
The run's workflow ID.
- Parameters:
workflowId- The run's workflow ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
RunListItem.Builder name(String name)
The run's name.
- Parameters:
name- The run's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
priority
RunListItem.Builder priority(Integer priority)
The run's priority.
- Parameters:
priority- The run's priority.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageCapacity
RunListItem.Builder storageCapacity(Integer storageCapacity)
The run's storage capacity in gibibytes. For dynamic storage, after the run has completed, this value is the maximum amount of storage used during the run.
- Parameters:
storageCapacity- The run's storage capacity in gibibytes. For dynamic storage, after the run has completed, this value is the maximum amount of storage used during the run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
RunListItem.Builder creationTime(Instant creationTime)
When the run was created.
- Parameters:
creationTime- When the run was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
RunListItem.Builder startTime(Instant startTime)
When the run started.
- Parameters:
startTime- When the run started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stopTime
RunListItem.Builder stopTime(Instant stopTime)
When the run stopped.
- Parameters:
stopTime- When the run stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageType
RunListItem.Builder storageType(String storageType)
The run's storage type.
- Parameters:
storageType- The run's storage type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageType,StorageType
-
storageType
RunListItem.Builder storageType(StorageType storageType)
The run's storage type.
- Parameters:
storageType- The run's storage type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageType,StorageType
-
-