Amazon CodeDeploy · Schema
ListApplicationRevisionsInput
Represents the input of a ListApplicationRevisions operation.
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment
Properties
| Name | Type | Description |
|---|---|---|
| applicationName | object | |
| sortBy | object | |
| sortOrder | object | |
| s3Bucket | object | |
| s3KeyPrefix | object | |
| deployed | object | |
| nextToken | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-list-application-revisions-input-schema.json",
"title": "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"
]
}