Struct rusoto_ssm::ResolvedTargets[][src]

pub struct ResolvedTargets {
    pub parameter_values: Option<Vec<String>>,
    pub truncated: Option<bool>,
}

Information about targets that resolved during the Automation execution.

Fields

A list of parameter values sent to targets that resolved during the Automation execution.

A boolean value indicating whether the resolved target list is truncated.

Trait Implementations

impl Default for ResolvedTargets
[src]

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

impl Debug for ResolvedTargets
[src]

Formats the value using the given formatter. Read more

impl Clone for ResolvedTargets
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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