Class: Aws::Evs::Types::InitialVlanInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Evs::Types::InitialVlanInfo
- Defined in:
- gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb
Overview
An object that represents an initial VLAN subnet for the Amazon EVS environment. Amazon EVS creates initial VLAN subnets when you first create the environment. Amazon EVS creates the following 10 VLAN subnets: host management VLAN, vMotion VLAN, vSAN VLAN, VTEP VLAN, Edge VTEP VLAN, Management VM VLAN, HCX uplink VLAN, NSX uplink VLAN, expansion VLAN 1, expansion VLAN 2.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr ⇒ String
The CIDR block that you provide to create an Amazon EVS VLAN subnet.
Instance Attribute Details
#cidr ⇒ String
The CIDR block that you provide to create an Amazon EVS VLAN subnet. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.
783 784 785 786 787 |
# File 'gems/aws-sdk-evs/lib/aws-sdk-evs/types.rb', line 783 class InitialVlanInfo < Struct.new( :cidr) SENSITIVE = [] include Aws::Structure end |