The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::AutoScaling::SetDesiredCapacity - Arguments for method SetDesiredCapacity on Paws::AutoScaling

DESCRIPTION

This class represents the parameters used for calling the method SetDesiredCapacity on the Auto Scaling service. Use the attributes of this class as arguments to method SetDesiredCapacity.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SetDesiredCapacity.

SYNOPSIS

    my $autoscaling = Paws->service('AutoScaling');
  # To set the desired capacity for an Auto Scaling group
  # This example sets the desired capacity for the specified Auto Scaling group.
    $autoscaling->SetDesiredCapacity(
      'AutoScalingGroupName' => 'my-auto-scaling-group',
      'DesiredCapacity'      => 2,
      'HonorCooldown'        => 1
    );

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/autoscaling/SetDesiredCapacity

ATTRIBUTES

REQUIRED AutoScalingGroupName => Str

The name of the Auto Scaling group.

REQUIRED DesiredCapacity => Int

The desired capacity is the initial capacity of the Auto Scaling group after this operation completes and the capacity it attempts to maintain.

HonorCooldown => Bool

Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to complete before initiating a scaling activity to set your Auto Scaling group to its new capacity. By default, Amazon EC2 Auto Scaling does not honor the cooldown period during manual scaling activities.

SEE ALSO

This class forms part of Paws, documenting arguments for method SetDesiredCapacity in Paws::AutoScaling

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues