Module Values.DeleteIntegrationRequestSource

Deletes the integration between CloudWatch Logs and OpenSearch Service. If your integration has active vended logs dashboards, you must specify true for the force parameter, otherwise the operation will fail. If you delete the integration by setting force to true, all your vended logs dashboards powered by OpenSearch Service will be deleted and the data that was on them will no longer be accessible.

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

    The name of the integration to delete. To find the name of your integration, use ListIntegrations.

    *)
  2. force : Force.t option;
    (*

    Specify true to force the deletion of the integration even if vended logs dashboards currently exist. The default is false.

    *)
}
Sourceval context_ : string
Sourceval make : ?force:??? -> integrationName:IntegrationName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Force.t | `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