Class: Aws::SecurityHub::Types::AwsDynamoDbTableProvisionedThroughput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsDynamoDbTableProvisionedThroughput
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass AwsDynamoDbTableProvisionedThroughput data as a hash:
{
last_decrease_date_time: "NonEmptyString",
last_increase_date_time: "NonEmptyString",
number_of_decreases_today: 1,
read_capacity_units: 1,
write_capacity_units: 1,
}
Information about the provisioned throughput for the table or for a global secondary index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#last_decrease_date_time ⇒ String
Indicates when the provisioned throughput was last decreased.
-
#last_increase_date_time ⇒ String
Indicates when the provisioned throughput was last increased.
-
#number_of_decreases_today ⇒ Integer
The number of times during the current UTC calendar day that the provisioned throughput was decreased.
-
#read_capacity_units ⇒ Integer
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
ThrottlingException
. -
#write_capacity_units ⇒ Integer
The maximum number of writes consumed per second before DynamoDB returns a
ThrottlingException
.
Instance Attribute Details
#last_decrease_date_time ⇒ String
Indicates when the provisioned throughput was last decreased.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
3414 3415 3416 3417 3418 3419 3420 3421 3422 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3414 class AwsDynamoDbTableProvisionedThroughput < Struct.new( :last_decrease_date_time, :last_increase_date_time, :number_of_decreases_today, :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#last_increase_date_time ⇒ String
Indicates when the provisioned throughput was last increased.
Uses the date-time
format specified in RFC 3339 section 5.6,
Internet Date/Time Format. The value cannot contain spaces. For
example, 2020-03-22T13:22:13.933Z
.
3414 3415 3416 3417 3418 3419 3420 3421 3422 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3414 class AwsDynamoDbTableProvisionedThroughput < Struct.new( :last_decrease_date_time, :last_increase_date_time, :number_of_decreases_today, :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#number_of_decreases_today ⇒ Integer
The number of times during the current UTC calendar day that the provisioned throughput was decreased.
3414 3415 3416 3417 3418 3419 3420 3421 3422 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3414 class AwsDynamoDbTableProvisionedThroughput < Struct.new( :last_decrease_date_time, :last_increase_date_time, :number_of_decreases_today, :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#read_capacity_units ⇒ Integer
The maximum number of strongly consistent reads consumed per second
before DynamoDB returns a ThrottlingException
.
3414 3415 3416 3417 3418 3419 3420 3421 3422 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3414 class AwsDynamoDbTableProvisionedThroughput < Struct.new( :last_decrease_date_time, :last_increase_date_time, :number_of_decreases_today, :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#write_capacity_units ⇒ Integer
The maximum number of writes consumed per second before DynamoDB
returns a ThrottlingException
.
3414 3415 3416 3417 3418 3419 3420 3421 3422 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3414 class AwsDynamoDbTableProvisionedThroughput < Struct.new( :last_decrease_date_time, :last_increase_date_time, :number_of_decreases_today, :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |