Class: Aws::Keyspaces::Types::WarmThroughputSpecificationSummary

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

Overview

Contains the current warm throughput settings for a table, including the configured capacity units and the current status of the warm throughput configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#read_units_per_secondInteger

The number of read capacity units per second currently configured for warm throughput.

Returns:

  • (Integer)


2439
2440
2441
2442
2443
2444
2445
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 2439

class WarmThroughputSpecificationSummary < Struct.new(
  :read_units_per_second,
  :write_units_per_second,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The current status of the warm throughput configuration. Valid values are AVAILABLE when the configuration is active, and UPDATING when changes are being applied.

Returns:

  • (String)


2439
2440
2441
2442
2443
2444
2445
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 2439

class WarmThroughputSpecificationSummary < Struct.new(
  :read_units_per_second,
  :write_units_per_second,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#write_units_per_secondInteger

The number of write capacity units per second currently configured for warm throughput.

Returns:

  • (Integer)


2439
2440
2441
2442
2443
2444
2445
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 2439

class WarmThroughputSpecificationSummary < Struct.new(
  :read_units_per_second,
  :write_units_per_second,
  :status)
  SENSITIVE = []
  include Aws::Structure
end