Values_0.BatchAssociateAnalyticsDataSetRequestSourceAssociates a list of analytics datasets for a given Amazon Connect instance to a target account. You can associate multiple datasets in a single call.
type nonrec t = {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.
*)dataSetIds : DataSetIds.t;An array of dataset identifiers to associate.
*)targetAccountId : AWSAccountId.t option;The identifier of the target account. Use to associate a dataset to 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.
*)}val make :
?targetAccountId:??? ->
instanceId:InstanceId.t ->
dataSetIds:DataSetIds.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of DataSetId.t ] list
| `String of InstanceId.t ])
list ]