Interface FlowExecutionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowExecutionSummary.Builder,FlowExecutionSummary>,SdkBuilder<FlowExecutionSummary.Builder,FlowExecutionSummary>,SdkPojo
- Enclosing class:
- FlowExecutionSummary
@Mutable @NotThreadSafe public static interface FlowExecutionSummary.Builder extends SdkPojo, CopyableBuilder<FlowExecutionSummary.Builder,FlowExecutionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowExecutionSummary.BuildercreatedAt(Instant createdAt)The timestamp when the flow execution was created.FlowExecutionSummary.BuilderendedAt(Instant endedAt)The timestamp when the flow execution ended.FlowExecutionSummary.BuilderexecutionArn(String executionArn)The Amazon Resource Name (ARN) that uniquely identifies the flow execution.FlowExecutionSummary.BuilderflowAliasIdentifier(String flowAliasIdentifier)The unique identifier of the flow alias used for the execution.FlowExecutionSummary.BuilderflowIdentifier(String flowIdentifier)The unique identifier of the flow.FlowExecutionSummary.BuilderflowVersion(String flowVersion)The version of the flow used for the execution.FlowExecutionSummary.Builderstatus(String status)The current status of the flow execution.FlowExecutionSummary.Builderstatus(FlowExecutionStatus status)The current status of the flow execution.-
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
-
createdAt
FlowExecutionSummary.Builder createdAt(Instant createdAt)
The timestamp when the flow execution was created.
- Parameters:
createdAt- The timestamp when the flow execution was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endedAt
FlowExecutionSummary.Builder endedAt(Instant endedAt)
The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.
- Parameters:
endedAt- The timestamp when the flow execution ended. This field is only populated when the execution has completed, failed, timed out, or been aborted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionArn
FlowExecutionSummary.Builder executionArn(String executionArn)
The Amazon Resource Name (ARN) that uniquely identifies the flow execution.
- Parameters:
executionArn- The Amazon Resource Name (ARN) that uniquely identifies the flow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowAliasIdentifier
FlowExecutionSummary.Builder flowAliasIdentifier(String flowAliasIdentifier)
The unique identifier of the flow alias used for the execution.
- Parameters:
flowAliasIdentifier- The unique identifier of the flow alias used for the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowIdentifier
FlowExecutionSummary.Builder flowIdentifier(String flowIdentifier)
The unique identifier of the flow.
- Parameters:
flowIdentifier- The unique identifier of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
flowVersion
FlowExecutionSummary.Builder flowVersion(String flowVersion)
The version of the flow used for the execution.
- Parameters:
flowVersion- The version of the flow used for the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
FlowExecutionSummary.Builder status(String status)
The current status of the flow execution.
Flow executions time out after 24 hours.
- Parameters:
status- The current status of the flow execution.Flow executions time out after 24 hours.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionStatus,FlowExecutionStatus
-
status
FlowExecutionSummary.Builder status(FlowExecutionStatus status)
The current status of the flow execution.
Flow executions time out after 24 hours.
- Parameters:
status- The current status of the flow execution.Flow executions time out after 24 hours.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowExecutionStatus,FlowExecutionStatus
-
-