Module Values.ContentSummarySource

Summary information about the content.

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

    The Amazon Resource Name (ARN) of the content.

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

    The identifier of the content.

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

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

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

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

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

    The name of the content.

    *)
  6. revisionId : NonEmptyString.t option;
    (*

    The identifier of the revision of the content.

    *)
  7. title : ContentTitle.t option;
    (*

    The title of the content.

    *)
  8. contentType : ContentType.t option;
    (*

    The media type of the content.

    *)
  9. status : ContentStatus.t option;
    (*

    The status of the content.

    *)
  10. metadata : ContentMetadata.t option;
    (*

    A key/value map to store attributes without affecting tagging or recommendations. For example, when synchronizing data between an external system and Amazon Q in Connect, you can store an external version identifier as metadata to utilize for determining drift.

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

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

    *)
}
Sourceval make : ?contentArn:??? -> ?contentId:??? -> ?knowledgeBaseArn:??? -> ?knowledgeBaseId:??? -> ?name:??? -> ?revisionId:??? -> ?title:??? -> ?contentType:??? -> ?status:??? -> ?metadata:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `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