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

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

Overview

Represents the properties of a replica global secondary index.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index.

Returns:

  • (String)


7194
7195
7196
7197
7198
7199
7200
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7194

class ReplicaGlobalSecondaryIndex < Struct.new(
  :index_name,
  :provisioned_throughput_override,
  :on_demand_throughput_override)
  SENSITIVE = []
  include Aws::Structure
end

#on_demand_throughput_overrideTypes::OnDemandThroughputOverride

Overrides the maximum on-demand throughput settings for the specified global secondary index in the specified replica table.



7194
7195
7196
7197
7198
7199
7200
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7194

class ReplicaGlobalSecondaryIndex < Struct.new(
  :index_name,
  :provisioned_throughput_override,
  :on_demand_throughput_override)
  SENSITIVE = []
  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.



7194
7195
7196
7197
7198
7199
7200
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7194

class ReplicaGlobalSecondaryIndex < Struct.new(
  :index_name,
  :provisioned_throughput_override,
  :on_demand_throughput_override)
  SENSITIVE = []
  include Aws::Structure
end