#[non_exhaustive]pub struct DescribeJobExecutionInput {
    pub job_id: Option<String>,
    pub thing_name: Option<String>,
    pub execution_number: Option<i64>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job_id: Option<String>The unique identifier you assigned to this job when it was created.
thing_name: Option<String>The name of the thing on which the job execution is running.
execution_number: Option<i64>A string (consisting of the digits "0" through "9" which is used to specify a particular job execution on a particular device.
Implementations§
source§impl DescribeJobExecutionInput
 
impl DescribeJobExecutionInput
sourcepub fn job_id(&self) -> Option<&str>
 
pub fn job_id(&self) -> Option<&str>
The unique identifier you assigned to this job when it was created.
sourcepub fn thing_name(&self) -> Option<&str>
 
pub fn thing_name(&self) -> Option<&str>
The name of the thing on which the job execution is running.
sourcepub fn execution_number(&self) -> Option<i64>
 
pub fn execution_number(&self) -> Option<i64>
A string (consisting of the digits "0" through "9" which is used to specify a particular job execution on a particular device.
source§impl DescribeJobExecutionInput
 
impl DescribeJobExecutionInput
sourcepub fn builder() -> DescribeJobExecutionInputBuilder
 
pub fn builder() -> DescribeJobExecutionInputBuilder
Creates a new builder-style object to manufacture DescribeJobExecutionInput.
Trait Implementations§
source§impl Clone for DescribeJobExecutionInput
 
impl Clone for DescribeJobExecutionInput
source§fn clone(&self) -> DescribeJobExecutionInput
 
fn clone(&self) -> DescribeJobExecutionInput
Returns a copy 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 Debug for DescribeJobExecutionInput
 
impl Debug for DescribeJobExecutionInput
source§impl PartialEq for DescribeJobExecutionInput
 
impl PartialEq for DescribeJobExecutionInput
source§fn eq(&self, other: &DescribeJobExecutionInput) -> bool
 
fn eq(&self, other: &DescribeJobExecutionInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeJobExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeJobExecutionInput
impl Send for DescribeJobExecutionInput
impl Sync for DescribeJobExecutionInput
impl Unpin for DescribeJobExecutionInput
impl UnwindSafe for DescribeJobExecutionInput
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.