libZSservicesZSamazonka-iot-jobs-dataplaneZSamazonka-iot-jobs-dataplane
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.IoTJobsData.GetPendingJobExecutions

Description

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

Synopsis

Creating a Request

data GetPendingJobExecutions Source #

See: newGetPendingJobExecutions smart constructor.

Constructors

GetPendingJobExecutions' 

Fields

  • thingName :: Text

    The name of the thing that is executing the job.

Instances

Instances details
Eq GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Read GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Show GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Generic GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Associated Types

type Rep GetPendingJobExecutions :: Type -> Type #

NFData GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Methods

rnf :: GetPendingJobExecutions -> () #

Hashable GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

AWSRequest GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

ToHeaders GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

ToPath GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

ToQuery GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

type Rep GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

type Rep GetPendingJobExecutions = D1 ('MetaData "GetPendingJobExecutions" "Amazonka.IoTJobsData.GetPendingJobExecutions" "libZSservicesZSamazonka-iot-jobs-dataplaneZSamazonka-iot-jobs-dataplane" 'False) (C1 ('MetaCons "GetPendingJobExecutions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "thingName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetPendingJobExecutions Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

newGetPendingJobExecutions Source #

Create a value of GetPendingJobExecutions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:thingName:GetPendingJobExecutions', getPendingJobExecutions_thingName - The name of the thing that is executing the job.

Request Lenses

getPendingJobExecutions_thingName :: Lens' GetPendingJobExecutions Text Source #

The name of the thing that is executing the job.

Destructuring the Response

data GetPendingJobExecutionsResponse Source #

See: newGetPendingJobExecutionsResponse smart constructor.

Constructors

GetPendingJobExecutionsResponse' 

Fields

Instances

Instances details
Eq GetPendingJobExecutionsResponse Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Read GetPendingJobExecutionsResponse Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Show GetPendingJobExecutionsResponse Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Generic GetPendingJobExecutionsResponse Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

Associated Types

type Rep GetPendingJobExecutionsResponse :: Type -> Type #

NFData GetPendingJobExecutionsResponse Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

type Rep GetPendingJobExecutionsResponse Source # 
Instance details

Defined in Amazonka.IoTJobsData.GetPendingJobExecutions

type Rep GetPendingJobExecutionsResponse = D1 ('MetaData "GetPendingJobExecutionsResponse" "Amazonka.IoTJobsData.GetPendingJobExecutions" "libZSservicesZSamazonka-iot-jobs-dataplaneZSamazonka-iot-jobs-dataplane" 'False) (C1 ('MetaCons "GetPendingJobExecutionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "inProgressJobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [JobExecutionSummary])) :*: (S1 ('MetaSel ('Just "queuedJobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [JobExecutionSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newGetPendingJobExecutionsResponse Source #

Create a value of GetPendingJobExecutionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:inProgressJobs:GetPendingJobExecutionsResponse', getPendingJobExecutionsResponse_inProgressJobs - A list of JobExecutionSummary objects with status IN_PROGRESS.

$sel:queuedJobs:GetPendingJobExecutionsResponse', getPendingJobExecutionsResponse_queuedJobs - A list of JobExecutionSummary objects with status QUEUED.

$sel:httpStatus:GetPendingJobExecutionsResponse', getPendingJobExecutionsResponse_httpStatus - The response's http status code.

Response Lenses