pub struct TimeToLiveDescription {
pub attribute_name: Option<String>,
pub time_to_live_status: Option<String>,
}Expand description
Time-to-Live description with status information.
Fields§
§attribute_name: Option<String>The name of the TTL attribute.
time_to_live_status: Option<String>The TTL status: ENABLED, DISABLED, ENABLING, or DISABLING.
Trait Implementations§
Source§impl Clone for TimeToLiveDescription
impl Clone for TimeToLiveDescription
Source§fn clone(&self) -> TimeToLiveDescription
fn clone(&self) -> TimeToLiveDescription
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 TimeToLiveDescription
impl Debug for TimeToLiveDescription
Source§impl<'de> Deserialize<'de> for TimeToLiveDescription
impl<'de> Deserialize<'de> for TimeToLiveDescription
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 TimeToLiveDescription
impl RefUnwindSafe for TimeToLiveDescription
impl Send for TimeToLiveDescription
impl Sync for TimeToLiveDescription
impl Unpin for TimeToLiveDescription
impl UnsafeUnpin for TimeToLiveDescription
impl UnwindSafe for TimeToLiveDescription
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