Describe Platform Version
elasticbeanstalk_describe_platform_version | R Documentation |
Describes a platform version¶
Description¶
Describes a platform version. Provides full details. Compare to
list_platform_versions
, which provides summary information about a
list of platform versions.
For definitions of platform version and other platform-related terms, see AWS Elastic Beanstalk Platforms Glossary.
Usage¶
Arguments¶
PlatformArn
The ARN of the platform version.
Value¶
A list with the following syntax:
list(
PlatformDescription = list(
PlatformArn = "string",
PlatformOwner = "string",
PlatformName = "string",
PlatformVersion = "string",
SolutionStackName = "string",
PlatformStatus = "Creating"|"Failed"|"Ready"|"Deleting"|"Deleted",
DateCreated = as.POSIXct(
"2015-01-01"
),
DateUpdated = as.POSIXct(
"2015-01-01"
),
PlatformCategory = "string",
Description = "string",
Maintainer = "string",
OperatingSystemName = "string",
OperatingSystemVersion = "string",
ProgrammingLanguages = list(
list(
Name = "string",
Version = "string"
)
),
Frameworks = list(
list(
Name = "string",
Version = "string"
)
),
CustomAmiList = list(
list(
VirtualizationType = "string",
ImageId = "string"
)
),
SupportedTierList = list(
"string"
),
SupportedAddonList = list(
"string"
),
PlatformLifecycleState = "string",
PlatformBranchName = "string",
PlatformBranchLifecycleState = "string"
)
)