Class: Aws::NetworkFirewall::Types::SubnetMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::SubnetMapping
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
Note:
When making an API call, you may pass SubnetMapping data as a hash:
{
subnet_id: "CollectionMember_String", # required
}
The ID for a subnet that you want to associate with the firewall. This is used with CreateFirewall and AssociateSubnets. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_id ⇒ String
The unique identifier for the subnet.
Instance Attribute Details
#subnet_id ⇒ String
The unique identifier for the subnet.
4253 4254 4255 4256 4257 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 4253 class SubnetMapping < Struct.new( :subnet_id) SENSITIVE = [] include Aws::Structure end |