Module Values.ApplicationSummarySource

Summary information about the Application.

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

    The Amazon Resource Name (ARN) of the Application.

    *)
  2. id : UUID.t option;
    (*

    A unique identifier for the Application.

    *)
  3. name : ApplicationName.t option;
    (*

    The name of the application.

    *)
  4. namespace : ApplicationNamespace.t option;
    (*

    The namespace of the application.

    *)
  5. createdTime : Timestamp.t option;
    (*

    The time when the application was created.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The time when the application was last modified.

    *)
  7. isService : Boolean.t option;
    (*

    Indicates whether the application is a service.

    *)
  8. applicationType : ApplicationType.t option;
    (*

    The type of application.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?namespace:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?isService:??? -> ?applicationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `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