[][src]Struct rusoto_marketplace_catalog::ListEntitiesRequest

pub struct ListEntitiesRequest {
    pub catalog: String,
    pub entity_type: String,
    pub filter_list: Option<Vec<Filter>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub sort: Option<Sort>,
}

Fields

catalog: String

The catalog related to the request. Fixed value: AWSMarketplace

entity_type: String

The type of entities to retrieve.

filter_list: Option<Vec<Filter>>

An array of filter objects. Each filter object contains two attributes, filterName and filterValues.

max_results: Option<i64>

Specifies the upper limit of the elements on a single page. If a value isn't provided, the default value is 20.

next_token: Option<String>

The value of the next token, if it exists. Null if there are no more results.

sort: Option<Sort>

An object that contains two attributes, SortBy and SortOrder.

Trait Implementations

impl Clone for ListEntitiesRequest[src]

impl Debug for ListEntitiesRequest[src]

impl Default for ListEntitiesRequest[src]

impl PartialEq<ListEntitiesRequest> for ListEntitiesRequest[src]

impl Serialize for ListEntitiesRequest[src]

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