paws.compute (version 0.1.0)

elasticbeanstalk_describe_application_versions: 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 MaxRecords is specified, all available application versions are retrieved in a single response.

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 NextToken is specified, the first page is retrieved.

Request syntax

svc$describe_application_versions(
  ApplicationName = "string",
  VersionLabels = list(
    "string"
  ),
  MaxRecords = 123,
  NextToken = "string"
)

Examples

Run this code
# NOT RUN {
# The following operation retrieves information about an application
# version labeled v2:
# }
# NOT RUN {
svc$describe_application_versions(
  ApplicationName = "my-app",
  VersionLabels = list(
    "v2"
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab