Struct rusoto_apigateway::DocumentationVersion[][src]

pub struct DocumentationVersion {
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub version: Option<String>,
}

A snapshot of the documentation of an API.

Publishing API documentation involves creating a documentation version associated with an API stage and exporting the versioned documentation to an external (e.g., Swagger) file.

Fields

The date when the API documentation snapshot is created.

The description of the API documentation snapshot.

The version identifier of the API documentation snapshot.

Trait Implementations

impl Default for DocumentationVersion
[src]

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

impl Debug for DocumentationVersion
[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentationVersion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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