Module Values.KnowledgeBaseDataSource

Information about the knowledge base.

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    The description.

    *)
  2. knowledgeBaseArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the knowledge base.

    *)
  3. knowledgeBaseId : Uuid.t option;
    (*

    The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base if you're storing Wisdom Content resource to it.

    *)
  4. knowledgeBaseType : KnowledgeBaseType.t option;
    (*

    The type of knowledge base.

    *)
  5. lastContentModificationTime : SyntheticTimestamp_epoch_seconds.t option;
    (*

    An epoch timestamp indicating the most recent content modification inside the knowledge base. If no content exists in a knowledge base, this value is unset.

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

    The name of the knowledge base.

    *)
  7. renderingConfiguration : RenderingConfiguration.t option;
    (*

    Information about how to render the content.

    *)
  8. 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. For more information about setting up a customer managed key for Wisdom, see Enable Amazon Connect Wisdom for your instance.

    *)
  9. sourceConfiguration : SourceConfiguration.t option;
    (*

    Source configuration information about the knowledge base.

    *)
  10. status : KnowledgeBaseStatus.t option;
    (*

    The status of the knowledge base.

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

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

    *)
}
Sourceval make : ?description:??? -> ?knowledgeBaseArn:??? -> ?knowledgeBaseId:??? -> ?knowledgeBaseType:??? -> ?lastContentModificationTime:??? -> ?name:??? -> ?renderingConfiguration:??? -> ?serverSideEncryptionConfiguration:??? -> ?sourceConfiguration:??? -> ?status:??? -> ?tags:??? -> 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 Description.t | `Structure of (string * [> `String of Uri_.t | `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of GenericArn.t ]) list ]) list | `Timestamp of SyntheticTimestamp_epoch_seconds.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