Values.UpdateContentRequestSourceUpdates information about the content.
type nonrec t = {knowledgeBaseId : UuidOrArn.t;The identifier of the knowledge base. This should not be a QUICK_RESPONSES type knowledge base. Can be either the ID or the ARN
*)contentId : UuidOrArn.t;The identifier of the content. Can be either the ID or the ARN. URLs cannot contain the ARN.
*)revisionId : NonEmptyString.t option;The revisionId of the content resource to update, taken from an earlier call to GetContent, GetContentSummary, SearchContent, or ListContents. If included, this argument acts as an optimistic lock to ensure content was not modified since it was last read. If it has been modified, this API throws a PreconditionFailedException.
*)title : ContentTitle.t option;The title of the content.
*)overrideLinkOutUri : Uri_.t option;The URI for the article. If the knowledge base has a templateUri, setting this argument overrides it for this piece of content. To remove an existing overrideLinkOurUri, exclude this argument and set removeOverrideLinkOutUri to true.
*)removeOverrideLinkOutUri : Boolean.t option;Unset the existing overrideLinkOutUri if it exists.
*)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.
*)uploadId : UploadId.t option;A pointer to the uploaded asset. This value is returned by StartContentUpload.
*)}val make :
?revisionId:??? ->
?title:??? ->
?overrideLinkOutUri:??? ->
?removeOverrideLinkOutUri:??? ->
?metadata:??? ->
?uploadId:??? ->
knowledgeBaseId:UuidOrArn.t ->
contentId:UuidOrArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Map of
([> `String of NonEmptyString.t ]
* [> `String of NonEmptyString.t ])
list
| `String of UuidOrArn.t ])
list ]