Values.CreateApplicationRequestSourceCreates an application. Applications are a WorkSpaces Applications resource that stores the details about how to launch applications on Elastic fleet streaming instances. An application consists of the launch details, icon, and display name. Applications are associated with an app block that contains the application binaries and other files. The applications assigned to an Elastic fleet are the applications users can launch. This is only supported for Elastic fleets.
type nonrec t = {name : Name.t;The name of the application. This name is visible to users when display name is not specified.
*)displayName : DisplayName.t option;The display name of the application. This name is visible to users in the application catalog.
*)description : Description.t option;The description of the application.
*)iconS3Location : S3Location.t;The location in S3 of the application icon.
*)launchPath : String_.t;The launch path of the application.
*)workingDirectory : String_.t option;The working directory of the application.
*)launchParameters : String_.t option;The launch parameters of the application.
*)platforms : Platforms.t;The platforms the application supports. WINDOWS_SERVER_2019, AMAZON_LINUX2 and UBUNTU_PRO_2404 are supported for Elastic fleets.
*)instanceFamilies : StringList.t;The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.
*)appBlockArn : Arn.t;The app block ARN to which the application should be associated
*)}val make :
?displayName:??? ->
?description:??? ->
?workingDirectory:??? ->
?launchParameters:??? ->
?tags:??? ->
name:Name.t ->
iconS3Location:S3Location.t ->
launchPath:String_.t ->
platforms:Platforms.t ->
instanceFamilies:StringList.t ->
appBlockArn:Arn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `Enum of string | `String of String_.t ] list
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of Name.t
| `Structure of (string * [> `String of S3Bucket.t ]) list ])
list ]