Class: Aws::NetworkFirewall::Types::FirewallMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::FirewallMetadata
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
High-level information about a firewall, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#firewall_arn ⇒ String
The Amazon Resource Name (ARN) of the firewall.
-
#firewall_name ⇒ String
The descriptive name of the firewall.
-
#transit_gateway_attachment_id ⇒ String
The unique identifier of the transit gateway attachment associated with this firewall.
Instance Attribute Details
#firewall_arn ⇒ String
The Amazon Resource Name (ARN) of the firewall.
2866 2867 2868 2869 2870 2871 2872 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 2866 class FirewallMetadata < Struct.new( :firewall_name, :firewall_arn, :transit_gateway_attachment_id) SENSITIVE = [] include Aws::Structure end |
#firewall_name ⇒ String
The descriptive name of the firewall. You can't change the name of a firewall after you create it.
2866 2867 2868 2869 2870 2871 2872 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 2866 class FirewallMetadata < Struct.new( :firewall_name, :firewall_arn, :transit_gateway_attachment_id) SENSITIVE = [] include Aws::Structure end |
#transit_gateway_attachment_id ⇒ String
The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls.
2866 2867 2868 2869 2870 2871 2872 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 2866 class FirewallMetadata < Struct.new( :firewall_name, :firewall_arn, :transit_gateway_attachment_id) SENSITIVE = [] include Aws::Structure end |