Struct aws_sdk_ssm::model::Association[][src]

#[non_exhaustive]
pub struct Association { pub name: Option<String>, pub instance_id: Option<String>, pub association_id: Option<String>, pub association_version: Option<String>, pub document_version: Option<String>, pub targets: Option<Vec<Target>>, pub last_execution_date: Option<Instant>, pub overview: Option<AssociationOverview>, pub schedule_expression: Option<String>, pub association_name: Option<String>, }
Expand description

Describes an association of a Amazon Web Services Systems Manager document (SSM document) and an instance.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
name: Option<String>

The name of the SSM document.

instance_id: Option<String>

The instance ID.

association_id: Option<String>

The ID created by the system when you create an association. An association is a binding between a document and a set of targets with a schedule.

association_version: Option<String>

The association version.

document_version: Option<String>

The version of the document used in the association.

targets: Option<Vec<Target>>

The instances targeted by the request to create an association. You can target all instances in an Amazon Web Services account by specifying the InstanceIds key with a value of *.

last_execution_date: Option<Instant>

The date on which the association was last run.

overview: Option<AssociationOverview>

Information about the association.

schedule_expression: Option<String>

A cron expression that specifies a schedule when the association runs. The schedule runs in Coordinated Universal Time (UTC).

association_name: Option<String>

The association name.

Implementations

The name of the SSM document.

The instance ID.

The ID created by the system when you create an association. An association is a binding between a document and a set of targets with a schedule.

The association version.

The version of the document used in the association.

The instances targeted by the request to create an association. You can target all instances in an Amazon Web Services account by specifying the InstanceIds key with a value of *.

The date on which the association was last run.

Information about the association.

A cron expression that specifies a schedule when the association runs. The schedule runs in Coordinated Universal Time (UTC).

The association name.

Creates a new builder-style object to manufacture Association

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more