Struct rusoto_ssm::CreateAssociationRequest[][src]

pub struct CreateAssociationRequest {
    pub association_name: Option<String>,
    pub document_version: Option<String>,
    pub instance_id: Option<String>,
    pub name: String,
    pub output_location: Option<InstanceAssociationOutputLocation>,
    pub parameters: Option<HashMap<String, Vec<String>>>,
    pub schedule_expression: Option<String>,
    pub targets: Option<Vec<Target>>,
}

Fields

Specify a descriptive name for the association.

The document version you want to associate with the target(s). Can be a specific version or the default version.

The instance ID.

The name of the Systems Manager document.

An Amazon S3 bucket where you want to store the output details of the request.

The parameters for the documents runtime configuration.

A cron expression when the association will be applied to the target(s).

The targets (either instances or tags) for the association.

Trait Implementations

impl Default for CreateAssociationRequest
[src]

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

impl Debug for CreateAssociationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateAssociationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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