Update Application
appstream_update_application | R Documentation |
Updates the specified application¶
Description¶
Updates the specified application.
Usage¶
appstream_update_application(Name, DisplayName, Description,
IconS3Location, LaunchPath, WorkingDirectory, LaunchParameters,
AppBlockArn, AttributesToDelete)
Arguments¶
Name
[required] The name of the application. This name is visible to users when display name is not specified.
DisplayName
The display name of the application. This name is visible to users in the application catalog.
Description
The description of the application.
IconS3Location
The icon S3 location of the application.
LaunchPath
The launch path of the application.
WorkingDirectory
The working directory of the application.
LaunchParameters
The launch parameters of the application.
AppBlockArn
The ARN of the app block.
AttributesToDelete
The attributes to delete for an application.
Value¶
A list with the following syntax:
list(
Application = 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"
)
)
)
Request syntax¶
svc$update_application(
Name = "string",
DisplayName = "string",
Description = "string",
IconS3Location = list(
S3Bucket = "string",
S3Key = "string"
),
LaunchPath = "string",
WorkingDirectory = "string",
LaunchParameters = "string",
AppBlockArn = "string",
AttributesToDelete = list(
"LAUNCH_PARAMETERS"|"WORKING_DIRECTORY"
)
)