Values.ApplicationSummarySourceProvides application summary information, including the application Amazon Resource Name (ARN), name, and status.
type nonrec t = {applicationName : ApplicationName.t option;The name of the application.
*)applicationARN : ResourceARN.t option;The ARN of the application.
*)applicationStatus : ApplicationStatus.t option;The status of the application.
*)applicationVersionId : ApplicationVersionId.t option;Provides the current application version.
*)runtimeEnvironment : RuntimeEnvironment.t option;The runtime environment for the application.
*)applicationMode : ApplicationMode.t option;For a Managed Service for Apache Flink application, the mode is STREAMING. For a Managed Service for Apache Flink Studio notebook, it is INTERACTIVE.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Long of ApplicationVersionId.t
| `String of ApplicationName.t ])
list ]