Interface CapacityManagerMonitoredTagKey.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CapacityManagerMonitoredTagKey.Builder,CapacityManagerMonitoredTagKey>,SdkBuilder<CapacityManagerMonitoredTagKey.Builder,CapacityManagerMonitoredTagKey>,SdkPojo
- Enclosing class:
- CapacityManagerMonitoredTagKey
@Mutable @NotThreadSafe public static interface CapacityManagerMonitoredTagKey.Builder extends SdkPojo, CopyableBuilder<CapacityManagerMonitoredTagKey.Builder,CapacityManagerMonitoredTagKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CapacityManagerMonitoredTagKey.BuildercapacityManagerProvided(Boolean capacityManagerProvided)Indicates whether this tag key is provided by Capacity Manager by default, rather than being user-activated.CapacityManagerMonitoredTagKey.BuilderearliestDatapointTimestamp(Instant earliestDatapointTimestamp)The earliest timestamp from which tag data is available for queries, in UTC ISO 8601 format.CapacityManagerMonitoredTagKey.Builderstatus(String status)The current status of the monitored tag key.CapacityManagerMonitoredTagKey.Builderstatus(CapacityManagerMonitoredTagKeyStatus status)The current status of the monitored tag key.CapacityManagerMonitoredTagKey.BuilderstatusMessage(String statusMessage)A message providing additional details about the current status of the monitored tag key.CapacityManagerMonitoredTagKey.BuildertagKey(String tagKey)The tag key being monitored.-
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
-
tagKey
CapacityManagerMonitoredTagKey.Builder tagKey(String tagKey)
The tag key being monitored.
- Parameters:
tagKey- The tag key being monitored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
CapacityManagerMonitoredTagKey.Builder status(String status)
The current status of the monitored tag key. Valid values are
activating,activated,deactivating, andsuspended.- Parameters:
status- The current status of the monitored tag key. Valid values areactivating,activated,deactivating, andsuspended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CapacityManagerMonitoredTagKeyStatus,CapacityManagerMonitoredTagKeyStatus
-
status
CapacityManagerMonitoredTagKey.Builder status(CapacityManagerMonitoredTagKeyStatus status)
The current status of the monitored tag key. Valid values are
activating,activated,deactivating, andsuspended.- Parameters:
status- The current status of the monitored tag key. Valid values areactivating,activated,deactivating, andsuspended.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CapacityManagerMonitoredTagKeyStatus,CapacityManagerMonitoredTagKeyStatus
-
statusMessage
CapacityManagerMonitoredTagKey.Builder statusMessage(String statusMessage)
A message providing additional details about the current status of the monitored tag key.
- Parameters:
statusMessage- A message providing additional details about the current status of the monitored tag key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
capacityManagerProvided
CapacityManagerMonitoredTagKey.Builder capacityManagerProvided(Boolean capacityManagerProvided)
Indicates whether this tag key is provided by Capacity Manager by default, rather than being user-activated.
- Parameters:
capacityManagerProvided- Indicates whether this tag key is provided by Capacity Manager by default, rather than being user-activated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
earliestDatapointTimestamp
CapacityManagerMonitoredTagKey.Builder earliestDatapointTimestamp(Instant earliestDatapointTimestamp)
The earliest timestamp from which tag data is available for queries, in UTC ISO 8601 format.
- Parameters:
earliestDatapointTimestamp- The earliest timestamp from which tag data is available for queries, in UTC ISO 8601 format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-