Class: Aws::NetworkFirewall::Types::DeleteFirewallResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::DeleteFirewallResponse
- Includes:
- Structure
- Defined in:
- 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.
1041 1042 1043 1044 1045 1046 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 1041 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.
1041 1042 1043 1044 1045 1046 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 1041 class DeleteFirewallResponse < Struct.new( :firewall, :firewall_status) SENSITIVE = [] include Aws::Structure end |