amazonka-databrew-2.0: Amazon Glue DataBrew SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.DataBrew.ListJobRuns

Description

Lists all of the previous runs of a particular DataBrew job.

This operation returns paginated results.

Synopsis

Creating a Request

data ListJobRuns Source #

See: newListJobRuns smart constructor.

Constructors

ListJobRuns' 

Fields

Instances

Instances details
ToHeaders ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Methods

toHeaders :: ListJobRuns -> [Header] #

ToPath ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

ToQuery ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

AWSPager ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

AWSRequest ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Associated Types

type AWSResponse ListJobRuns #

Generic ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Associated Types

type Rep ListJobRuns :: Type -> Type #

Read ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Show ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

NFData ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Methods

rnf :: ListJobRuns -> () #

Eq ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Hashable ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type AWSResponse ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type Rep ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type Rep ListJobRuns = D1 ('MetaData "ListJobRuns" "Amazonka.DataBrew.ListJobRuns" "amazonka-databrew-2.0-GJMXoRzRb387Yq6XNY29RM" 'False) (C1 ('MetaCons "ListJobRuns'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListJobRuns Source #

Create a value of ListJobRuns 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:maxResults:ListJobRuns', listJobRuns_maxResults - The maximum number of results to return in this request.

ListJobRuns, listJobRuns_nextToken - The token returned by a previous call to retrieve the next set of results.

ListJobRuns, listJobRuns_name - The name of the job.

Request Lenses

listJobRuns_maxResults :: Lens' ListJobRuns (Maybe Natural) Source #

The maximum number of results to return in this request.

listJobRuns_nextToken :: Lens' ListJobRuns (Maybe Text) Source #

The token returned by a previous call to retrieve the next set of results.

Destructuring the Response

data ListJobRunsResponse Source #

See: newListJobRunsResponse smart constructor.

Constructors

ListJobRunsResponse' 

Fields

  • nextToken :: Maybe Text

    A token that you can use in a subsequent call to retrieve the next set of results.

  • httpStatus :: Int

    The response's http status code.

  • jobRuns :: [JobRun]

    A list of job runs that have occurred for the specified job.

Instances

Instances details
Generic ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Associated Types

type Rep ListJobRunsResponse :: Type -> Type #

Read ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Show ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

NFData ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Methods

rnf :: ListJobRunsResponse -> () #

Eq ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type Rep ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type Rep ListJobRunsResponse = D1 ('MetaData "ListJobRunsResponse" "Amazonka.DataBrew.ListJobRuns" "amazonka-databrew-2.0-GJMXoRzRb387Yq6XNY29RM" 'False) (C1 ('MetaCons "ListJobRunsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "jobRuns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [JobRun]))))

newListJobRunsResponse Source #

Create a value of ListJobRunsResponse 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:

ListJobRuns, listJobRunsResponse_nextToken - A token that you can use in a subsequent call to retrieve the next set of results.

$sel:httpStatus:ListJobRunsResponse', listJobRunsResponse_httpStatus - The response's http status code.

$sel:jobRuns:ListJobRunsResponse', listJobRunsResponse_jobRuns - A list of job runs that have occurred for the specified job.

Response Lenses

listJobRunsResponse_nextToken :: Lens' ListJobRunsResponse (Maybe Text) Source #

A token that you can use in a subsequent call to retrieve the next set of results.

listJobRunsResponse_jobRuns :: Lens' ListJobRunsResponse [JobRun] Source #

A list of job runs that have occurred for the specified job.