Module Values.ApplicationSummarySource

Basic details of an OpenSearch application.

Sourcetype nonrec t = {
  1. id : Id.t option;
    (*

    The unique identifier of an OpenSearch application.

    *)
  2. arn : ARN.t option;
  3. name : ApplicationName.t option;
    (*

    The name of an OpenSearch application.

    *)
  4. endpoint : String_.t option;
    (*

    The endpoint URL of an OpenSearch application.

    *)
  5. status : ApplicationStatus.t option;
    (*

    The current status of an OpenSearch application. Possible values: CREATING, UPDATING, DELETING, FAILED, ACTIVE, and DELETED.

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

    The timestamp when an OpenSearch application was created.

    *)
  7. lastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of the last update to an OpenSearch application.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?endpoint:??? -> ?status:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.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