pub struct Invalidation {
pub id: String,
pub status: ResourceStatus,
pub create_time: DateTime<Utc>,
pub distribution_id: String,
pub batch: InvalidationBatch,
}Expand description
Invalidation record.
Fields§
§id: StringCloudFront-assigned invalidation ID.
status: ResourceStatusStatus (starts InProgress, becomes Completed).
create_time: DateTime<Utc>Create time.
distribution_id: StringParent distribution ID.
batch: InvalidationBatchInvalidation batch input.
Trait Implementations§
Source§impl Clone for Invalidation
impl Clone for Invalidation
Source§fn clone(&self) -> Invalidation
fn clone(&self) -> Invalidation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Invalidation
impl Debug for Invalidation
Source§impl<'de> Deserialize<'de> for Invalidation
impl<'de> Deserialize<'de> for Invalidation
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 Invalidation
impl RefUnwindSafe for Invalidation
impl Send for Invalidation
impl Sync for Invalidation
impl Unpin for Invalidation
impl UnsafeUnpin for Invalidation
impl UnwindSafe for Invalidation
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