Values.CreatePromptVersionRequestSourceCreates a static snapshot of your prompt that can be deployed to production. For more information, see Deploy prompts using Prompt management by creating versions in the Amazon Bedrock User Guide.
type nonrec t = {promptIdentifier : PromptIdentifier.t;The unique identifier of the prompt that you want to create a version of.
*)description : PromptDescription.t option;A description for the version of the prompt.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.
*)}val make :
?description:??? ->
?clientToken:??? ->
?tags:??? ->
promptIdentifier:PromptIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of PromptIdentifier.t ])
list ]