Values.CreateAutomatedReasoningPolicyVersionRequestSourceCreates a new version of an existing Automated Reasoning policy. This allows you to iterate on your policy rules while maintaining previous versions for rollback or comparison purposes.
type nonrec t = {policyArn : AutomatedReasoningPolicyArn.t;The Amazon Resource Name (ARN) of the Automated Reasoning policy for which to create a version.
*)clientRequestToken : IdempotencyToken.t option;A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error.
*)lastUpdatedDefinitionHash : AutomatedReasoningPolicyHash.t;The hash of the current policy definition used as a concurrency token to ensure the policy hasn't been modified since you last retrieved it.
*)}val make :
?clientRequestToken:??? ->
?tags:??? ->
policyArn:AutomatedReasoningPolicyArn.t ->
lastUpdatedDefinitionHash:AutomatedReasoningPolicyHash.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of AutomatedReasoningPolicyArn.t ])
list ]