Class: Aws::DynamoDB::Types::BillingModeSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::BillingModeSummary
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Contains the details for the read/write capacity mode.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#billing_mode ⇒ String
Controls how you are charged for read and write throughput and how you manage capacity.
-
#last_update_to_pay_per_request_date_time ⇒ Time
Represents the time when
PAY_PER_REQUEST
was last set as the read/write capacity mode.
Instance Attribute Details
#billing_mode ⇒ String
Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later.
PROVISIONED
- Sets the read/write capacity mode toPROVISIONED
. We recommend usingPROVISIONED
for predictable workloads.PAY_PER_REQUEST
- Sets the read/write capacity mode toPAY_PER_REQUEST
. We recommend usingPAY_PER_REQUEST
for unpredictable workloads.
1304 1305 1306 1307 1308 1309 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1304 class BillingModeSummary < Struct.new( :billing_mode, :last_update_to_pay_per_request_date_time) SENSITIVE = [] include Aws::Structure end |
#last_update_to_pay_per_request_date_time ⇒ Time
Represents the time when PAY_PER_REQUEST
was last set as the
read/write capacity mode.
1304 1305 1306 1307 1308 1309 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1304 class BillingModeSummary < Struct.new( :billing_mode, :last_update_to_pay_per_request_date_time) SENSITIVE = [] include Aws::Structure end |