Module Values.BatchCreateFirewallRuleOutputItemSource

Information about the result of creating a DNS Firewall rule in a batch operation.

Sourcetype nonrec t = {
  1. firewallRule : BatchCreateFirewallRuleResult.t option;
    (*

    The firewall rule that was created in the batch operation.

    *)
  2. code : Integer.t option;
    (*

    The HTTP response code for the batch operation result.

    *)
  3. message : String_.t option;
    (*

    A message describing the result of the batch operation, including error details if applicable.

    *)
}
Sourceval make : ?firewallRule:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of BlockOverrideTtl.t | `Long of FirewallRulePriority.t | `String of Domain.t | `Timestamp of ISO8601TimeString.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