Class: Aws::DynamoDB::Types::GlobalSecondaryIndexWarmThroughputDescription

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#read_units_per_secondInteger

Represents warm throughput read units per second value for a global secondary index.

Returns:

  • (Integer)


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

#statusString

Represents the warm throughput status being created or updated on a global secondary index. The status can only be ‘UPDATING` or `ACTIVE`.

Returns:

  • (String)


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_secondInteger

Represents warm throughput write units per second value for a global secondary index.

Returns:

  • (Integer)


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