Class: Aws::DynamoDB::Types::GlobalSecondaryIndexWarmThroughputDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::GlobalSecondaryIndexWarmThroughputDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
The description of the warm throughput value on a global secondary index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_units_per_second ⇒ Integer
Represents warm throughput read units per second value for a global secondary index.
-
#status ⇒ String
Represents the warm throughput status being created or updated on a global secondary index.
-
#write_units_per_second ⇒ Integer
Represents warm throughput write units per second value for a global secondary index.
Instance Attribute Details
#read_units_per_second ⇒ Integer
Represents warm throughput read units per second value for a global secondary index.
4420 4421 4422 4423 4424 4425 4426 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4420 class GlobalSecondaryIndexWarmThroughputDescription < Struct.new( :read_units_per_second, :write_units_per_second, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Represents the warm throughput status being created or updated on a global secondary index. The status can only be ‘UPDATING` or `ACTIVE`.
4420 4421 4422 4423 4424 4425 4426 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4420 class GlobalSecondaryIndexWarmThroughputDescription < Struct.new( :read_units_per_second, :write_units_per_second, :status) SENSITIVE = [] include Aws::Structure end |
#write_units_per_second ⇒ Integer
Represents warm throughput write units per second value for a global secondary index.
4420 4421 4422 4423 4424 4425 4426 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 4420 class GlobalSecondaryIndexWarmThroughputDescription < Struct.new( :read_units_per_second, :write_units_per_second, :status) SENSITIVE = [] include Aws::Structure end |