Struct rusoto_ssm::DocumentDescription [] [src]

pub struct DocumentDescription {
    pub created_date: Option<f64>,
    pub default_version: Option<String>,
    pub description: Option<String>,
    pub document_type: Option<String>,
    pub document_version: Option<String>,
    pub hash: Option<String>,
    pub hash_type: Option<String>,
    pub latest_version: Option<String>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub parameters: Option<Vec<DocumentParameter>>,
    pub platform_types: Option<Vec<String>>,
    pub schema_version: Option<String>,
    pub sha_1: Option<String>,
    pub status: Option<String>,
}

Describes an SSM document.

Fields

The date when the document was created.

The default version.

A description of the document.

The type of document.

The document version.

The Sha256 or Sha1 hash created by the system when the document was created.

Sha1 hashes have been deprecated.

Sha256 or Sha1.

Sha1 hashes have been deprecated.

The latest version of the document.

The name of the SSM document.

The AWS user account of the person who created the document.

A description of the parameters for a document.

The list of OS platforms compatible with this SSM document.

The schema version.

The SHA1 hash of the document, which you can use for verification purposes.

The status of the SSM document.

Trait Implementations

impl Default for DocumentDescription
[src]

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

impl Debug for DocumentDescription
[src]

Formats the value using the given formatter.

impl Clone for DocumentDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more