List Application Revisions
codedeploy_list_application_revisions | R Documentation |
Lists information about revisions for an application¶
Description¶
Lists information about revisions for an application.
Usage¶
codedeploy_list_application_revisions(applicationName, sortBy,
sortOrder, s3Bucket, s3KeyPrefix, deployed, nextToken)
Arguments¶
applicationName |
[required] The name of an CodeDeploy application associated with the user or Amazon Web Services account. |
sortBy |
The column name to use to sort the list results:
If not specified or set to null, the results are returned in an arbitrary order. |
sortOrder |
The order in which to sort the list results:
If not specified, the results are sorted in ascending order. If set to null, the results are sorted in an arbitrary order. |
s3Bucket |
An Amazon S3 bucket name to limit the search for revisions. If set to null, all of the user's buckets are searched. |
s3KeyPrefix |
A key prefix for the set of Amazon S3 objects to limit the search for revisions. |
deployed |
Whether to list revisions based on whether the revision is the target revision of a deployment group:
|
nextToken |
An identifier returned from the previous
|
Value¶
A list with the following syntax:
list(
revisions = list(
list(
revisionType = "S3"|"GitHub"|"String"|"AppSpecContent",
s3Location = list(
bucket = "string",
key = "string",
bundleType = "tar"|"tgz"|"zip"|"YAML"|"JSON",
version = "string",
eTag = "string"
),
gitHubLocation = list(
repository = "string",
commitId = "string"
),
string = list(
content = "string",
sha256 = "string"
),
appSpecContent = list(
content = "string",
sha256 = "string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_application_revisions(
applicationName = "string",
sortBy = "registerTime"|"firstUsedTime"|"lastUsedTime",
sortOrder = "ascending"|"descending",
s3Bucket = "string",
s3KeyPrefix = "string",
deployed = "include"|"exclude"|"ignore",
nextToken = "string"
)