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. contentType : ContentType.t option;
    (*

    The media type of the content.

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

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

    *)
  5. 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.

    *)
  6. 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 Wisdom, you can store an external version identifier as metadata to utilize for determining drift.

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

    The name of the content.

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

    The identifier of the revision of the content.

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

    The status of the content.

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

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

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

    The title of the content.

    *)
}
Sourceval make : ?contentArn:??? -> ?contentId:??? -> ?contentType:??? -> ?knowledgeBaseArn:??? -> ?knowledgeBaseId:??? -> ?metadata:??? -> ?name:??? -> ?revisionId:??? -> ?status:??? -> ?tags:??? -> ?title:??? -> 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