pub struct ListCloudFrontOriginAccessIdentitiesRequest {
pub marker: Option<String>,
pub max_items: Option<String>,
}
Expand description
The request to list origin access identities.
Fields§
§marker: Option<String>
Use this when paginating results to indicate where to begin in your list of origin access identities. The results include identities in the list that occur after the marker. To get the next page of results, set the Marker
to the value of the NextMarker
from the current page's response (which is also the ID of the last identity on that page).
max_items: Option<String>
The maximum number of origin access identities you want in the response body.
Trait Implementations§
Source§impl Clone for ListCloudFrontOriginAccessIdentitiesRequest
impl Clone for ListCloudFrontOriginAccessIdentitiesRequest
Source§fn clone(&self) -> ListCloudFrontOriginAccessIdentitiesRequest
fn clone(&self) -> ListCloudFrontOriginAccessIdentitiesRequest
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 Default for ListCloudFrontOriginAccessIdentitiesRequest
impl Default for ListCloudFrontOriginAccessIdentitiesRequest
Source§fn default() -> ListCloudFrontOriginAccessIdentitiesRequest
fn default() -> ListCloudFrontOriginAccessIdentitiesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListCloudFrontOriginAccessIdentitiesRequest
impl PartialEq for ListCloudFrontOriginAccessIdentitiesRequest
Source§fn eq(&self, other: &ListCloudFrontOriginAccessIdentitiesRequest) -> bool
fn eq(&self, other: &ListCloudFrontOriginAccessIdentitiesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListCloudFrontOriginAccessIdentitiesRequest
Auto Trait Implementations§
impl Freeze for ListCloudFrontOriginAccessIdentitiesRequest
impl RefUnwindSafe for ListCloudFrontOriginAccessIdentitiesRequest
impl Send for ListCloudFrontOriginAccessIdentitiesRequest
impl Sync for ListCloudFrontOriginAccessIdentitiesRequest
impl Unpin for ListCloudFrontOriginAccessIdentitiesRequest
impl UnwindSafe for ListCloudFrontOriginAccessIdentitiesRequest
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