You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DynamoDB::Types::AutoScalingSettingsUpdate

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AutoScalingSettingsUpdate as input to an Aws::Client method, you can use a vanilla Hash:

{
  minimum_units: 1,
  maximum_units: 1,
  auto_scaling_disabled: false,
  auto_scaling_role_arn: "AutoScalingRoleArn",
  scaling_policy_update: {
    policy_name: "AutoScalingPolicyName",
    target_tracking_scaling_policy_configuration: { # required
      disable_scale_in: false,
      scale_in_cooldown: 1,
      scale_out_cooldown: 1,
      target_value: 1.0, # required
    },
  },
}

Represents the auto scaling settings to be modified for a global table or global secondary index.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_disabledBoolean

Disabled auto scaling for this global table or global secondary index.

Returns:

  • (Boolean)

    Disabled auto scaling for this global table or global secondary index.

#auto_scaling_role_arnString

Role ARN used for configuring auto scaling policy.

Returns:

  • (String)

    Role ARN used for configuring auto scaling policy.

#maximum_unitsInteger

The maximum capacity units that a global table or global secondary index should be scaled up to.

Returns:

  • (Integer)

    The maximum capacity units that a global table or global secondary index should be scaled up to.

#minimum_unitsInteger

The minimum capacity units that a global table or global secondary index should be scaled down to.

Returns:

  • (Integer)

    The minimum capacity units that a global table or global secondary index should be scaled down to.

#scaling_policy_updateTypes::AutoScalingPolicyUpdate

The scaling policy to apply for scaling target global table or global secondary index capacity units.

Returns: