Struct rusoto_apigateway::UpdateModelRequest [] [src]

pub struct UpdateModelRequest {
    pub model_name: String,
    pub patch_operations: Option<Vec<PatchOperation>>,
    pub rest_api_id: String,
}

Request to update an existing model in an existing RestApi resource.

Fields

The name of the model to update.

A list of update operations to be applied to the specified resource and in the order specified in this list.

The string identifier of the associated RestApi.

Trait Implementations

impl Default for UpdateModelRequest
[src]

[src]

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

impl Debug for UpdateModelRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateModelRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations