pub struct Capacity {
pub capacity_units: Option<f64>,
pub read_capacity_units: Option<f64>,
pub write_capacity_units: Option<f64>,
}
Expand description
Represents the amount of provisioned throughput capacity consumed on a table or an index.
Fields§
§capacity_units: Option<f64>
The total number of capacity units consumed on a table or an index.
read_capacity_units: Option<f64>
The total number of read capacity units consumed on a table or an index.
write_capacity_units: Option<f64>
The total number of write capacity units consumed on a table or an index.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Capacity
impl<'de> Deserialize<'de> for Capacity
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
impl StructuralPartialEq for Capacity
Auto Trait Implementations§
impl Freeze for Capacity
impl RefUnwindSafe for Capacity
impl Send for Capacity
impl Sync for Capacity
impl Unpin for Capacity
impl UnwindSafe for Capacity
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