Struct rusoto_apigateway::UpdateDocumentationVersionRequest[][src]

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

Updates an existing documentation version of an API.

Fields

[Required] The version identifier of the to-be-updated documentation version.

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 UpdateDocumentationVersionRequest
[src]

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

impl Debug for UpdateDocumentationVersionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateDocumentationVersionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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