libZSservicesZSamazonka-elastictranscoderZSamazonka-elastictranscoder
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.ElasticTranscoder.ListPipelines

Description

The ListPipelines operation gets a list of the pipelines associated with the current AWS account.

This operation returns paginated results.

Synopsis

Creating a Request

data ListPipelines Source #

The ListPipelineRequest structure.

See: newListPipelines smart constructor.

Constructors

ListPipelines' 

Fields

  • ascending :: Maybe Text

    To list pipelines in chronological order by the date and time that they were created, enter true. To list pipelines in reverse chronological order, enter false.

  • pageToken :: Maybe Text

    When Elastic Transcoder returns more than one page of results, use pageToken in subsequent GET requests to get each successive page of results.

Instances

Instances details
Eq ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Read ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Show ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Generic ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Associated Types

type Rep ListPipelines :: Type -> Type #

NFData ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Methods

rnf :: ListPipelines -> () #

Hashable ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

AWSPager ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

AWSRequest ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Associated Types

type AWSResponse ListPipelines #

ToHeaders ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

ToPath ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

ToQuery ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

type Rep ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

type Rep ListPipelines = D1 ('MetaData "ListPipelines" "Amazonka.ElasticTranscoder.ListPipelines" "libZSservicesZSamazonka-elastictranscoderZSamazonka-elastictranscoder" 'False) (C1 ('MetaCons "ListPipelines'" 'PrefixI 'True) (S1 ('MetaSel ('Just "ascending") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "pageToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))
type AWSResponse ListPipelines Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

newListPipelines :: ListPipelines Source #

Create a value of ListPipelines 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:ascending:ListPipelines', listPipelines_ascending - To list pipelines in chronological order by the date and time that they were created, enter true. To list pipelines in reverse chronological order, enter false.

$sel:pageToken:ListPipelines', listPipelines_pageToken - When Elastic Transcoder returns more than one page of results, use pageToken in subsequent GET requests to get each successive page of results.

Request Lenses

listPipelines_ascending :: Lens' ListPipelines (Maybe Text) Source #

To list pipelines in chronological order by the date and time that they were created, enter true. To list pipelines in reverse chronological order, enter false.

listPipelines_pageToken :: Lens' ListPipelines (Maybe Text) Source #

When Elastic Transcoder returns more than one page of results, use pageToken in subsequent GET requests to get each successive page of results.

Destructuring the Response

data ListPipelinesResponse Source #

A list of the pipelines associated with the current AWS account.

See: newListPipelinesResponse smart constructor.

Constructors

ListPipelinesResponse' 

Fields

  • nextPageToken :: Maybe Text

    A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of NextPageToken is null.

  • pipelines :: Maybe [Pipeline]

    An array of Pipeline objects.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ListPipelinesResponse Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Read ListPipelinesResponse Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Show ListPipelinesResponse Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Generic ListPipelinesResponse Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Associated Types

type Rep ListPipelinesResponse :: Type -> Type #

NFData ListPipelinesResponse Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

Methods

rnf :: ListPipelinesResponse -> () #

type Rep ListPipelinesResponse Source # 
Instance details

Defined in Amazonka.ElasticTranscoder.ListPipelines

type Rep ListPipelinesResponse = D1 ('MetaData "ListPipelinesResponse" "Amazonka.ElasticTranscoder.ListPipelines" "libZSservicesZSamazonka-elastictranscoderZSamazonka-elastictranscoder" 'False) (C1 ('MetaCons "ListPipelinesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextPageToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "pipelines") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Pipeline])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListPipelinesResponse Source #

Create a value of ListPipelinesResponse 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:nextPageToken:ListPipelinesResponse', listPipelinesResponse_nextPageToken - A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of NextPageToken is null.

$sel:pipelines:ListPipelinesResponse', listPipelinesResponse_pipelines - An array of Pipeline objects.

$sel:httpStatus:ListPipelinesResponse', listPipelinesResponse_httpStatus - The response's http status code.

Response Lenses

listPipelinesResponse_nextPageToken :: Lens' ListPipelinesResponse (Maybe Text) Source #

A value that you use to access the second and subsequent pages of results, if any. When the pipelines fit on one page or when you've reached the last page of results, the value of NextPageToken is null.