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]

[src]

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

impl Debug for AssociateTargetsWithJobRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AssociateTargetsWithJobRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations