Struct rusoto_apigateway::CreateDocumentationPartRequest[][src]

pub struct CreateDocumentationPartRequest {
    pub location: DocumentationPartLocation,
    pub properties: String,
    pub rest_api_id: String,
}

Creates a new documentation part of a given API.

Fields

[Required] The location of the targeted API entity of the to-be-created documentation part.

[Required] The new documentation content map of the targeted API entity. Enclosed key-value pairs are API-specific, but only Swagger-compliant key-value pairs can be exported and, hence, published.

[Required] The string identifier of the associated RestApi.

Trait Implementations

impl Default for CreateDocumentationPartRequest
[src]

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

impl Debug for CreateDocumentationPartRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDocumentationPartRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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