Module Values.AwsNetworkFirewallFirewallDetailsSource

Details about an Network Firewall firewall.

Sourcetype nonrec t = {
  1. deleteProtection : Boolean.t option;
    (*

    Whether the firewall is protected from deletion. If set to true, then the firewall cannot be deleted.

    *)
  2. description : NonEmptyString.t option;
    (*

    A description of the firewall.

    *)
  3. firewallArn : NonEmptyString.t option;
    (*

    The ARN of the firewall.

    *)
  4. firewallId : NonEmptyString.t option;
    (*

    The identifier of the firewall.

    *)
  5. firewallName : NonEmptyString.t option;
    (*

    A descriptive name of the firewall.

    *)
  6. firewallPolicyArn : NonEmptyString.t option;
    (*

    The ARN of the firewall policy.

    *)
  7. firewallPolicyChangeProtection : Boolean.t option;
    (*

    Whether the firewall is protected from a change to the firewall policy. If set to true, you cannot associate a different policy with the firewall.

    *)
  8. subnetChangeProtection : Boolean.t option;
    (*

    Whether the firewall is protected from a change to the subnet associations. If set to true, you cannot map different subnets to the firewall.

    *)
  9. subnetMappings : AwsNetworkFirewallFirewallSubnetMappingsList.t option;
    (*

    The public subnets that Network Firewall uses for the firewall. Each subnet must belong to a different Availability Zone.

    *)
  10. vpcId : NonEmptyString.t option;
    (*

    The identifier of the VPC where the firewall is used.

    *)
}
Sourceval make : ?deleteProtection:??? -> ?description:??? -> ?firewallArn:??? -> ?firewallId:??? -> ?firewallName:??? -> ?firewallPolicyArn:??? -> ?firewallPolicyChangeProtection:??? -> ?subnetChangeProtection:??? -> ?subnetMappings:??? -> ?vpcId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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