Describe Applications
workspaces_describe_applications | R Documentation |
Describes the specified applications by filtering based on their compute types, license availability, operating systems, and owners¶
Description¶
Describes the specified applications by filtering based on their compute types, license availability, operating systems, and owners.
Usage¶
workspaces_describe_applications(ApplicationIds, ComputeTypeNames,
LicenseType, OperatingSystemNames, Owner, MaxResults, NextToken)
Arguments¶
ApplicationIds |
The identifiers of one or more applications. |
ComputeTypeNames |
The compute types supported by the applications. |
LicenseType |
The license availability for the applications. |
OperatingSystemNames |
The operating systems supported by the applications. |
Owner |
The owner of the applications. |
MaxResults |
The maximum number of applications to return. |
NextToken |
If you received a |
Value¶
A list with the following syntax:
list(
Applications = list(
list(
ApplicationId = "string",
Created = as.POSIXct(
"2015-01-01"
),
Description = "string",
LicenseType = "LICENSED"|"UNLICENSED",
Name = "string",
Owner = "string",
State = "PENDING"|"ERROR"|"AVAILABLE"|"UNINSTALL_ONLY",
SupportedComputeTypeNames = list(
"VALUE"|"STANDARD"|"PERFORMANCE"|"POWER"|"GRAPHICS"|"POWERPRO"|"GENERALPURPOSE_4XLARGE"|"GENERALPURPOSE_8XLARGE"|"GRAPHICSPRO"|"GRAPHICS_G4DN"|"GRAPHICSPRO_G4DN"
),
SupportedOperatingSystemNames = list(
"AMAZON_LINUX_2"|"UBUNTU_18_04"|"UBUNTU_20_04"|"UBUNTU_22_04"|"UNKNOWN"|"WINDOWS_10"|"WINDOWS_11"|"WINDOWS_7"|"WINDOWS_SERVER_2016"|"WINDOWS_SERVER_2019"|"WINDOWS_SERVER_2022"|"RHEL_8"|"ROCKY_8"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_applications(
ApplicationIds = list(
"string"
),
ComputeTypeNames = list(
"VALUE"|"STANDARD"|"PERFORMANCE"|"POWER"|"GRAPHICS"|"POWERPRO"|"GENERALPURPOSE_4XLARGE"|"GENERALPURPOSE_8XLARGE"|"GRAPHICSPRO"|"GRAPHICS_G4DN"|"GRAPHICSPRO_G4DN"
),
LicenseType = "LICENSED"|"UNLICENSED",
OperatingSystemNames = list(
"AMAZON_LINUX_2"|"UBUNTU_18_04"|"UBUNTU_20_04"|"UBUNTU_22_04"|"UNKNOWN"|"WINDOWS_10"|"WINDOWS_11"|"WINDOWS_7"|"WINDOWS_SERVER_2016"|"WINDOWS_SERVER_2019"|"WINDOWS_SERVER_2022"|"RHEL_8"|"ROCKY_8"
),
Owner = "string",
MaxResults = 123,
NextToken = "string"
)