[][src]Struct rusoto_apigateway::UpdateDocumentationPartRequest

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

Updates an existing documentation part of a given API.

Fields

documentation_part_id: String

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

patch_operations: Option<Vec<PatchOperation>>

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

rest_api_id: String

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Clone for UpdateDocumentationPartRequest[src]

impl Debug for UpdateDocumentationPartRequest[src]

impl Default for UpdateDocumentationPartRequest[src]

impl PartialEq<UpdateDocumentationPartRequest> for UpdateDocumentationPartRequest[src]

impl Serialize for UpdateDocumentationPartRequest[src]

impl StructuralPartialEq for UpdateDocumentationPartRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.