Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListApplicationRevisionsInput

import type { ListApplicationRevisionsInput } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Represents the input of a ListApplicationRevisions operation.

interface ListApplicationRevisionsInput {
applicationName: string;
deployed?: ListStateFilterAction | null;
nextToken?: string | null;
s3Bucket?: string | null;
s3KeyPrefix?: string | null;
sortBy?: ApplicationRevisionSortBy | null;
sortOrder?: SortOrder | null;
}

§Properties

§
applicationName: string
[src]

The name of an AWS CodeDeploy application associated with the IAM user or AWS account.

§
deployed?: ListStateFilterAction | null
[src]

Whether to list revisions based on whether the revision is the target revision of a 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.
§
nextToken?: string | null
[src]

An identifier returned from the previous ListApplicationRevisions call. It can be used to return the next set of applications in the list.

§
s3Bucket?: string | null
[src]

An Amazon S3 bucket name to limit the search for revisions.

If set to null, all of the user's buckets are searched.

§
s3KeyPrefix?: string | null
[src]

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

§

The column name to use to sort the list results:

  • registerTime: Sort by the time the revisions were registered with AWS CodeDeploy.
  • firstUsedTime: Sort by the time the revisions were first used in a deployment.
  • lastUsedTime: Sort by the time the revisions were last used in a deployment.

If not specified or set to null, the results are returned in an arbitrary order.

§
sortOrder?: SortOrder | null
[src]

The order in which to sort the list results:

  • ascending: ascending order.
  • descending: descending order.

If not specified, the results are sorted in ascending order.

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