Class: Aws::DynamoDB::Types::UpdateGlobalTableSettingsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass UpdateGlobalTableSettingsInput data as a hash:

{
  global_table_name: "TableName", # required
  global_table_billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
  global_table_provisioned_write_capacity_units: 1,
  global_table_provisioned_write_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
      },
    },
  },
  global_table_global_secondary_index_settings_update: [
    {
      index_name: "IndexName", # required
      provisioned_write_capacity_units: 1,
      provisioned_write_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_settings_update: [
    {
      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
              },
            },
          },
        },
      ],
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#global_table_billing_modeString

The billing mode of the global table. If ‘GlobalTableBillingMode` is not specified, the global table defaults to `PROVISIONED` capacity billing mode.

Returns:

  • (String)


7576
7577
7578
7579
7580
7581
7582
7583
7584
# File 'lib/aws-sdk-dynamodb/types.rb', line 7576

class UpdateGlobalTableSettingsInput < Struct.new(
  :global_table_name,
  :global_table_billing_mode,
  :global_table_provisioned_write_capacity_units,
  :global_table_provisioned_write_capacity_auto_scaling_settings_update,
  :global_table_global_secondary_index_settings_update,
  :replica_settings_update)
  include Aws::Structure
end

#global_table_global_secondary_index_settings_updateArray<Types::GlobalTableGlobalSecondaryIndexSettingsUpdate>

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



7576
7577
7578
7579
7580
7581
7582
7583
7584
# File 'lib/aws-sdk-dynamodb/types.rb', line 7576

class UpdateGlobalTableSettingsInput < Struct.new(
  :global_table_name,
  :global_table_billing_mode,
  :global_table_provisioned_write_capacity_units,
  :global_table_provisioned_write_capacity_auto_scaling_settings_update,
  :global_table_global_secondary_index_settings_update,
  :replica_settings_update)
  include Aws::Structure
end

#global_table_nameString

The name of the global table

Returns:

  • (String)


7576
7577
7578
7579
7580
7581
7582
7583
7584
# File 'lib/aws-sdk-dynamodb/types.rb', line 7576

class UpdateGlobalTableSettingsInput < Struct.new(
  :global_table_name,
  :global_table_billing_mode,
  :global_table_provisioned_write_capacity_units,
  :global_table_provisioned_write_capacity_auto_scaling_settings_update,
  :global_table_global_secondary_index_settings_update,
  :replica_settings_update)
  include Aws::Structure
end

#global_table_provisioned_write_capacity_auto_scaling_settings_updateTypes::AutoScalingSettingsUpdate

AutoScaling settings for managing provisioned write capacity for the global table.



7576
7577
7578
7579
7580
7581
7582
7583
7584
# File 'lib/aws-sdk-dynamodb/types.rb', line 7576

class UpdateGlobalTableSettingsInput < Struct.new(
  :global_table_name,
  :global_table_billing_mode,
  :global_table_provisioned_write_capacity_units,
  :global_table_provisioned_write_capacity_auto_scaling_settings_update,
  :global_table_global_secondary_index_settings_update,
  :replica_settings_update)
  include Aws::Structure
end

#global_table_provisioned_write_capacity_unitsInteger

The maximum number of writes consumed per second before DynamoDB returns a ‘ThrottlingException.`

Returns:

  • (Integer)


7576
7577
7578
7579
7580
7581
7582
7583
7584
# File 'lib/aws-sdk-dynamodb/types.rb', line 7576

class UpdateGlobalTableSettingsInput < Struct.new(
  :global_table_name,
  :global_table_billing_mode,
  :global_table_provisioned_write_capacity_units,
  :global_table_provisioned_write_capacity_auto_scaling_settings_update,
  :global_table_global_secondary_index_settings_update,
  :replica_settings_update)
  include Aws::Structure
end

#replica_settings_updateArray<Types::ReplicaSettingsUpdate>

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

Returns:



7576
7577
7578
7579
7580
7581
7582
7583
7584
# File 'lib/aws-sdk-dynamodb/types.rb', line 7576

class UpdateGlobalTableSettingsInput < Struct.new(
  :global_table_name,
  :global_table_billing_mode,
  :global_table_provisioned_write_capacity_units,
  :global_table_provisioned_write_capacity_auto_scaling_settings_update,
  :global_table_global_secondary_index_settings_update,
  :replica_settings_update)
  include Aws::Structure
end