Module Values.AssistantDataSource

The assistant data.

Sourcetype nonrec t = {
  1. assistantArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Wisdom assistant.

    *)
  2. assistantId : Uuid.t option;
    (*

    The identifier of the Wisdom assistant.

    *)
  3. description : Description.t option;
    (*

    The description.

    *)
  4. integrationConfiguration : AssistantIntegrationConfiguration.t option;
    (*

    The configuration information for the Wisdom assistant integration.

    *)
  5. name : Name.t option;
    (*

    The name.

    *)
  6. serverSideEncryptionConfiguration : ServerSideEncryptionConfiguration.t option;
    (*

    The configuration information for the customer managed key used for encryption. This KMS key must have a policy that allows kms:CreateGrant, kms:DescribeKey, and kms:Decrypt/kms:GenerateDataKey permissions to the IAM identity using the key to invoke Wisdom. To use Wisdom with chat, the key policy must also allow kms:Decrypt, kms:GenerateDataKey*, and kms:DescribeKey permissions to the connect.amazonaws.com service principal. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance.

    *)
  7. status : AssistantStatus.t option;
    (*

    The status of the assistant.

    *)
  8. tags : Tags.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
  9. type_ : AssistantType.t option;
    (*

    The type of assistant.

    *)
}
Sourceval make : ?assistantArn:??? -> ?assistantId:??? -> ?description:??? -> ?integrationConfiguration:??? -> ?name:??? -> ?serverSideEncryptionConfiguration:??? -> ?status:??? -> ?tags:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Arn.t | `Structure of (string * [> `String of GenericArn.t ]) list ]) 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