[][src]Struct rusoto_imagebuilder::ListImageRecipesRequest

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

impl Clone for ListImageRecipesRequest[src]

impl Debug for ListImageRecipesRequest[src]

impl Default for ListImageRecipesRequest[src]

impl PartialEq<ListImageRecipesRequest> for ListImageRecipesRequest[src]

impl Serialize for ListImageRecipesRequest[src]

impl StructuralPartialEq for ListImageRecipesRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.