Interface ManagedActionHistoryItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ManagedActionHistoryItem.Builder,ManagedActionHistoryItem>,SdkBuilder<ManagedActionHistoryItem.Builder,ManagedActionHistoryItem>,SdkPojo
- Enclosing class:
- ManagedActionHistoryItem
public static interface ManagedActionHistoryItem.Builder extends SdkPojo, CopyableBuilder<ManagedActionHistoryItem.Builder,ManagedActionHistoryItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedActionHistoryItem.BuilderactionDescription(String actionDescription)A description of the managed action.ManagedActionHistoryItem.BuilderactionId(String actionId)A unique identifier for the managed action.ManagedActionHistoryItem.BuilderactionType(String actionType)The type of the managed action.ManagedActionHistoryItem.BuilderactionType(ActionType actionType)The type of the managed action.ManagedActionHistoryItem.BuilderexecutedTime(Instant executedTime)The date and time that the action started executing.ManagedActionHistoryItem.BuilderfailureDescription(String failureDescription)If the action failed, a description of the failure.ManagedActionHistoryItem.BuilderfailureType(String failureType)If the action failed, the type of failure.ManagedActionHistoryItem.BuilderfailureType(FailureType failureType)If the action failed, the type of failure.ManagedActionHistoryItem.BuilderfinishedTime(Instant finishedTime)The date and time that the action finished executing.ManagedActionHistoryItem.Builderstatus(String status)The status of the action.ManagedActionHistoryItem.Builderstatus(ActionHistoryStatus status)The status of the action.-
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
-
actionId
ManagedActionHistoryItem.Builder actionId(String actionId)
A unique identifier for the managed action.
- Parameters:
actionId- A unique identifier for the managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionType
ManagedActionHistoryItem.Builder actionType(String actionType)
The type of the managed action.
- Parameters:
actionType- The type of the managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType,ActionType
-
actionType
ManagedActionHistoryItem.Builder actionType(ActionType actionType)
The type of the managed action.
- Parameters:
actionType- The type of the managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType,ActionType
-
actionDescription
ManagedActionHistoryItem.Builder actionDescription(String actionDescription)
A description of the managed action.
- Parameters:
actionDescription- A description of the managed action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureType
ManagedActionHistoryItem.Builder failureType(String failureType)
If the action failed, the type of failure.
- Parameters:
failureType- If the action failed, the type of failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FailureType,FailureType
-
failureType
ManagedActionHistoryItem.Builder failureType(FailureType failureType)
If the action failed, the type of failure.
- Parameters:
failureType- If the action failed, the type of failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FailureType,FailureType
-
status
ManagedActionHistoryItem.Builder status(String status)
The status of the action.
- Parameters:
status- The status of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionHistoryStatus,ActionHistoryStatus
-
status
ManagedActionHistoryItem.Builder status(ActionHistoryStatus status)
The status of the action.
- Parameters:
status- The status of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionHistoryStatus,ActionHistoryStatus
-
failureDescription
ManagedActionHistoryItem.Builder failureDescription(String failureDescription)
If the action failed, a description of the failure.
- Parameters:
failureDescription- If the action failed, a description of the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executedTime
ManagedActionHistoryItem.Builder executedTime(Instant executedTime)
The date and time that the action started executing.
- Parameters:
executedTime- The date and time that the action started executing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finishedTime
ManagedActionHistoryItem.Builder finishedTime(Instant finishedTime)
The date and time that the action finished executing.
- Parameters:
finishedTime- The date and time that the action finished executing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-