List Platform Versions
elasticbeanstalk_list_platform_versions | R Documentation |
Lists the platform versions available for your account in an AWS Region¶
Description¶
Lists the platform versions available for your account in an AWS Region.
Provides summary information about each platform version. Compare to
describe_platform_version
, which provides full details about a single
platform version.
For definitions of platform version and other platform-related terms, see AWS Elastic Beanstalk Platforms Glossary.
Usage¶
Arguments¶
Filters
Criteria for restricting the resulting list of platform versions. The filter is interpreted as a logical conjunction (AND) of the separate
PlatformFilter
terms.MaxRecords
The maximum number of platform version values returned in one call.
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.
Value¶
A list with the following syntax:
list(
PlatformSummaryList = list(
list(
PlatformArn = "string",
PlatformOwner = "string",
PlatformStatus = "Creating"|"Failed"|"Ready"|"Deleting"|"Deleted",
PlatformCategory = "string",
OperatingSystemName = "string",
OperatingSystemVersion = "string",
SupportedTierList = list(
"string"
),
SupportedAddonList = list(
"string"
),
PlatformLifecycleState = "string",
PlatformVersion = "string",
PlatformBranchName = "string",
PlatformBranchLifecycleState = "string"
)
),
NextToken = "string"
)