Class: Aws::Route53Resolver::Types::FirewallConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Resolver::Types::FirewallConfig
- Defined in:
- gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb
Overview
Configuration of the firewall behavior provided by DNS Firewall for a single VPC from Amazon Virtual Private Cloud (Amazon VPC).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#firewall_fail_open ⇒ String
Determines how DNS Firewall operates during failures, for example when all traffic that is sent to DNS Firewall fails to receive a reply.
-
#id ⇒ String
The ID of the firewall configuration.
-
#owner_id ⇒ String
The Amazon Web Services account ID of the owner of the VPC that this firewall configuration applies to.
-
#resource_id ⇒ String
The ID of the VPC that this firewall configuration applies to.
Instance Attribute Details
#firewall_fail_open ⇒ String
Determines how DNS Firewall operates during failures, for example when all traffic that is sent to DNS Firewall fails to receive a reply.
By default, fail open is disabled, which means the failure mode is closed. This approach favors security over availability. DNS Firewall returns a failure error when it is unable to properly evaluate a query.
If you enable this option, the failure mode is open. This approach favors availability over security. DNS Firewall allows queries to proceed if it is unable to properly evaluate them.
This behavior is only enforced for VPCs that have at least one DNS Firewall rule group association.
1465 1466 1467 1468 1469 1470 1471 1472 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 1465 class FirewallConfig < Struct.new( :id, :resource_id, :owner_id, :firewall_fail_open) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the firewall configuration.
1465 1466 1467 1468 1469 1470 1471 1472 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 1465 class FirewallConfig < Struct.new( :id, :resource_id, :owner_id, :firewall_fail_open) SENSITIVE = [] include Aws::Structure end |
#owner_id ⇒ String
The Amazon Web Services account ID of the owner of the VPC that this firewall configuration applies to.
1465 1466 1467 1468 1469 1470 1471 1472 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 1465 class FirewallConfig < Struct.new( :id, :resource_id, :owner_id, :firewall_fail_open) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The ID of the VPC that this firewall configuration applies to.
1465 1466 1467 1468 1469 1470 1471 1472 |
# File 'gems/aws-sdk-route53resolver/lib/aws-sdk-route53resolver/types.rb', line 1465 class FirewallConfig < Struct.new( :id, :resource_id, :owner_id, :firewall_fail_open) SENSITIVE = [] include Aws::Structure end |