Class: Aws::Record::TableConfig::GlobalSecondaryIndex Private
- Inherits:
-
Object
- Object
- Aws::Record::TableConfig::GlobalSecondaryIndex
- Defined in:
- lib/aws-record/record/table_config.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #provisioned_throughput ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize ⇒ GlobalSecondaryIndex
constructor
private
A new instance of GlobalSecondaryIndex.
- #read_capacity_units(units) ⇒ Object private
- #write_capacity_units(units) ⇒ Object private
Constructor Details
#initialize ⇒ GlobalSecondaryIndex
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of GlobalSecondaryIndex.
633 634 635 |
# File 'lib/aws-record/record/table_config.rb', line 633 def initialize @provisioned_throughput = {} end |
Instance Attribute Details
#provisioned_throughput ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
631 632 633 |
# File 'lib/aws-record/record/table_config.rb', line 631 def provisioned_throughput @provisioned_throughput end |
Instance Method Details
#read_capacity_units(units) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
637 638 639 |
# File 'lib/aws-record/record/table_config.rb', line 637 def read_capacity_units(units) @provisioned_throughput[:read_capacity_units] = units end |
#write_capacity_units(units) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
641 642 643 |
# File 'lib/aws-record/record/table_config.rb', line 641 def write_capacity_units(units) @provisioned_throughput[:write_capacity_units] = units end |