[][src]Struct rusoto_ssm::UpdateAssociationRequest

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 Clone for UpdateAssociationRequest
[src]

Performs copy-assignment from source. Read more

impl Default for UpdateAssociationRequest
[src]

impl PartialEq<UpdateAssociationRequest> for UpdateAssociationRequest
[src]

impl Debug for UpdateAssociationRequest
[src]

impl Serialize for UpdateAssociationRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T