pub struct ProvisionedThroughputOverride {
pub read_capacity_units: Option<i64>,
}
Expand description
Replica-specific provisioned throughput settings. If not specified, uses the source table's provisioned throughput settings.
Fields§
§read_capacity_units: Option<i64>
Replica-specific read capacity units. If not specified, uses the source table's read capacity settings.
Trait Implementations§
Source§impl Clone for ProvisionedThroughputOverride
impl Clone for ProvisionedThroughputOverride
Source§fn clone(&self) -> ProvisionedThroughputOverride
fn clone(&self) -> ProvisionedThroughputOverride
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 ProvisionedThroughputOverride
impl Default for ProvisionedThroughputOverride
Source§fn default() -> ProvisionedThroughputOverride
fn default() -> ProvisionedThroughputOverride
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProvisionedThroughputOverride
impl<'de> Deserialize<'de> for ProvisionedThroughputOverride
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 ProvisionedThroughputOverride
impl PartialEq for ProvisionedThroughputOverride
Source§fn eq(&self, other: &ProvisionedThroughputOverride) -> bool
fn eq(&self, other: &ProvisionedThroughputOverride) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ProvisionedThroughputOverride
Auto Trait Implementations§
impl Freeze for ProvisionedThroughputOverride
impl RefUnwindSafe for ProvisionedThroughputOverride
impl Send for ProvisionedThroughputOverride
impl Sync for ProvisionedThroughputOverride
impl Unpin for ProvisionedThroughputOverride
impl UnwindSafe for ProvisionedThroughputOverride
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