#[non_exhaustive]pub struct ListImageRecipesInput { /* private fields */ }Implementations§
source§impl ListImageRecipesInput
 
impl ListImageRecipesInput
sourcepub fn owner(&self) -> Option<&Ownership>
 
pub fn owner(&self) -> Option<&Ownership>
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.
sourcepub fn filters(&self) -> Option<&[Filter]>
 
pub fn filters(&self) -> Option<&[Filter]>
Use the following filters to streamline results:
-  name
-  parentImage
-  platform
sourcepub fn max_results(&self) -> Option<i32>
 
pub fn max_results(&self) -> Option<i32>
The maximum items to return in a request.
sourcepub fn next_token(&self) -> Option<&str>
 
pub fn next_token(&self) -> Option<&str>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
source§impl ListImageRecipesInput
 
impl ListImageRecipesInput
sourcepub fn builder() -> ListImageRecipesInputBuilder
 
pub fn builder() -> ListImageRecipesInputBuilder
Creates a new builder-style object to manufacture ListImageRecipesInput.
source§impl ListImageRecipesInput
 
impl ListImageRecipesInput
sourcepub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<ListImageRecipes, AwsResponseRetryClassifier>, BuildError>
 
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListImageRecipes, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListImageRecipes>
Trait Implementations§
source§impl Clone for ListImageRecipesInput
 
impl Clone for ListImageRecipesInput
source§fn clone(&self) -> ListImageRecipesInput
 
fn clone(&self) -> ListImageRecipesInput
Returns a copy 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 ListImageRecipesInput
 
impl Debug for ListImageRecipesInput
source§impl PartialEq<ListImageRecipesInput> for ListImageRecipesInput
 
impl PartialEq<ListImageRecipesInput> for ListImageRecipesInput
source§fn eq(&self, other: &ListImageRecipesInput) -> bool
 
fn eq(&self, other: &ListImageRecipesInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListImageRecipesInput
Auto Trait Implementations§
impl RefUnwindSafe for ListImageRecipesInput
impl Send for ListImageRecipesInput
impl Sync for ListImageRecipesInput
impl Unpin for ListImageRecipesInput
impl UnwindSafe for ListImageRecipesInput
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