[][src]Struct rusoto_imagebuilder::ListComponentsRequest

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

Fields

by_name: Option<bool>

Returns the list of component build versions for the specified semantic version.

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 components you want to list. By default, this request will only show components owned by your account. You can use this field to specify if you want to view components owned by yourself, by Amazon, or those components that have been shared with you by other customers.

Trait Implementations

impl Clone for ListComponentsRequest[src]

impl Debug for ListComponentsRequest[src]

impl Default for ListComponentsRequest[src]

impl PartialEq<ListComponentsRequest> for ListComponentsRequest[src]

impl Serialize for ListComponentsRequest[src]

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