Struct rusoto_ssm::AssociationVersionInfo[][src]

pub struct AssociationVersionInfo {
    pub association_id: Option<String>,
    pub association_name: Option<String>,
    pub association_version: Option<String>,
    pub created_date: Option<f64>,
    pub document_version: Option<String>,
    pub name: Option<String>,
    pub output_location: Option<InstanceAssociationOutputLocation>,
    pub parameters: Option<HashMap<String, Vec<String>>>,
    pub schedule_expression: Option<String>,
    pub targets: Option<Vec<Target>>,
}

Information about the association version.

Fields

The ID created by the system when the association was created.

The name specified for the association version when the association version was created.

The association version.

The date the association version was created.

The version of a Systems Manager document used when the association version was created.

The name specified when the association was created.

The location in Amazon S3 specified for the association when the association version was created.

Parameters specified when the association version was created.

The cron or rate schedule specified for the association when the association version was created.

The targets specified for the association when the association version was created.

Trait Implementations

impl Default for AssociationVersionInfo
[src]

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

impl Debug for AssociationVersionInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for AssociationVersionInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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