pub struct TableProvisionedThroughputDescription {
pub read_capacity_units: u64,
pub write_capacity_units: u64,
pub number_of_decreases_today: u64,
pub last_increase_date_time: Option<f64>,
pub last_decrease_date_time: Option<f64>,
}Expand description
Provisioned throughput description (with additional metadata fields).
Fields§
§read_capacity_units: u64§write_capacity_units: u64§number_of_decreases_today: u64§last_increase_date_time: Option<f64>§last_decrease_date_time: Option<f64>Trait Implementations§
Source§impl Clone for TableProvisionedThroughputDescription
impl Clone for TableProvisionedThroughputDescription
Source§fn clone(&self) -> TableProvisionedThroughputDescription
fn clone(&self) -> TableProvisionedThroughputDescription
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for TableProvisionedThroughputDescription
impl Default for TableProvisionedThroughputDescription
Source§fn default() -> TableProvisionedThroughputDescription
fn default() -> TableProvisionedThroughputDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TableProvisionedThroughputDescription
impl<'de> Deserialize<'de> for TableProvisionedThroughputDescription
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
Auto Trait Implementations§
impl Freeze for TableProvisionedThroughputDescription
impl RefUnwindSafe for TableProvisionedThroughputDescription
impl Send for TableProvisionedThroughputDescription
impl Sync for TableProvisionedThroughputDescription
impl Unpin for TableProvisionedThroughputDescription
impl UnsafeUnpin for TableProvisionedThroughputDescription
impl UnwindSafe for TableProvisionedThroughputDescription
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