Module Values.OpenSearchApplicationSource

This structure contains information about the OpenSearch Service application used for this integration. An OpenSearch Service application is the web application created by the integration with CloudWatch Logs. It hosts the vended logs dashboards.

Sourcetype nonrec t = {
  1. applicationEndpoint : OpenSearchApplicationEndpoint.t option;
    (*

    The endpoint of the application.

    *)
  2. applicationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the application.

    *)
  3. applicationId : OpenSearchApplicationId.t option;
    (*

    The ID of the application.

    *)
  4. status : OpenSearchResourceStatus.t option;
    (*

    This structure contains information about the status of this OpenSearch Service resource.

    *)
}
Sourceval make : ?applicationEndpoint:??? -> ?applicationArn:??? -> ?applicationId:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OpenSearchApplicationEndpoint.t | `Structure of (string * [> `Enum of string | `String of IntegrationStatusMessage.t ]) list ]) 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