[][src]Struct rusoto_imagebuilder::ListImagesRequest

pub struct ListImagesRequest {
    pub by_name: Option<bool>,
    pub filters: Option<Vec<Filter>>,
    pub include_deprecated: Option<bool>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub owner: Option<String>,
}

Fields

by_name: Option<bool>

Requests a list of images with a specific recipe name.

filters: Option<Vec<Filter>>

The filters.

include_deprecated: Option<bool>

Includes deprecated images in the response list.

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

impl Clone for ListImagesRequest[src]

impl Debug for ListImagesRequest[src]

impl Default for ListImagesRequest[src]

impl PartialEq<ListImagesRequest> for ListImagesRequest[src]

impl Serialize for ListImagesRequest[src]

impl StructuralPartialEq for ListImagesRequest[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> Instrument 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> 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.