pub struct ListInvalidationsRequest {
pub distribution_id: String,
pub marker: Option<String>,
pub max_items: Option<String>,
}
Expand description
The request to list invalidations.
Fields§
§distribution_id: String
The distribution's ID.
marker: Option<String>
Use this parameter when paginating results to indicate where to begin in your list of invalidation batches. Because the results are returned in decreasing order from most recent to oldest, the most recent results are on the first page, the second page will contain earlier results, and so on. To get the next page of results, set Marker
to the value of the NextMarker
from the current page's response. This value is the same as the ID of the last invalidation batch on that page.
max_items: Option<String>
The maximum number of invalidation batches that you want in the response body.
Trait Implementations§
Source§impl Clone for ListInvalidationsRequest
impl Clone for ListInvalidationsRequest
Source§fn clone(&self) -> ListInvalidationsRequest
fn clone(&self) -> ListInvalidationsRequest
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 ListInvalidationsRequest
impl Debug for ListInvalidationsRequest
Source§impl Default for ListInvalidationsRequest
impl Default for ListInvalidationsRequest
Source§fn default() -> ListInvalidationsRequest
fn default() -> ListInvalidationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListInvalidationsRequest
impl PartialEq for ListInvalidationsRequest
impl StructuralPartialEq for ListInvalidationsRequest
Auto Trait Implementations§
impl Freeze for ListInvalidationsRequest
impl RefUnwindSafe for ListInvalidationsRequest
impl Send for ListInvalidationsRequest
impl Sync for ListInvalidationsRequest
impl Unpin for ListInvalidationsRequest
impl UnwindSafe for ListInvalidationsRequest
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