pub struct ListImageRecipesRequest {
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 image recipes you want to list. By default, this request will only show image recipes owned by your account. You can use this field to specify if you want to view image recipes owned by yourself, by Amazon, or those image recipes that have been shared with you by other customers.
Trait Implementations§
Source§impl Clone for ListImageRecipesRequest
impl Clone for ListImageRecipesRequest
Source§fn clone(&self) -> ListImageRecipesRequest
fn clone(&self) -> ListImageRecipesRequest
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 ListImageRecipesRequest
impl Debug for ListImageRecipesRequest
Source§impl Default for ListImageRecipesRequest
impl Default for ListImageRecipesRequest
Source§fn default() -> ListImageRecipesRequest
fn default() -> ListImageRecipesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListImageRecipesRequest
impl PartialEq for ListImageRecipesRequest
Source§impl Serialize for ListImageRecipesRequest
impl Serialize for ListImageRecipesRequest
impl StructuralPartialEq for ListImageRecipesRequest
Auto Trait Implementations§
impl Freeze for ListImageRecipesRequest
impl RefUnwindSafe for ListImageRecipesRequest
impl Send for ListImageRecipesRequest
impl Sync for ListImageRecipesRequest
impl Unpin for ListImageRecipesRequest
impl UnwindSafe for ListImageRecipesRequest
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