Struct rusoto_apigateway::GetApiKeysRequest[][src]

pub struct GetApiKeysRequest {
    pub customer_id: Option<String>,
    pub include_values: Option<bool>,
    pub limit: Option<i64>,
    pub name_query: Option<String>,
    pub position: Option<String>,
}

A request to get information about the current ApiKeys resource.

Fields

The identifier of a customer in AWS Marketplace or an external system, such as a developer portal.

A boolean flag to specify whether (true) or not (false) the result contains key values.

The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

The name of queried API keys.

The current pagination position in the paged result set.

Trait Implementations

impl Default for GetApiKeysRequest
[src]

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

impl Debug for GetApiKeysRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetApiKeysRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetApiKeysRequest
[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