pub struct UpdateTableInput {
pub table_name: String,
pub billing_mode: Option<BillingMode>,
pub provisioned_throughput: Option<ProvisionedThroughput>,
pub attribute_definitions: Vec<AttributeDefinition>,
}Expand description
Input for the UpdateTable operation.
Fields§
§table_name: StringThe name of the table to update.
billing_mode: Option<BillingMode>The new billing mode for the table.
provisioned_throughput: Option<ProvisionedThroughput>The new provisioned throughput settings.
attribute_definitions: Vec<AttributeDefinition>New attribute definitions (for GSI changes).
Trait Implementations§
Source§impl Clone for UpdateTableInput
impl Clone for UpdateTableInput
Source§fn clone(&self) -> UpdateTableInput
fn clone(&self) -> UpdateTableInput
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 UpdateTableInput
impl Debug for UpdateTableInput
Source§impl Default for UpdateTableInput
impl Default for UpdateTableInput
Source§fn default() -> UpdateTableInput
fn default() -> UpdateTableInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTableInput
impl<'de> Deserialize<'de> for UpdateTableInput
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 UpdateTableInput
impl RefUnwindSafe for UpdateTableInput
impl Send for UpdateTableInput
impl Sync for UpdateTableInput
impl Unpin for UpdateTableInput
impl UnsafeUnpin for UpdateTableInput
impl UnwindSafe for UpdateTableInput
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