NetworkFirewall.Firewall
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-firewall.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewall-subnetmapping.html
type properties = {
firewall_policy_arn : string;
subnet_change_protection : bool option;
description : string option;
firewall_name : string;
vpc_id : string;
delete_protection : bool option;
firewall_policy_change_protection : bool option;
subnet_mappings : subnet_mapping list;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-firewall.html;
val make_properties :
firewall_policy_arn:string ->
?subnet_change_protection:bool ->
?description:string ->
firewall_name:string ->
vpc_id:string ->
?delete_protection:bool ->
?firewall_policy_change_protection:bool ->
?tags:tag list ->
subnet_mappings:subnet_mapping list ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val make_subnet_mapping :
?ip_address_type:string ->
subnet_id:string ->
unit ->
subnet_mapping
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_subnet_mapping :
subnet_mapping ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes