Module Values.ApplicationSummarySource

A subset of the possible application attributes. Used in the application list.

Sourcetype nonrec t = {
  1. applicationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the application.

    *)
  2. applicationId : Identifier.t option;
    (*

    The unique identifier of the application.

    *)
  3. applicationVersion : Version.t option;
    (*

    The version of the application.

    *)
  4. creationTime : Timestamp.t option;
    (*

    The timestamp when the application was created.

    *)
  5. deploymentStatus : ApplicationDeploymentLifecycle.t option;
    (*

    Indicates either an ongoing deployment or if the application has ever deployed successfully.

    *)
  6. description : EntityDescription.t option;
    (*

    The description of the application.

    *)
  7. engineType : EngineType.t option;
    (*

    The type of the target platform for this application.

    *)
  8. environmentId : Identifier.t option;
    (*

    The unique identifier of the runtime environment that hosts this application.

    *)
  9. lastStartTime : Timestamp.t option;
    (*

    The timestamp when you last started the application. Null until the application runs for the first time.

    *)
  10. name : EntityName.t option;
    (*

    The name of the application.

    *)
  11. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the role associated with the application.

    *)
  12. status : ApplicationLifecycle.t option;
    (*

    The status of the application.

    *)
  13. versionStatus : ApplicationVersionLifecycle.t option;
    (*

    Indicates the status of the latest version of the application.

    *)
}
Sourceval make : ?applicationArn:??? -> ?applicationId:??? -> ?applicationVersion:??? -> ?creationTime:??? -> ?deploymentStatus:??? -> ?description:??? -> ?engineType:??? -> ?environmentId:??? -> ?lastStartTime:??? -> ?name:??? -> ?roleArn:??? -> ?status:??? -> ?versionStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Version.t | `String of Arn.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t