amazonka-codedeploy-0.0.5: Amazon CodeDeploy SDK.

Safe HaskellNone
LanguageHaskell2010

Network.AWS.CodeDeploy.ListApplicationRevisions

Contents

Description

Synopsis

Request

Request constructor

Request lenses

larApplicationName :: Lens' ListApplicationRevisions Text Source

The name of an existing AWS CodeDeploy application within the AWS user account.

larDeployed :: Lens' ListApplicationRevisions (Maybe ListStateFilterAction) Source

Whether to list revisions based on whether the revision is the target revision of an deployment group:

include: List revisions that are target revisions of a deployment group. exclude: Do not list revisions that are target revisions of a deployment group. ignore: List all revisions, regardless of whether they are target revisions of a deployment group.

larNextToken :: Lens' ListApplicationRevisions (Maybe Text) Source

An identifier that was returned from the previous list application revisions call, which can be used to return the next set of applications in the list.

larS3Bucket :: Lens' ListApplicationRevisions (Maybe Text) Source

A specific Amazon S3 bucket name to limit the search for revisions.

If set to null, then all of the user's buckets will be searched.

larS3KeyPrefix :: Lens' ListApplicationRevisions (Maybe Text) Source

A specific key prefix for the set of Amazon S3 objects to limit the search for revisions.

larSortBy :: Lens' ListApplicationRevisions (Maybe ApplicationRevisionSortBy) Source

The column name to sort the list results by:

registerTime: Sort the list results by when the revisions were registered with AWS CodeDeploy. firstUsedTime: Sort the list results by when the revisions were first used by in a deployment. lastUsedTime: Sort the list results by when the revisions were last used in a deployment. If not specified or set to null, the results will be returned in an arbitrary order.

larSortOrder :: Lens' ListApplicationRevisions (Maybe SortOrder) Source

The order to sort the list results by:

ascending: Sort the list results in ascending order. descending: Sort the list results in descending order. If not specified, the results will be sorted in ascending order.

If set to null, the results will be sorted in an arbitrary order.

Response

Response constructor

Response lenses

larrNextToken :: Lens' ListApplicationRevisionsResponse (Maybe Text) Source

If the amount of information that is returned is significantly large, an identifier will also be returned, which can be used in a subsequent list application revisions call to return the next set of application revisions in the list.

larrRevisions :: Lens' ListApplicationRevisionsResponse [RevisionLocation] Source

A list of revision locations that contain the matching revisions.