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¶
ApplicationIdsThe identifiers of one or more applications.
ComputeTypeNamesThe compute types supported by the applications.
LicenseTypeThe license availability for the applications.
OperatingSystemNamesThe operating systems supported by the applications.
OwnerThe owner of the applications.
MaxResultsThe maximum number of applications to return.
NextTokenIf you received a
NextTokenfrom a previous call that was paginated, provide this token to receive the next set of results.
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"|"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"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_applications(
ApplicationIds = list(
"string"
),
ComputeTypeNames = list(
"VALUE"|"STANDARD"|"PERFORMANCE"|"POWER"|"GRAPHICS"|"POWERPRO"|"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"
),
Owner = "string",
MaxResults = 123,
NextToken = "string"
)