pub struct ListImagesRequest {
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub owner: Option<String>,
}
Fields§
§filters: Option<Vec<Filter>>
The filters.
max_results: Option<i64>
The maximum items to return in a request.
next_token: Option<String>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
owner: Option<String>
The owner defines which images you want to list. By default, this request will only show images owned by your account. You can use this field to specify if you want to view images owned by yourself, by Amazon, or those images that have been shared with you by other customers.
Trait Implementations§
Source§impl Clone for ListImagesRequest
impl Clone for ListImagesRequest
Source§fn clone(&self) -> ListImagesRequest
fn clone(&self) -> ListImagesRequest
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 ListImagesRequest
impl Debug for ListImagesRequest
Source§impl Default for ListImagesRequest
impl Default for ListImagesRequest
Source§fn default() -> ListImagesRequest
fn default() -> ListImagesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListImagesRequest
impl PartialEq for ListImagesRequest
Source§impl Serialize for ListImagesRequest
impl Serialize for ListImagesRequest
impl StructuralPartialEq for ListImagesRequest
Auto Trait Implementations§
impl Freeze for ListImagesRequest
impl RefUnwindSafe for ListImagesRequest
impl Send for ListImagesRequest
impl Sync for ListImagesRequest
impl Unpin for ListImagesRequest
impl UnwindSafe for ListImagesRequest
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