[][src]Struct rusoto_iot_jobs_data::IotJobsDataClient

pub struct IotJobsDataClient { /* fields omitted */ }

A client for the AWS IoT Jobs Data Plane API.

Implementations

impl IotJobsDataClient[src]

pub fn new(region: Region) -> IotJobsDataClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> IotJobsDataClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> IotJobsDataClient[src]

Trait Implementations

impl Clone for IotJobsDataClient[src]

impl IotJobsData for IotJobsDataClient[src]

pub fn describe_job_execution<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeJobExecutionRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeJobExecutionResponse, RusotoError<DescribeJobExecutionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets details of a job execution.

pub fn get_pending_job_executions<'life0, 'async_trait>(
    &'life0 self,
    input: GetPendingJobExecutionsRequest
) -> Pin<Box<dyn Future<Output = Result<GetPendingJobExecutionsResponse, RusotoError<GetPendingJobExecutionsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets the list of all jobs for a thing that are not in a terminal status.

pub fn start_next_pending_job_execution<'life0, 'async_trait>(
    &'life0 self,
    input: StartNextPendingJobExecutionRequest
) -> Pin<Box<dyn Future<Output = Result<StartNextPendingJobExecutionResponse, RusotoError<StartNextPendingJobExecutionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets and starts the next pending (status IN_PROGRESS or QUEUED) job execution for a thing.

pub fn update_job_execution<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateJobExecutionRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateJobExecutionResponse, RusotoError<UpdateJobExecutionError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the status of a job execution.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.