Class: Aws::SecurityHub::Types::AwsDynamoDbTableBillingModeSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsDynamoDbTableBillingModeSummary
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsDynamoDbTableBillingModeSummary data as a hash:
{
billing_mode: "NonEmptyString",
last_update_to_pay_per_request_date_time: "NonEmptyString",
}
Provides information about the billing for read/write capacity on the table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#billing_mode ⇒ String
The method used to charge for read and write throughput and to manage capacity.
-
#last_update_to_pay_per_request_date_time ⇒ String
If the billing mode is
PAY_PER_REQUEST
, indicates when the billing mode was set to that value.
Instance Attribute Details
#billing_mode ⇒ String
The method used to charge for read and write throughput and to manage capacity.
2965 2966 2967 2968 2969 2970 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 2965 class AwsDynamoDbTableBillingModeSummary < 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 ⇒ String
If the billing mode is PAY_PER_REQUEST
, indicates when the billing
mode was set to that value.
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
.
2965 2966 2967 2968 2969 2970 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 2965 class AwsDynamoDbTableBillingModeSummary < Struct.new( :billing_mode, :last_update_to_pay_per_request_date_time) SENSITIVE = [] include Aws::Structure end |