Struct rusoto_ssm::DocumentVersionInfo[][src]

pub struct DocumentVersionInfo {
    pub created_date: Option<f64>,
    pub document_format: Option<String>,
    pub document_version: Option<String>,
    pub is_default_version: Option<bool>,
    pub name: Option<String>,
}

Version information about the document.

Fields

The date the document was created.

The document format, either JSON or YAML.

The document version.

An identifier for the default version of the document.

The document name.

Trait Implementations

impl Default for DocumentVersionInfo
[src]

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

impl Debug for DocumentVersionInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentVersionInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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