Module Values.UpdateAutomatedReasoningPolicyRequestSource

Updates an existing Automated Reasoning policy with new rules, variables, or configuration. This creates a new version of the policy while preserving the previous version.

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

    The Amazon Resource Name (ARN) of the Automated Reasoning policy to update. This must be the ARN of a draft policy.

    *)
  2. policyDefinition : AutomatedReasoningPolicyDefinition.t;
    (*

    The updated policy definition containing the formal logic rules, variables, and types.

    *)
  3. name : AutomatedReasoningPolicyName.t option;
    (*

    The updated name for the Automated Reasoning policy.

    *)
  4. description : AutomatedReasoningPolicyDescription.t option;
    (*

    The updated description for the Automated Reasoning policy.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> policyArn:AutomatedReasoningPolicyArn.t -> policyDefinition:AutomatedReasoningPolicyDefinition.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AutomatedReasoningPolicyArn.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionTypeValueName.t ]) list ] list | `String of AutomatedReasoningPolicyDefinitionTypeName.t ]) list ] list | `String of AutomatedReasoningPolicyFormatVersion.t ]) list ]) 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