You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeDeploy::Types::ListApplicationRevisionsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListApplicationRevisionsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  application_name: "ApplicationName", # required
  sort_by: "registerTime", # accepts registerTime, firstUsedTime, lastUsedTime
  sort_order: "ascending", # accepts ascending, descending
  s3_bucket: "S3Bucket",
  s3_key_prefix: "S3Key",
  deployed: "include", # accepts include, exclude, ignore
  next_token: "NextToken",
}

Represents the input of a ListApplicationRevisions operation.

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

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

Returns:

  • (String)

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

#deployedString

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.

    Possible values:

    • include
    • exclude
    • ignore

Returns:

  • (String)

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

#next_tokenString

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

Returns:

  • (String)

    An identifier returned from the previous ListApplicationRevisions call.

#s3_bucketString

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

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

Returns:

  • (String)

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

#s3_key_prefixString

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

Returns:

  • (String)

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

#sort_byString

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.

Possible values:

  • registerTime
  • firstUsedTime
  • lastUsedTime

Returns:

  • (String)

    The column name to use to sort the list results:.

#sort_orderString

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.

Possible values:

  • ascending
  • descending

Returns:

  • (String)

    The order in which to sort the list results:.