Struct rusoto_ssm::DocumentDescription [] [src]

pub struct DocumentDescription {
    pub created_date: Option<f64>,
    pub default_version: Option<String>,
    pub description: Option<String>,
    pub document_format: 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>,
    pub tags: Option<Vec<Tag>>,
    pub target_type: Option<String>,
}

Describes a Systems Manager document.

Fields

The date when the document was created.

The default version.

A description of the document.

The document format, either JSON or YAML.

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 Systems Manager document.

The AWS user account that created the document.

A description of the parameters for a document.

The list of OS platforms compatible with this Systems Manager document.

The schema version.

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

The status of the Systems Manager document.

The tags, or metadata, that have been applied to the document.

The target type which defines the kinds of resources the document can run on. For example, /AWS::EC2::Instance. For a list of valid resource types, see AWS Resource Types Reference in the AWS CloudFormation User Guide.

Trait Implementations

impl Default for DocumentDescription
[src]

[src]

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

impl Debug for DocumentDescription
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentDescription
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations