Struct rusoto_ssm::UpdateAssociationRequest[][src]

pub struct UpdateAssociationRequest {
    pub association_id: String,
    pub association_name: Option<String>,
    pub association_version: Option<String>,
    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>>,
}

Fields

The ID of the association you want to update.

The name of the association that you want to update.

This parameter is provided for concurrency control purposes. You must specify the latest association version in the service. If you want to ensure that this request succeeds, either specify $LATEST, or omit this parameter.

The document version you want update for the association.

The name of the association document.

An Amazon S3 bucket where you want to store the results of this request.

The parameters you want to update for the association. If you create a parameter using Parameter Store, you can reference the parameter using {{ssm:parameter-name}}

The cron expression used to schedule the association that you want to update.

The targets of the association.

Trait Implementations

impl Default for UpdateAssociationRequest
[src]

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

impl Debug for UpdateAssociationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateAssociationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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