libZSservicesZSamazonka-databrewZSamazonka-databrew
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.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
Eq ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Read ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Show ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Generic ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Associated Types

type Rep ListJobRuns :: Type -> Type #

NFData ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Methods

rnf :: ListJobRuns -> () #

Hashable 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 #

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

type Rep ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type Rep ListJobRuns = D1 ('MetaData "ListJobRuns" "Amazonka.DataBrew.ListJobRuns" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "ListJobRuns'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListJobRuns Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

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:nextToken:ListJobRuns', listJobRuns_nextToken - The token returned by a previous call to retrieve the next set of results.

$sel:maxResults:ListJobRuns', listJobRuns_maxResults - The maximum number of results to return in this request.

$sel:name:ListJobRuns', listJobRuns_name - The name of the job.

Request Lenses

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

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

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

The maximum number of results to return in this request.

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
Eq ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Read ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Show ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Generic ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Associated Types

type Rep ListJobRunsResponse :: Type -> Type #

NFData ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

Methods

rnf :: ListJobRunsResponse -> () #

type Rep ListJobRunsResponse Source # 
Instance details

Defined in Amazonka.DataBrew.ListJobRuns

type Rep ListJobRunsResponse = D1 ('MetaData "ListJobRunsResponse" "Amazonka.DataBrew.ListJobRuns" "libZSservicesZSamazonka-databrewZSamazonka-databrew" '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:

$sel:nextToken: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.