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.
DisplayNameThe display name of the application. This name is visible to users in the application catalog.
DescriptionThe description of the application.
IconS3LocationThe icon S3 location of the application.
LaunchPathThe launch path of the application.
WorkingDirectoryThe working directory of the application.
LaunchParametersThe launch parameters of the application.
AppBlockArnThe ARN of the app block.
AttributesToDeleteThe 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"
)
)