[][src]Struct rusoto_imagebuilder::ListImageBuildVersionsRequest

pub struct ListImageBuildVersionsRequest {
    pub filters: Option<Vec<Filter>>,
    pub image_version_arn: String,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

filters: Option<Vec<Filter>>

The filters.

image_version_arn: String

The Amazon Resource Name (ARN) of the image whose build versions you want to retrieve.

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.

Trait Implementations

impl Clone for ListImageBuildVersionsRequest[src]

impl Debug for ListImageBuildVersionsRequest[src]

impl Default for ListImageBuildVersionsRequest[src]

impl PartialEq<ListImageBuildVersionsRequest> for ListImageBuildVersionsRequest[src]

impl Serialize for ListImageBuildVersionsRequest[src]

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