Struct rusoto_ssm::InstanceAssociation[][src]

pub struct InstanceAssociation {
    pub association_id: Option<String>,
    pub association_version: Option<String>,
    pub content: Option<String>,
    pub instance_id: Option<String>,
}

One or more association documents on the instance.

Fields

The association ID.

Version information for the association on the instance.

The content of the association document for the instance(s).

The instance ID.

Trait Implementations

impl Default for InstanceAssociation
[src]

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

impl Debug for InstanceAssociation
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceAssociation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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