Module Values.ContentReferenceSource

Reference information about the content.

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

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

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

    The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base.

    *)
  3. contentArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the content.

    *)
  4. contentId : Uuid.t option;
    (*

    The identifier of the content.

    *)
  5. sourceURL : String_.t option;
    (*

    The web URL of the source content.

    *)
  6. referenceType : ReferenceType.t option;
    (*

    The type of reference content.

    *)
}
Sourceval make : ?knowledgeBaseArn:??? -> ?knowledgeBaseId:??? -> ?contentArn:??? -> ?contentId:??? -> ?sourceURL:??? -> ?referenceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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