Amazon CodeDeploy · JSON Structure

Amazon Codedeploy List Application Revisions Input Structure

Represents the input of a ListApplicationRevisions operation.

Type: object Properties: 7 Required: 1
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

ListApplicationRevisionsInput is a JSON Structure definition published by Amazon CodeDeploy, describing 7 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

applicationName sortBy sortOrder s3Bucket s3KeyPrefix deployed nextToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-list-application-revisions-input-structure.json",
  "name": "ListApplicationRevisionsInput",
  "description": " Represents the input of a <code>ListApplicationRevisions</code> operation. ",
  "type": "object",
  "properties": {
    "applicationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationName"
        },
        {
          "description": " The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account. "
        }
      ]
    },
    "sortBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApplicationRevisionSortBy"
        },
        {
          "description": "<p>The column name to use to sort the list results:</p> <ul> <li> <p> <code>registerTime</code>: Sort by the time the revisions were registered with CodeDeploy.</p> </li> <li> <p> <code>firstUsedTime</code>: Sort by the time the revisions were first used in a deployment.</p> </li> <li> <p> <code>lastUsedTime</code>: Sort by the time the revisions were last used in a deployment.</p> </li> </ul> <p> If not specified or set to null, the results are returned in an arbitrary order. </p>"
        }
      ]
    },
    "sortOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SortOrder"
        },
        {
          "description": "<p> The order in which to sort the list results: </p> <ul> <li> <p> <code>ascending</code>: ascending order.</p> </li> <li> <p> <code>descending</code>: descending order.</p> </li> </ul> <p>If not specified, the results are sorted in ascending order.</p> <p>If set to null, the results are sorted in an arbitrary order.</p>"
        }
      ]
    },
    "s3Bucket": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Bucket"
        },
        {
          "description": "<p> An Amazon S3 bucket name to limit the search for revisions. </p> <p> If set to null, all of the user's buckets are searched. </p>"
        }
      ]
    },
    "s3KeyPrefix": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Key"
        },
        {
          "description": " A key prefix for the set of Amazon S3 objects to limit the search for revisions. "
        }
      ]
    },
    "deployed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListStateFilterAction"
        },
        {
          "description": "<p> Whether to list revisions based on whether the revision is the target revision of a deployment group: </p> <ul> <li> <p> <code>include</code>: List revisions that are target revisions of a deployment group.</p> </li> <li> <p> <code>exclude</code>: Do not list revisions that are target revisions of a deployment group.</p> </li> <li> <p> <code>ignore</code>: List all revisions.</p> </li> </ul>"
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "An identifier returned from the previous <code>ListApplicationRevisions</code> call. It can be used to return the next set of applications in the list."
        }
      ]
    }
  },
  "required": [
    "applicationName"
  ]
}