Struct rusoto_ssm::DescribeAssociationRequest[][src]

pub struct DescribeAssociationRequest {
    pub association_id: Option<String>,
    pub association_version: Option<String>,
    pub instance_id: Option<String>,
    pub name: Option<String>,
}

Fields

The association ID for which you want information.

Specify the association version to retrieve. To view the latest version, either specify $LATEST for this parameter, or omit this parameter. To view a list of all associations for an instance, use ListInstanceAssociations. To get a list of versions for a specific association, use ListAssociationVersions.

The instance ID.

The name of the Systems Manager document.

Trait Implementations

impl Default for DescribeAssociationRequest
[src]

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

impl Debug for DescribeAssociationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAssociationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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