class Aws::DynamoDB::Types::UpdateTableReplicaAutoScalingInput

@note When making an API call, you may pass UpdateTableReplicaAutoScalingInput

data as a hash:

    {
      global_secondary_index_updates: [
        {
          index_name: "IndexName",
          provisioned_write_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
              },
            },
          },
        },
      ],
      table_name: "TableName", # required
      provisioned_write_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_updates: [
        {
          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
              },
            },
          },
        },
      ],
    }

@!attribute [rw] global_secondary_index_updates

Represents the auto scaling settings of the global secondary indexes
of the replica to be updated.
@return [Array<Types::GlobalSecondaryIndexAutoScalingUpdate>]

@!attribute [rw] table_name

The name of the global table to be updated.
@return [String]

@!attribute [rw] provisioned_write_capacity_auto_scaling_update

Represents the auto scaling settings to be modified for a global
table or global secondary index.
@return [Types::AutoScalingSettingsUpdate]

@!attribute [rw] replica_updates

Represents the auto scaling settings of replicas of the table that
will be modified.
@return [Array<Types::ReplicaAutoScalingUpdate>]

@see docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UpdateTableReplicaAutoScalingInput AWS API Documentation

Constants

SENSITIVE