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¶
ApplicationNameSpecify an application name to show only application versions for that application.
VersionLabelsSpecify a version label to show a specific application version.
MaxRecordsFor a paginated request. Specify a maximum number of application versions to include in each response.
If no
MaxRecordsis specified, all available application versions are retrieved in a single response.NextTokenFor 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
NextTokenis specified, the first page is retrieved.
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"
)