pub struct BillingModeSummary {
pub billing_mode: Option<String>,
pub last_update_to_pay_per_request_date_time: Option<f64>,
}
Expand description
Contains the details for the read/write capacity mode.
Fields§
§billing_mode: Option<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. -
PAYPERREQUEST
- Sets the read/write capacity mode toPAYPERREQUEST
. We recommend usingPAYPERREQUEST
for unpredictable workloads.
last_update_to_pay_per_request_date_time: Option<f64>
Represents the time when PAY_PER_REQUEST
was last set as the read/write capacity mode.
Trait Implementations§
Source§impl Clone for BillingModeSummary
impl Clone for BillingModeSummary
Source§fn clone(&self) -> BillingModeSummary
fn clone(&self) -> BillingModeSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BillingModeSummary
impl Debug for BillingModeSummary
Source§impl Default for BillingModeSummary
impl Default for BillingModeSummary
Source§fn default() -> BillingModeSummary
fn default() -> BillingModeSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillingModeSummary
impl<'de> Deserialize<'de> for BillingModeSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BillingModeSummary
impl PartialEq for BillingModeSummary
impl StructuralPartialEq for BillingModeSummary
Auto Trait Implementations§
impl Freeze for BillingModeSummary
impl RefUnwindSafe for BillingModeSummary
impl Send for BillingModeSummary
impl Sync for BillingModeSummary
impl Unpin for BillingModeSummary
impl UnwindSafe for BillingModeSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more