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.

[Required] The name of the model as an identifier.

[Required] The RestApi identifier under which the Model exists.

Trait Implementations

impl Default for GetModelRequest
[src]

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

impl Debug for GetModelRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetModelRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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