Struct rusoto_apigateway::GetAuthorizersRequest[][src]

pub struct GetAuthorizersRequest {
    pub limit: Option<i64>,
    pub position: Option<String>,
    pub rest_api_id: String,
}

Request to describe an existing Authorizers resource.

Fields

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

The current pagination position in the paged result set.

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Default for GetAuthorizersRequest
[src]

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

impl Debug for GetAuthorizersRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetAuthorizersRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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