Struct rusoto_ssm::GetDocumentResult[][src]

pub struct GetDocumentResult {
    pub content: Option<String>,
    pub document_format: Option<String>,
    pub document_type: Option<String>,
    pub document_version: Option<String>,
    pub name: Option<String>,
}

Fields

The contents of the Systems Manager document.

The document format, either JSON or YAML.

The document type.

The document version.

The name of the Systems Manager document.

Trait Implementations

impl Default for GetDocumentResult
[src]

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

impl Debug for GetDocumentResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetDocumentResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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