Class: Aws::NetworkManager::Types::VpcOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkManager::Types::VpcOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkmanager/types.rb
Overview
Describes the VPC options.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#appliance_mode_support ⇒ Boolean
Indicates whether appliance mode is supported.
-
#dns_support ⇒ Boolean
Indicates whether DNS is supported.
-
#ipv_6_support ⇒ Boolean
Indicates whether IPv6 is supported.
-
#security_group_referencing_support ⇒ Boolean
Indicates whether security group referencing is enabled for this VPC attachment.
Instance Attribute Details
#appliance_mode_support ⇒ Boolean
Indicates whether appliance mode is supported. If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. The default value is ‘false`.
6279 6280 6281 6282 6283 6284 6285 6286 |
# File 'lib/aws-sdk-networkmanager/types.rb', line 6279 class VpcOptions < Struct.new( :ipv_6_support, :appliance_mode_support, :dns_support, :security_group_referencing_support) SENSITIVE = [] include Aws::Structure end |
#dns_support ⇒ Boolean
Indicates whether DNS is supported.
6279 6280 6281 6282 6283 6284 6285 6286 |
# File 'lib/aws-sdk-networkmanager/types.rb', line 6279 class VpcOptions < Struct.new( :ipv_6_support, :appliance_mode_support, :dns_support, :security_group_referencing_support) SENSITIVE = [] include Aws::Structure end |
#ipv_6_support ⇒ Boolean
Indicates whether IPv6 is supported.
6279 6280 6281 6282 6283 6284 6285 6286 |
# File 'lib/aws-sdk-networkmanager/types.rb', line 6279 class VpcOptions < Struct.new( :ipv_6_support, :appliance_mode_support, :dns_support, :security_group_referencing_support) SENSITIVE = [] include Aws::Structure end |
#security_group_referencing_support ⇒ Boolean
Indicates whether security group referencing is enabled for this VPC attachment. The default is ‘true`. However, at the core network policy-level the default is set to `false`.
6279 6280 6281 6282 6283 6284 6285 6286 |
# File 'lib/aws-sdk-networkmanager/types.rb', line 6279 class VpcOptions < Struct.new( :ipv_6_support, :appliance_mode_support, :dns_support, :security_group_referencing_support) SENSITIVE = [] include Aws::Structure end |