Module Values.IntegrationSummarySource

This structure contains information about one CloudWatch Logs integration. This structure is returned by a ListIntegrations operation.

Sourcetype nonrec t = {
  1. integrationName : IntegrationName.t option;
    (*

    The name of this integration.

    *)
  2. integrationType : IntegrationType.t option;
    (*

    The type of integration. Integrations with OpenSearch Service have the type OPENSEARCH.

    *)
  3. integrationStatus : IntegrationStatus.t option;
    (*

    The current status of this integration.

    *)
}
Sourceval make : ?integrationName:??? -> ?integrationType:??? -> ?integrationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of IntegrationName.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