Describe Applications
appstream_describe_applications | R Documentation |
Retrieves a list that describes one or more applications¶
Description¶
Retrieves a list that describes one or more applications.
Usage¶
Arguments¶
Arns
The ARNs for the applications.
NextToken
The pagination token used to retrieve the next page of results for this operation.
MaxResults
The maximum size of each page of results.
Value¶
A list with the following syntax:
list(
Applications = list(
list(
Name = "string",
DisplayName = "string",
IconURL = "string",
LaunchPath = "string",
LaunchParameters = "string",
Enabled = TRUE|FALSE,
Metadata = list(
"string"
),
WorkingDirectory = "string",
Description = "string",
Arn = "string",
AppBlockArn = "string",
IconS3Location = list(
S3Bucket = "string",
S3Key = "string"
),
Platforms = list(
"WINDOWS"|"WINDOWS_SERVER_2016"|"WINDOWS_SERVER_2019"|"WINDOWS_SERVER_2022"|"AMAZON_LINUX2"|"RHEL8"
),
InstanceFamilies = list(
"string"
),
CreatedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)