class Amazonite::DynamoDB::BillingModeSummary

Overview

Contains the details for the read/write capacity mode. This page talks about PROVISIONED and PAY_PER_REQUEST billing modes. For more information about these modes, see Read/write capacity mode.

You may need to switch to on-demand mode at least once in order to return a BillingModeSummary response.

Included Modules

Defined in:

dynamodb/billing_mode_summary.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(billing_mode : BillingMode | Nil = nil, last_update_to_pay_per_request_date_time : Time | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def billing_mode : BillingMode | Nil #

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 to PROVISIONED. We recommend using PROVISIONED for predictable workloads.

  • PAY_PER_REQUEST - Sets the read/write capacity mode to PAY_PER_REQUEST. We recommend using PAY_PER_REQUEST for unpredictable workloads.


[View source]
def billing_mode=(billing_mode : BillingMode | Nil) #

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 to PROVISIONED. We recommend using PROVISIONED for predictable workloads.

  • PAY_PER_REQUEST - Sets the read/write capacity mode to PAY_PER_REQUEST. We recommend using PAY_PER_REQUEST for unpredictable workloads.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def last_update_to_pay_per_request_date_time : Time | Nil #

Represents the time when PAY_PER_REQUEST was last set as the read/write capacity mode.


[View source]
def last_update_to_pay_per_request_date_time=(last_update_to_pay_per_request_date_time : Time | Nil) #

Represents the time when PAY_PER_REQUEST was last set as the read/write capacity mode.


[View source]
def validate! : Nil #

[View source]