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

Class: Aws::DynamoDB::Types::ReplicaAutoScalingUpdate

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

Overview

Note:

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

{
  region_name: "RegionName", # required
  replica_global_secondary_index_updates: [
    {
      index_name: "IndexName",
      provisioned_read_capacity_auto_scaling_update: {
        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
          },
        },
      },
    },
  ],
  replica_provisioned_read_capacity_auto_scaling_update: {
    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 of a replica that will be modified.

Instance Attribute Summary collapse

Instance Attribute Details

#region_nameString

The Region where the replica exists.

Returns:

  • (String)

    The Region where the replica exists.

#replica_global_secondary_index_updatesArray<Types::ReplicaGlobalSecondaryIndexAutoScalingUpdate>

Represents the auto scaling settings of global secondary indexes that will be modified.

Returns:

#replica_provisioned_read_capacity_auto_scaling_updateTypes::AutoScalingSettingsUpdate

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

Returns: