libZSservicesZSamazonka-serverlessrepoZSamazonka-serverlessrepo
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.ServerlessApplicationRepository.ListApplicationVersions

Description

Lists versions for the specified application.

This operation returns paginated results.

Synopsis

Creating a Request

data ListApplicationVersions Source #

See: newListApplicationVersions smart constructor.

Constructors

ListApplicationVersions' 

Fields

Instances

Instances details
Eq ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Read ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Show ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Generic ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Associated Types

type Rep ListApplicationVersions :: Type -> Type #

NFData ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Methods

rnf :: ListApplicationVersions -> () #

Hashable ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

AWSPager ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

AWSRequest ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

ToHeaders ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

ToPath ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

ToQuery ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

type Rep ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

type Rep ListApplicationVersions = D1 ('MetaData "ListApplicationVersions" "Amazonka.ServerlessApplicationRepository.ListApplicationVersions" "libZSservicesZSamazonka-serverlessrepoZSamazonka-serverlessrepo" 'False) (C1 ('MetaCons "ListApplicationVersions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "applicationId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListApplicationVersions Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

newListApplicationVersions Source #

Create a value of ListApplicationVersions 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:ListApplicationVersions', listApplicationVersions_nextToken - A token to specify where to start paginating.

$sel:maxItems:ListApplicationVersions', listApplicationVersions_maxItems - The total number of items to return.

$sel:applicationId:ListApplicationVersions', listApplicationVersions_applicationId - The Amazon Resource Name (ARN) of the application.

Request Lenses

listApplicationVersions_nextToken :: Lens' ListApplicationVersions (Maybe Text) Source #

A token to specify where to start paginating.

listApplicationVersions_applicationId :: Lens' ListApplicationVersions Text Source #

The Amazon Resource Name (ARN) of the application.

Destructuring the Response

data ListApplicationVersionsResponse Source #

See: newListApplicationVersionsResponse smart constructor.

Constructors

ListApplicationVersionsResponse' 

Fields

Instances

Instances details
Eq ListApplicationVersionsResponse Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Read ListApplicationVersionsResponse Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Show ListApplicationVersionsResponse Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Generic ListApplicationVersionsResponse Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

Associated Types

type Rep ListApplicationVersionsResponse :: Type -> Type #

NFData ListApplicationVersionsResponse Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

type Rep ListApplicationVersionsResponse Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.ListApplicationVersions

type Rep ListApplicationVersionsResponse = D1 ('MetaData "ListApplicationVersionsResponse" "Amazonka.ServerlessApplicationRepository.ListApplicationVersions" "libZSservicesZSamazonka-serverlessrepoZSamazonka-serverlessrepo" 'False) (C1 ('MetaCons "ListApplicationVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "versions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VersionSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListApplicationVersionsResponse Source #

Create a value of ListApplicationVersionsResponse 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:versions:ListApplicationVersionsResponse', listApplicationVersionsResponse_versions - An array of version summaries for the application.

$sel:nextToken:ListApplicationVersions', listApplicationVersionsResponse_nextToken - The token to request the next page of results.

$sel:httpStatus:ListApplicationVersionsResponse', listApplicationVersionsResponse_httpStatus - The response's http status code.

Response Lenses