Interface ExecutionStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionStatus.Builder,ExecutionStatus>,SdkBuilder<ExecutionStatus.Builder,ExecutionStatus>,SdkPojo
- Enclosing class:
- ExecutionStatus
public static interface ExecutionStatus.Builder extends SdkPojo, CopyableBuilder<ExecutionStatus.Builder,ExecutionStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionStatus.BuildercompletedAt(Instant completedAt)The time when the execution was completed.ExecutionStatus.BuildercreatedAt(Instant createdAt)The time when the execution was created.ExecutionStatus.BuilderlastUpdatedAt(Instant lastUpdatedAt)The time when the execution was last updated.ExecutionStatus.BuilderstatusCode(String statusCode)The code for the status of the execution.ExecutionStatus.BuilderstatusCode(ExecutionStatusCode statusCode)The code for the status of the execution.ExecutionStatus.BuilderstatusReason(String statusReason)The reason for the failed status.ExecutionStatus.BuilderstatusReason(ExecutionStatusReason statusReason)The reason for the failed status.-
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
-
completedAt
ExecutionStatus.Builder completedAt(Instant completedAt)
The time when the execution was completed.
- Parameters:
completedAt- The time when the execution was completed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
ExecutionStatus.Builder createdAt(Instant createdAt)
The time when the execution was created.
- Parameters:
createdAt- The time when the execution was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
ExecutionStatus.Builder lastUpdatedAt(Instant lastUpdatedAt)
The time when the execution was last updated.
- Parameters:
lastUpdatedAt- The time when the execution was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusCode
ExecutionStatus.Builder statusCode(String statusCode)
The code for the status of the execution.
- Parameters:
statusCode- The code for the status of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatusCode,ExecutionStatusCode
-
statusCode
ExecutionStatus.Builder statusCode(ExecutionStatusCode statusCode)
The code for the status of the execution.
- Parameters:
statusCode- The code for the status of the execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatusCode,ExecutionStatusCode
-
statusReason
ExecutionStatus.Builder statusReason(String statusReason)
The reason for the failed status.
- Parameters:
statusReason- The reason for the failed status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatusReason,ExecutionStatusReason
-
statusReason
ExecutionStatus.Builder statusReason(ExecutionStatusReason statusReason)
The reason for the failed status.
- Parameters:
statusReason- The reason for the failed status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutionStatusReason,ExecutionStatusReason
-
-