amazonka-glue-1.6.0: Amazon Glue 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.Glue.GetJobRun

Contents

Description

Retrieves the metadata for a given job run.

Synopsis

Creating a Request

getJobRun Source #

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

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

data GetJobRun Source #

See: getJobRun smart constructor.

Instances

Eq GetJobRun Source # 
Data GetJobRun Source # 

Methods

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

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

toConstr :: GetJobRun -> Constr #

dataTypeOf :: GetJobRun -> DataType #

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

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

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

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

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

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

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

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

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

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

Read GetJobRun Source # 
Show GetJobRun Source # 
Generic GetJobRun Source # 

Associated Types

type Rep GetJobRun :: * -> * #

Hashable GetJobRun Source # 
ToJSON GetJobRun Source # 
NFData GetJobRun Source # 

Methods

rnf :: GetJobRun -> () #

AWSRequest GetJobRun Source # 
ToHeaders GetJobRun Source # 

Methods

toHeaders :: GetJobRun -> [Header] #

ToPath GetJobRun Source # 
ToQuery GetJobRun Source # 
type Rep GetJobRun Source # 
type Rep GetJobRun = D1 * (MetaData "GetJobRun" "Network.AWS.Glue.GetJobRun" "amazonka-glue-1.6.0-6lygtbc1qn5L8T6WOf5nFo" False) (C1 * (MetaCons "GetJobRun'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_gPredecessorsIncluded") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Bool))) ((:*:) * (S1 * (MetaSel (Just Symbol "_gJobName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)) (S1 * (MetaSel (Just Symbol "_gRunId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)))))
type Rs GetJobRun Source # 

Request Lenses

gPredecessorsIncluded :: Lens' GetJobRun (Maybe Bool) Source #

True if a list of predecessor runs should be returned.

gJobName :: Lens' GetJobRun Text Source #

Name of the job definition being run.

gRunId :: Lens' GetJobRun Text Source #

The ID of the job run.

Destructuring the Response

getJobRunResponse Source #

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

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

data GetJobRunResponse Source #

See: getJobRunResponse smart constructor.

Instances

Eq GetJobRunResponse Source # 
Data GetJobRunResponse Source # 

Methods

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

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

toConstr :: GetJobRunResponse -> Constr #

dataTypeOf :: GetJobRunResponse -> DataType #

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

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

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

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

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

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

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

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

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

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

Read GetJobRunResponse Source # 
Show GetJobRunResponse Source # 
Generic GetJobRunResponse Source # 
NFData GetJobRunResponse Source # 

Methods

rnf :: GetJobRunResponse -> () #

type Rep GetJobRunResponse Source # 
type Rep GetJobRunResponse = D1 * (MetaData "GetJobRunResponse" "Network.AWS.Glue.GetJobRun" "amazonka-glue-1.6.0-6lygtbc1qn5L8T6WOf5nFo" False) (C1 * (MetaCons "GetJobRunResponse'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_gjrjrsJobRun") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe JobRun))) (S1 * (MetaSel (Just Symbol "_gjrjrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Int))))

Response Lenses

gjrjrsJobRun :: Lens' GetJobRunResponse (Maybe JobRun) Source #

The requested job-run metadata.

gjrjrsResponseStatus :: Lens' GetJobRunResponse Int Source #

  • - | The response status code.