Struct rusoto_servicecatalog::ScanProvisionedProductsInput[][src]

pub struct ScanProvisionedProductsInput {
    pub accept_language: Option<String>,
    pub access_level_filter: Option<AccessLevelFilter>,
    pub page_size: Option<i64>,
    pub page_token: Option<String>,
}

Fields

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

The access level to use to obtain results. The default is User.

The maximum number of items to return with this call.

The page token for the next set of results. To retrieve the first set of results, use null.

Trait Implementations

impl Default for ScanProvisionedProductsInput
[src]

Returns the "default value" for a type. Read more

impl Debug for ScanProvisionedProductsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ScanProvisionedProductsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ScanProvisionedProductsInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations