Class: Aws::DynamoDB::Types::ReplicaGlobalSecondaryIndex

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 ReplicaGlobalSecondaryIndex data as a hash:

{
  index_name: "IndexName", # required
  provisioned_throughput_override: {
    read_capacity_units: 1,
  },
}

Represents the properties of a replica global secondary index.

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index.

Returns:

  • (String)


6183
6184
6185
6186
6187
# File 'lib/aws-sdk-dynamodb/types.rb', line 6183

class ReplicaGlobalSecondaryIndex < Struct.new(
  :index_name,
  :provisioned_throughput_override)
  include Aws::Structure
end

#provisioned_throughput_overrideTypes::ProvisionedThroughputOverride

Replica table GSI-specific provisioned throughput. If not specified, uses the source table GSI’s read capacity settings.



6183
6184
6185
6186
6187
# File 'lib/aws-sdk-dynamodb/types.rb', line 6183

class ReplicaGlobalSecondaryIndex < Struct.new(
  :index_name,
  :provisioned_throughput_override)
  include Aws::Structure
end