Struct rusoto_apigateway::UpdateRestApiRequest[][src]

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

Request to update an existing RestApi resource in your collection.

Fields

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

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Default for UpdateRestApiRequest
[src]

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

impl Debug for UpdateRestApiRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateRestApiRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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