pub struct UpdateTimeToLiveInput {
pub table_name: String,
pub time_to_live_specification: TimeToLiveSpecification,
}
Expand description
Represents the input of an UpdateTimeToLive
operation.
Fields§
§table_name: String
The name of the table to be configured.
time_to_live_specification: TimeToLiveSpecification
Represents the settings used to enable or disable Time to Live for the specified table.
Trait Implementations§
Source§impl Clone for UpdateTimeToLiveInput
impl Clone for UpdateTimeToLiveInput
Source§fn clone(&self) -> UpdateTimeToLiveInput
fn clone(&self) -> UpdateTimeToLiveInput
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 UpdateTimeToLiveInput
impl Debug for UpdateTimeToLiveInput
Source§impl Default for UpdateTimeToLiveInput
impl Default for UpdateTimeToLiveInput
Source§fn default() -> UpdateTimeToLiveInput
fn default() -> UpdateTimeToLiveInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateTimeToLiveInput
impl PartialEq for UpdateTimeToLiveInput
Source§impl Serialize for UpdateTimeToLiveInput
impl Serialize for UpdateTimeToLiveInput
impl StructuralPartialEq for UpdateTimeToLiveInput
Auto Trait Implementations§
impl Freeze for UpdateTimeToLiveInput
impl RefUnwindSafe for UpdateTimeToLiveInput
impl Send for UpdateTimeToLiveInput
impl Sync for UpdateTimeToLiveInput
impl Unpin for UpdateTimeToLiveInput
impl UnwindSafe for UpdateTimeToLiveInput
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