Values.CreateAssistantAssociationRequestSourceCreates an association between an Amazon Connect Wisdom assistant and another resource. Currently, the only supported association is with a knowledge base. An assistant can have only a single association.
type nonrec t = {assistantId : UuidOrArn.t;The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*)association : AssistantAssociationInputData.t;The identifier of the associated resource.
*)associationType : AssociationType.t;The type of association.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
*)}val make :
?clientToken:??? ->
?tags:??? ->
assistantId:UuidOrArn.t ->
association:AssistantAssociationInputData.t ->
associationType:AssociationType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of UuidOrArn.t
| `Structure of (string * [> `String of Uuid.t ]) list ])
list ]