pub struct UpdateTimeToLiveInput {
pub table_name: String,
pub time_to_live_specification: TimeToLiveSpecification,
}Expand description
Input for the UpdateTimeToLive operation.
Fields§
§table_name: StringThe name of the table.
time_to_live_specification: TimeToLiveSpecificationThe TTL specification to apply.
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<'de> Deserialize<'de> for UpdateTimeToLiveInput
impl<'de> Deserialize<'de> for UpdateTimeToLiveInput
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 UpdateTimeToLiveInput
impl RefUnwindSafe for UpdateTimeToLiveInput
impl Send for UpdateTimeToLiveInput
impl Sync for UpdateTimeToLiveInput
impl Unpin for UpdateTimeToLiveInput
impl UnsafeUnpin 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