Interface MonitorInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MonitorInfo.Builder,MonitorInfo>,SdkBuilder<MonitorInfo.Builder,MonitorInfo>,SdkPojo
- Enclosing class:
- MonitorInfo
public static interface MonitorInfo.Builder extends SdkPojo, CopyableBuilder<MonitorInfo.Builder,MonitorInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MonitorInfo.BuildermonitorArn(String monitorArn)The Amazon Resource Name (ARN) of the monitor resource.MonitorInfo.Builderstatus(String status)The status of the monitor.-
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
-
monitorArn
MonitorInfo.Builder monitorArn(String monitorArn)
The Amazon Resource Name (ARN) of the monitor resource.
- Parameters:
monitorArn- The Amazon Resource Name (ARN) of the monitor resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
MonitorInfo.Builder status(String status)
The status of the monitor. States include:
-
ACTIVE -
ACTIVE_STOPPING,ACTIVE_STOPPED -
UPDATE_IN_PROGRESS -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
- Parameters:
status- The status of the monitor. States include:-
ACTIVE -
ACTIVE_STOPPING,ACTIVE_STOPPED -
UPDATE_IN_PROGRESS -
CREATE_PENDING,CREATE_IN_PROGRESS,CREATE_FAILED -
DELETE_PENDING,DELETE_IN_PROGRESS,DELETE_FAILED
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-