amazonka-iot-1.6.0: Amazon IoT SDK.

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

Network.AWS.IoT.ListJobExecutionsForJob

Contents

Description

Lists the job executions for a job.

Synopsis

Creating a Request

listJobExecutionsForJob Source #

Creates a value of ListJobExecutionsForJob with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • ljefjStatus - The status of the job.
  • ljefjNextToken - The token to retrieve the next set of results.
  • ljefjMaxResults - The maximum number of results to be returned per request.
  • ljefjJobId - The unique identifier you assigned to this job when it was created.

data ListJobExecutionsForJob Source #

See: listJobExecutionsForJob smart constructor.

Instances

Eq ListJobExecutionsForJob Source # 
Data ListJobExecutionsForJob Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListJobExecutionsForJob -> c ListJobExecutionsForJob #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListJobExecutionsForJob #

toConstr :: ListJobExecutionsForJob -> Constr #

dataTypeOf :: ListJobExecutionsForJob -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListJobExecutionsForJob) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListJobExecutionsForJob) #

gmapT :: (forall b. Data b => b -> b) -> ListJobExecutionsForJob -> ListJobExecutionsForJob #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListJobExecutionsForJob -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListJobExecutionsForJob -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListJobExecutionsForJob -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListJobExecutionsForJob -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListJobExecutionsForJob -> m ListJobExecutionsForJob #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobExecutionsForJob -> m ListJobExecutionsForJob #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobExecutionsForJob -> m ListJobExecutionsForJob #

Read ListJobExecutionsForJob Source # 
Show ListJobExecutionsForJob Source # 
Generic ListJobExecutionsForJob Source # 
Hashable ListJobExecutionsForJob Source # 
NFData ListJobExecutionsForJob Source # 

Methods

rnf :: ListJobExecutionsForJob -> () #

AWSRequest ListJobExecutionsForJob Source # 
ToHeaders ListJobExecutionsForJob Source # 
ToPath ListJobExecutionsForJob Source # 
ToQuery ListJobExecutionsForJob Source # 
type Rep ListJobExecutionsForJob Source # 
type Rep ListJobExecutionsForJob = D1 * (MetaData "ListJobExecutionsForJob" "Network.AWS.IoT.ListJobExecutionsForJob" "amazonka-iot-1.6.0-GZYdsKS1TEjHFZo6BqaYJk" False) (C1 * (MetaCons "ListJobExecutionsForJob'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_ljefjStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe JobExecutionStatus))) (S1 * (MetaSel (Just Symbol "_ljefjNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_ljefjMaxResults") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Nat))) (S1 * (MetaSel (Just Symbol "_ljefjJobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)))))
type Rs ListJobExecutionsForJob Source # 

Request Lenses

ljefjNextToken :: Lens' ListJobExecutionsForJob (Maybe Text) Source #

The token to retrieve the next set of results.

ljefjMaxResults :: Lens' ListJobExecutionsForJob (Maybe Natural) Source #

The maximum number of results to be returned per request.

ljefjJobId :: Lens' ListJobExecutionsForJob Text Source #

The unique identifier you assigned to this job when it was created.

Destructuring the Response

listJobExecutionsForJobResponse Source #

Creates a value of ListJobExecutionsForJobResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data ListJobExecutionsForJobResponse Source #

See: listJobExecutionsForJobResponse smart constructor.

Instances

Eq ListJobExecutionsForJobResponse Source # 
Data ListJobExecutionsForJobResponse Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ListJobExecutionsForJobResponse -> c ListJobExecutionsForJobResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ListJobExecutionsForJobResponse #

toConstr :: ListJobExecutionsForJobResponse -> Constr #

dataTypeOf :: ListJobExecutionsForJobResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ListJobExecutionsForJobResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ListJobExecutionsForJobResponse) #

gmapT :: (forall b. Data b => b -> b) -> ListJobExecutionsForJobResponse -> ListJobExecutionsForJobResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ListJobExecutionsForJobResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ListJobExecutionsForJobResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ListJobExecutionsForJobResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ListJobExecutionsForJobResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ListJobExecutionsForJobResponse -> m ListJobExecutionsForJobResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobExecutionsForJobResponse -> m ListJobExecutionsForJobResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ListJobExecutionsForJobResponse -> m ListJobExecutionsForJobResponse #

Read ListJobExecutionsForJobResponse Source # 
Show ListJobExecutionsForJobResponse Source # 
Generic ListJobExecutionsForJobResponse Source # 
NFData ListJobExecutionsForJobResponse Source # 
type Rep ListJobExecutionsForJobResponse Source # 
type Rep ListJobExecutionsForJobResponse = D1 * (MetaData "ListJobExecutionsForJobResponse" "Network.AWS.IoT.ListJobExecutionsForJob" "amazonka-iot-1.6.0-GZYdsKS1TEjHFZo6BqaYJk" False) (C1 * (MetaCons "ListJobExecutionsForJobResponse'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_ljefjrsExecutionSummaries") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe [JobExecutionSummaryForJob]))) ((:*:) * (S1 * (MetaSel (Just Symbol "_ljefjrsNextToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_ljefjrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Int)))))

Response Lenses

ljefjrsNextToken :: Lens' ListJobExecutionsForJobResponse (Maybe Text) Source #

The token for the next set of results, or null if there are no additional results.