Struct rusoto_ssm::Target [] [src]

pub struct Target {
    pub key: Option<String>,
    pub values: Option<Vec<String>>,
}

An array of search criteria that targets instances using a Key,Value combination that you specify. Targets is required if you don't provide one or more instance IDs in the call.

Fields

User-defined criteria for sending commands that target instances that meet the criteria. Key can be tag:<Amazon EC2 tag> or InstanceIds. For more information about how to send commands that target instances using Key,Value parameters, see Executing a Command Using Systems Manager Run Command.

User-defined criteria that maps to Key. For example, if you specified tag:ServerRole, you could specify value:WebServer to execute a command on instances that include Amazon EC2 tags of ServerRole,WebServer. For more information about how to send commands that target instances using Key,Value parameters, see Executing a Command Using Systems Manager Run Command.

Trait Implementations

impl Default for Target
[src]

[src]

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

impl Debug for Target
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Target
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Target

impl Sync for Target