pub struct ProvisionedThroughputDescription {
pub read_capacity_units: i64,
pub write_capacity_units: i64,
pub number_of_decreases_today: Option<i64>,
pub last_increase_date_time: Option<f64>,
pub last_decrease_date_time: Option<f64>,
}Expand description
Provisioned throughput description (output) including timestamps.
Returned in DescribeTable responses with additional metadata about
when capacity was last changed.
Fields§
§read_capacity_units: i64The number of read capacity units provisioned.
write_capacity_units: i64The number of write capacity units provisioned.
number_of_decreases_today: Option<i64>The number of provisioned throughput decreases for this day.
last_increase_date_time: Option<f64>The date and time (epoch seconds) of the last provisioned throughput increase.
last_decrease_date_time: Option<f64>The date and time (epoch seconds) of the last provisioned throughput decrease.
Trait Implementations§
Source§impl Clone for ProvisionedThroughputDescription
impl Clone for ProvisionedThroughputDescription
Source§fn clone(&self) -> ProvisionedThroughputDescription
fn clone(&self) -> ProvisionedThroughputDescription
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 Default for ProvisionedThroughputDescription
impl Default for ProvisionedThroughputDescription
Source§fn default() -> ProvisionedThroughputDescription
fn default() -> ProvisionedThroughputDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProvisionedThroughputDescription
impl<'de> Deserialize<'de> for ProvisionedThroughputDescription
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 ProvisionedThroughputDescription
impl RefUnwindSafe for ProvisionedThroughputDescription
impl Send for ProvisionedThroughputDescription
impl Sync for ProvisionedThroughputDescription
impl Unpin for ProvisionedThroughputDescription
impl UnsafeUnpin for ProvisionedThroughputDescription
impl UnwindSafe for ProvisionedThroughputDescription
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