Struct rusoto_iot::AssociateTargetsWithJobRequest[][src]

pub struct AssociateTargetsWithJobRequest {
    pub comment: Option<String>,
    pub job_id: String,
    pub targets: Vec<String>,
}

Fields

An optional comment string describing why the job was associated with the targets.

The unique identifier you assigned to this job when it was created.

A list of thing group ARNs that define the targets of the job.

Trait Implementations

impl Default for AssociateTargetsWithJobRequest
[src]

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

impl Debug for AssociateTargetsWithJobRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AssociateTargetsWithJobRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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