Class: Aws::Keyspaces::Types::WarmThroughputSpecification

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

Overview

Specifies the warm throughput settings for a table. Pre-warming a table by specifying warm throughput pre-provisions read and write capacity units to help avoid capacity exceeded exceptions and reduce latency when your table starts receiving traffic.

For more information about pre-warming in Amazon Keyspaces, see Pre-warm a table in Amazon Keyspaces in the Amazon Keyspaces Developer Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#read_units_per_secondInteger

The number of read capacity units per second to pre-warm the table for read capacity throughput. The minimum value is 1.

Returns:

  • (Integer)


2410
2411
2412
2413
2414
2415
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 2410

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

#write_units_per_secondInteger

The number of write capacity units per second to pre-warm the table for write capacity throughput. The minimum value is 1.

Returns:

  • (Integer)


2410
2411
2412
2413
2414
2415
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 2410

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