Describe Application Versions
elasticbeanstalk_describe_application_versions | R Documentation |
Retrieve a list of application versions¶
Description¶
Retrieve a list of application versions.
Usage¶
elasticbeanstalk_describe_application_versions(ApplicationName,
VersionLabels, MaxRecords, NextToken)
Arguments¶
ApplicationName |
Specify an application name to show only application versions for that application. |
VersionLabels |
Specify a version label to show a specific application version. |
MaxRecords |
For a paginated request. Specify a maximum number of application versions to include in each response. If no |
NextToken |
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request. If no |
Value¶
A list with the following syntax:
list(
ApplicationVersions = list(
list(
ApplicationVersionArn = "string",
ApplicationName = "string",
Description = "string",
VersionLabel = "string",
SourceBuildInformation = list(
SourceType = "Git"|"Zip",
SourceRepository = "CodeCommit"|"S3",
SourceLocation = "string"
),
BuildArn = "string",
SourceBundle = list(
S3Bucket = "string",
S3Key = "string"
),
DateCreated = as.POSIXct(
"2015-01-01"
),
DateUpdated = as.POSIXct(
"2015-01-01"
),
Status = "Processed"|"Unprocessed"|"Failed"|"Processing"|"Building"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_application_versions(
ApplicationName = "string",
VersionLabels = list(
"string"
),
MaxRecords = 123,
NextToken = "string"
)
Examples¶
## Not run:
# The following operation retrieves information about an application
# version labeled v2:
svc$describe_application_versions(
ApplicationName = "my-app",
VersionLabels = list(
"v2"
)
)
## End(Not run)