pub struct AssociateTargetsWithJobRequest {
pub comment: Option<String>,
pub job_id: String,
pub targets: Vec<String>,
}Fields§
§comment: Option<String>An optional comment string describing why the job was associated with the targets.
job_id: StringThe unique identifier you assigned to this job when it was created.
targets: Vec<String>A list of thing group ARNs that define the targets of the job.
Trait Implementations§
Source§impl Clone for AssociateTargetsWithJobRequest
impl Clone for AssociateTargetsWithJobRequest
Source§fn clone(&self) -> AssociateTargetsWithJobRequest
fn clone(&self) -> AssociateTargetsWithJobRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AssociateTargetsWithJobRequest
impl Default for AssociateTargetsWithJobRequest
Source§fn default() -> AssociateTargetsWithJobRequest
fn default() -> AssociateTargetsWithJobRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssociateTargetsWithJobRequest
impl PartialEq for AssociateTargetsWithJobRequest
Source§fn eq(&self, other: &AssociateTargetsWithJobRequest) -> bool
fn eq(&self, other: &AssociateTargetsWithJobRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AssociateTargetsWithJobRequest
Auto Trait Implementations§
impl Freeze for AssociateTargetsWithJobRequest
impl RefUnwindSafe for AssociateTargetsWithJobRequest
impl Send for AssociateTargetsWithJobRequest
impl Sync for AssociateTargetsWithJobRequest
impl Unpin for AssociateTargetsWithJobRequest
impl UnwindSafe for AssociateTargetsWithJobRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more