Interface ExecutionDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionDetails.Builder,ExecutionDetails>,SdkBuilder<ExecutionDetails.Builder,ExecutionDetails>,SdkPojo
- Enclosing class:
- ExecutionDetails
public static interface ExecutionDetails.Builder extends SdkPojo, CopyableBuilder<ExecutionDetails.Builder,ExecutionDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionDetails.BuildermostRecentExecutionMessage(String mostRecentExecutionMessage)Describes the details of the most recent flow run.ExecutionDetails.BuildermostRecentExecutionStatus(String mostRecentExecutionStatus)Specifies the status of the most recent flow run.ExecutionDetails.BuildermostRecentExecutionStatus(ExecutionStatus mostRecentExecutionStatus)Specifies the status of the most recent flow run.ExecutionDetails.BuildermostRecentExecutionTime(Instant mostRecentExecutionTime)Specifies the time of the most recent flow run.-
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
-
mostRecentExecutionMessage
ExecutionDetails.Builder mostRecentExecutionMessage(String mostRecentExecutionMessage)
Describes the details of the most recent flow run.
- Parameters:
mostRecentExecutionMessage- Describes the details of the most recent flow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mostRecentExecutionTime
ExecutionDetails.Builder mostRecentExecutionTime(Instant mostRecentExecutionTime)
Specifies the time of the most recent flow run.
- Parameters:
mostRecentExecutionTime- Specifies the time of the most recent flow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mostRecentExecutionStatus
ExecutionDetails.Builder mostRecentExecutionStatus(String mostRecentExecutionStatus)
Specifies the status of the most recent flow run.
- Parameters:
mostRecentExecutionStatus- Specifies the status of the most recent flow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatus,ExecutionStatus
-
mostRecentExecutionStatus
ExecutionDetails.Builder mostRecentExecutionStatus(ExecutionStatus mostRecentExecutionStatus)
Specifies the status of the most recent flow run.
- Parameters:
mostRecentExecutionStatus- Specifies the status of the most recent flow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatus,ExecutionStatus
-
-