class Aws::DynamoDB::Types::ReplicaSettingsUpdate

Represents the settings for a global table in a Region that will be modified.

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

data as a hash:

    {
      region_name: "RegionName", # required
      replica_provisioned_read_capacity_units: 1,
      replica_provisioned_read_capacity_auto_scaling_settings_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_global_secondary_index_settings_update: [
        {
          index_name: "IndexName", # required
          provisioned_read_capacity_units: 1,
          provisioned_read_capacity_auto_scaling_settings_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] region_name

The Region of the replica to be added.
@return [String]

@!attribute [rw] replica_provisioned_read_capacity_units

The maximum number of strongly consistent reads consumed per second
before DynamoDB returns a `ThrottlingException`. For more
information, see [Specifying Read and Write Requirements][1] in the
*Amazon DynamoDB Developer Guide*.

[1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput
@return [Integer]

@!attribute [rw] replica_provisioned_read_capacity_auto_scaling_settings_update

Auto scaling settings for managing a global table replica's read
capacity units.
@return [Types::AutoScalingSettingsUpdate]

@!attribute [rw] replica_global_secondary_index_settings_update

Represents the settings of a global secondary index for a global
table that will be modified.
@return [Array<Types::ReplicaGlobalSecondaryIndexSettingsUpdate>]

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

Constants

SENSITIVE