Class: Aws::NetworkFirewall::Types::DeleteFirewallResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::DeleteFirewallResponse
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#firewall ⇒ Types::Firewall
The firewall defines the configuration settings for an Network Firewall firewall.
-
#firewall_status ⇒ Types::FirewallStatus
Detailed information about the current status of a Firewall.
Instance Attribute Details
#firewall ⇒ Types::Firewall
The firewall defines the configuration settings for an Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource.
The status of the firewall, for example whether it's ready to filter network traffic, is provided in the corresponding FirewallStatus. You can retrieve both objects by calling DescribeFirewall.
1035 1036 1037 1038 1039 1040 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 1035 class DeleteFirewallResponse < Struct.new( :firewall, :firewall_status) SENSITIVE = [] include Aws::Structure end |
#firewall_status ⇒ Types::FirewallStatus
Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN.
1035 1036 1037 1038 1039 1040 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 1035 class DeleteFirewallResponse < Struct.new( :firewall, :firewall_status) SENSITIVE = [] include Aws::Structure end |