Values.ApplicationSourceDescribes an application in the application catalog.
type nonrec t = {name : String_.t option;The name of the application.
*)displayName : String_.t option;The application name to display.
*)iconURL : String_.t option;The URL for the application icon. This URL might be time-limited.
*)launchPath : String_.t option;The path to the application executable in the instance.
*)launchParameters : String_.t option;The arguments that are passed to the application at launch.
*)enabled : Boolean.t option;If there is a problem, the application can be disabled after image creation.
*)metadata : Metadata.t option;Additional attributes that describe the application.
*)workingDirectory : String_.t option;The working directory for the application.
*)description : String_.t option;The description of the application.
*)arn : Arn.t option;The ARN of the application.
*)appBlockArn : Arn.t option;The app block ARN of the application.
*)iconS3Location : S3Location.t option;The S3 location of the application icon.
*)platforms : Platforms.t option;The platforms on which the application can run.
*)instanceFamilies : StringList.t option;The instance families for the application.
*)createdTime : Timestamp.t option;The time at which the application was created within the app block.
*)}val make :
?name:??? ->
?displayName:??? ->
?iconURL:??? ->
?launchPath:??? ->
?launchParameters:??? ->
?enabled:??? ->
?metadata:??? ->
?workingDirectory:??? ->
?description:??? ->
?arn:??? ->
?appBlockArn:??? ->
?iconS3Location:??? ->
?platforms:??? ->
?instanceFamilies:??? ->
?createdTime:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `Enum of string | `String of String_.t ] list
| `Map of
([> `String of String_.t ] * [> `String of String_.t ]) list
| `String of String_.t
| `Structure of (string * [> `String of S3Bucket.t ]) list
| `Timestamp of Timestamp.t ])
list ]