Interface ScheduledAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScheduledAction.Builder,ScheduledAction>,SdkBuilder<ScheduledAction.Builder,ScheduledAction>,SdkPojo
- Enclosing class:
- ScheduledAction
@Mutable @NotThreadSafe public static interface ScheduledAction.Builder extends SdkPojo, CopyableBuilder<ScheduledAction.Builder,ScheduledAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScheduledAction.Buildercancellable(Boolean cancellable)Whether or not the scheduled action is cancellable.ScheduledAction.Builderdescription(String description)A description of the action to be taken.ScheduledAction.Builderid(String id)The unique identifier of the scheduled action.ScheduledAction.Buildermandatory(Boolean mandatory)Whether the action is required or optional.ScheduledAction.BuilderscheduledBy(String scheduledBy)Whether the action was scheduled manually (CUSTOMER, or by OpenSearch Service automatically (SYSTEM).ScheduledAction.BuilderscheduledBy(ScheduledBy scheduledBy)Whether the action was scheduled manually (CUSTOMER, or by OpenSearch Service automatically (SYSTEM).ScheduledAction.BuilderscheduledTime(Long scheduledTime)The time when the change is scheduled to happen.ScheduledAction.Builderseverity(String severity)The severity of the action.ScheduledAction.Builderseverity(ActionSeverity severity)The severity of the action.ScheduledAction.Builderstatus(String status)The current status of the scheduled action.ScheduledAction.Builderstatus(ActionStatus status)The current status of the scheduled action.ScheduledAction.Buildertype(String type)The type of action that will be taken on the domain.ScheduledAction.Buildertype(ActionType type)The type of action that will be taken on the domain.-
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
-
id
ScheduledAction.Builder id(String id)
The unique identifier of the scheduled action.
- Parameters:
id- The unique identifier of the scheduled action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
ScheduledAction.Builder type(String type)
The type of action that will be taken on the domain.
- Parameters:
type- The type of action that will be taken on the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType,ActionType
-
type
ScheduledAction.Builder type(ActionType type)
The type of action that will be taken on the domain.
- Parameters:
type- The type of action that will be taken on the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionType,ActionType
-
severity
ScheduledAction.Builder severity(String severity)
The severity of the action.
- Parameters:
severity- The severity of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionSeverity,ActionSeverity
-
severity
ScheduledAction.Builder severity(ActionSeverity severity)
The severity of the action.
- Parameters:
severity- The severity of the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionSeverity,ActionSeverity
-
scheduledTime
ScheduledAction.Builder scheduledTime(Long scheduledTime)
The time when the change is scheduled to happen.
- Parameters:
scheduledTime- The time when the change is scheduled to happen.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
ScheduledAction.Builder description(String description)
A description of the action to be taken.
- Parameters:
description- A description of the action to be taken.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledBy
ScheduledAction.Builder scheduledBy(String scheduledBy)
Whether the action was scheduled manually (
CUSTOMER, or by OpenSearch Service automatically (SYSTEM).- Parameters:
scheduledBy- Whether the action was scheduled manually (CUSTOMER, or by OpenSearch Service automatically (SYSTEM).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScheduledBy,ScheduledBy
-
scheduledBy
ScheduledAction.Builder scheduledBy(ScheduledBy scheduledBy)
Whether the action was scheduled manually (
CUSTOMER, or by OpenSearch Service automatically (SYSTEM).- Parameters:
scheduledBy- Whether the action was scheduled manually (CUSTOMER, or by OpenSearch Service automatically (SYSTEM).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScheduledBy,ScheduledBy
-
status
ScheduledAction.Builder status(String status)
The current status of the scheduled action.
- Parameters:
status- The current status of the scheduled action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionStatus,ActionStatus
-
status
ScheduledAction.Builder status(ActionStatus status)
The current status of the scheduled action.
- Parameters:
status- The current status of the scheduled action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActionStatus,ActionStatus
-
mandatory
ScheduledAction.Builder mandatory(Boolean mandatory)
Whether the action is required or optional.
- Parameters:
mandatory- Whether the action is required or optional.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cancellable
ScheduledAction.Builder cancellable(Boolean cancellable)
Whether or not the scheduled action is cancellable.
- Parameters:
cancellable- Whether or not the scheduled action is cancellable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-