Values.ApplicationSummarySourceA subset of the possible application attributes. Used in the application list.
type nonrec t = {applicationArn : Arn.t option;The Amazon Resource Name (ARN) of the application.
*)applicationId : Identifier.t option;The unique identifier of the application.
*)applicationVersion : Version.t option;The version of the application.
*)creationTime : Timestamp.t option;The timestamp when the application was created.
*)deploymentStatus : ApplicationDeploymentLifecycle.t option;Indicates either an ongoing deployment or if the application has ever deployed successfully.
*)description : EntityDescription.t option;The description of the application.
*)engineType : EngineType.t option;The type of the target platform for this application.
*)environmentId : Identifier.t option;The unique identifier of the runtime environment that hosts this application.
*)lastStartTime : Timestamp.t option;The timestamp when you last started the application. Null until the application runs for the first time.
*)name : EntityName.t option;The name of the application.
*)roleArn : Arn.t option;The Amazon Resource Name (ARN) of the role associated with the application.
*)status : ApplicationLifecycle.t option;The status of the application.
*)versionStatus : ApplicationVersionLifecycle.t option;Indicates the status of the latest version of the application.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Version.t
| `String of Arn.t
| `Timestamp of Timestamp.t ])
list ]