Module Values.CreateAutomatedReasoningPolicyVersionRequestSource

Creates 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.

Sourcetype nonrec t = {
  1. policyArn : AutomatedReasoningPolicyArn.t;
    (*

    The Amazon Resource Name (ARN) of the Automated Reasoning policy for which to create a version.

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

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

    *)
  4. tags : TagList.t option;
    (*

    A list of tags to associate with the policy version.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> ?tags:??? -> policyArn:AutomatedReasoningPolicyArn.t -> lastUpdatedDefinitionHash:AutomatedReasoningPolicyHash.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of AutomatedReasoningPolicyArn.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