Struct rusoto_apigateway::GetModelRequest [] [src]

pub struct GetModelRequest {
    pub flatten: Option<bool>,
    pub model_name: String,
    pub rest_api_id: String,
}

Request to list information about a model in an existing RestApi resource.

Fields

A query parameter of a Boolean value to resolve (true) all external model references and returns a flattened model schema or not (false) The default is false.

The name of the model as an identifier.

The RestApi identifier under which the Model exists.

Trait Implementations

impl Default for GetModelRequest
[src]

[src]

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

impl Debug for GetModelRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetModelRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations