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

Class: Aws::DynamoDB::Types::ReplicaGlobalSecondaryIndexSettingsUpdate

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

Overview

Note:

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

{
  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
      },
    },
  },
}

Represents the settings of a global secondary index for a global table that will be modified.

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index. The name must be unique among all other indexes on this table.

Returns:

  • (String)

    The name of the global secondary index.

#provisioned_read_capacity_auto_scaling_settings_updateTypes::AutoScalingSettingsUpdate

Auto scaling settings for managing a global secondary index replica\'s read capacity units.

Returns:

#provisioned_read_capacity_unitsInteger

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.

Returns:

  • (Integer)

    The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.