pub struct CreateInvalidationRequest {
pub distribution_id: String,
pub invalidation_batch: InvalidationBatch,
}
Expand description
The request to create an invalidation.
Fields§
§distribution_id: String
The distribution's id.
invalidation_batch: InvalidationBatch
The batch information for the invalidation.
Trait Implementations§
Source§impl Clone for CreateInvalidationRequest
impl Clone for CreateInvalidationRequest
Source§fn clone(&self) -> CreateInvalidationRequest
fn clone(&self) -> CreateInvalidationRequest
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 CreateInvalidationRequest
impl Debug for CreateInvalidationRequest
Source§impl Default for CreateInvalidationRequest
impl Default for CreateInvalidationRequest
Source§fn default() -> CreateInvalidationRequest
fn default() -> CreateInvalidationRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateInvalidationRequest
Auto Trait Implementations§
impl Freeze for CreateInvalidationRequest
impl RefUnwindSafe for CreateInvalidationRequest
impl Send for CreateInvalidationRequest
impl Sync for CreateInvalidationRequest
impl Unpin for CreateInvalidationRequest
impl UnwindSafe for CreateInvalidationRequest
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