Class: Aws::DynamoDB::Types::ProvisionedThroughputOverride

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

{
  read_capacity_units: 1,
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#read_capacity_unitsInteger

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

Returns:

  • (Integer)


5039
5040
5041
5042
# File 'lib/aws-sdk-dynamodb/types.rb', line 5039

class ProvisionedThroughputOverride < Struct.new(
  :read_capacity_units)
  include Aws::Structure
end