Module Values_0.BatchDisassociateAnalyticsDataSetRequestSource

Removes a list of analytics datasets associated with a given Amazon Connect instance. You can disassociate multiple datasets in a single call.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. dataSetIds : DataSetIds.t;
    (*

    An array of associated dataset identifiers to remove.

    *)
  3. targetAccountId : AWSAccountId.t option;
    (*

    The identifier of the target account. Use to disassociate a dataset from a different account than the one containing the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetAccountId:??? -> instanceId:InstanceId.t -> dataSetIds:DataSetIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DataSetId.t ] list | `String of InstanceId.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