CompleteScalingInterval

class aws_cdk.aws_autoscaling_common.CompleteScalingInterval(*, lower, upper, change=None)

Bases: object

Parameters:
  • lower (Union[int, float]) –

  • upper (Union[int, float]) –

  • change (Union[int, float, None]) –

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_autoscaling_common as autoscaling_common

complete_scaling_interval = autoscaling_common.CompleteScalingInterval(
    lower=123,
    upper=123,

    # the properties below are optional
    change=123
)

Attributes

change
lower
upper