Interface ScalableTargetAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScalableTargetAction.Builder,ScalableTargetAction>,SdkBuilder<ScalableTargetAction.Builder,ScalableTargetAction>,SdkPojo
- Enclosing class:
- ScalableTargetAction
public static interface ScalableTargetAction.Builder extends SdkPojo, CopyableBuilder<ScalableTargetAction.Builder,ScalableTargetAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScalableTargetAction.BuildermaxCapacity(Integer maxCapacity)The maximum capacity.ScalableTargetAction.BuilderminCapacity(Integer minCapacity)The minimum capacity.-
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
-
minCapacity
ScalableTargetAction.Builder minCapacity(Integer minCapacity)
The minimum capacity.
When the scheduled action runs, the resource will have at least this much capacity, but it might have more depending on other settings, such as the target utilization level of a target tracking scaling policy.
- Parameters:
minCapacity- The minimum capacity.When the scheduled action runs, the resource will have at least this much capacity, but it might have more depending on other settings, such as the target utilization level of a target tracking scaling policy.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxCapacity
ScalableTargetAction.Builder maxCapacity(Integer maxCapacity)
The maximum capacity.
Although you can specify a large maximum capacity, note that service quotas may impose lower limits. Each service has its own default quotas for the maximum capacity of the resource. If you want to specify a higher limit, you can request an increase. For more information, consult the documentation for that service. For information about the default quotas for each service, see Service endpoints and quotas in the Amazon Web Services General Reference.
- Parameters:
maxCapacity- The maximum capacity.Although you can specify a large maximum capacity, note that service quotas may impose lower limits. Each service has its own default quotas for the maximum capacity of the resource. If you want to specify a higher limit, you can request an increase. For more information, consult the documentation for that service. For information about the default quotas for each service, see Service endpoints and quotas in the Amazon Web Services General Reference.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-