interface InitialVlansProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EVS.Mixins.CfnEnvironmentPropsMixin.InitialVlansProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevs/mixins#CfnEnvironmentPropsMixin_InitialVlansProperty |
Java | software.amazon.awscdk.mixins.preview.services.evs.mixins.CfnEnvironmentPropsMixin.InitialVlansProperty |
Python | aws_cdk.mixins_preview.aws_evs.mixins.CfnEnvironmentPropsMixin.InitialVlansProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evs » mixins » CfnEnvironmentPropsMixin » InitialVlansProperty |
The initial VLAN subnets for the environment.
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.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as evs_mixins } from '@aws-cdk/mixins-preview/aws-evs';
const initialVlansProperty: evs_mixins.CfnEnvironmentPropsMixin.InitialVlansProperty = {
edgeVTep: {
cidr: 'cidr',
},
expansionVlan1: {
cidr: 'cidr',
},
expansionVlan2: {
cidr: 'cidr',
},
hcx: {
cidr: 'cidr',
},
hcxNetworkAclId: 'hcxNetworkAclId',
isHcxPublic: false,
nsxUpLink: {
cidr: 'cidr',
},
vmkManagement: {
cidr: 'cidr',
},
vmManagement: {
cidr: 'cidr',
},
vMotion: {
cidr: 'cidr',
},
vSan: {
cidr: 'cidr',
},
vTep: {
cidr: 'cidr',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| edge | IResolvable | Initial | The edge VTEP VLAN subnet. |
| expansion | IResolvable | Initial | An additional VLAN subnet that can be used to extend VCF capabilities once configured. |
| expansion | IResolvable | Initial | An additional VLAN subnet that can be used to extend VCF capabilities once configured. |
| hcx? | IResolvable | Initial | The HCX VLAN subnet. |
| hcx | string | A unique ID for a network access control list that the HCX VLAN uses. |
| is | boolean | IResolvable | Determines if the HCX VLAN that Amazon EVS provisions is public or private. |
| nsx | IResolvable | Initial | The NSX uplink VLAN subnet. |
| v | IResolvable | Initial | The vMotion VLAN subnet. |
| v | IResolvable | Initial | The vSAN VLAN subnet. |
| v | IResolvable | Initial | The VTEP VLAN subnet. |
| vm | IResolvable | Initial | The VM management VLAN subnet. |
| vmk | IResolvable | Initial | The host VMkernel management VLAN subnet. |
edgeVTep?
Type:
IResolvable | Initial
(optional)
The edge VTEP VLAN subnet.
This VLAN subnet manages traffic flowing between the internal network and external networks, including internet access and other site connections.
expansionVlan1?
Type:
IResolvable | Initial
(optional)
An additional VLAN subnet that can be used to extend VCF capabilities once configured.
For example, you can configure an expansion VLAN subnet to use NSX Federation for centralized management and synchronization of multiple NSX deployments across different locations.
expansionVlan2?
Type:
IResolvable | Initial
(optional)
An additional VLAN subnet that can be used to extend VCF capabilities once configured.
For example, you can configure an expansion VLAN subnet to use NSX Federation for centralized management and synchronization of multiple NSX deployments across different locations.
hcx?
Type:
IResolvable | Initial
(optional)
The HCX VLAN subnet.
This VLAN subnet allows the HCX Interconnnect (IX) and HCX Network Extension (NE) to reach their peers and enable HCX Service Mesh creation.
If you plan to use a public HCX VLAN subnet, the following requirements must be met:
- Must have a /28 netmask and be allocated from the IPAM public pool. Required for HCX internet access configuration.
- The HCX public VLAN CIDR block must be added to the VPC as a secondary CIDR block.
- Must have at least two Elastic IP addresses to be allocated from the public IPAM pool for HCX components.
hcxNetworkAclId?
Type:
string
(optional)
A unique ID for a network access control list that the HCX VLAN uses.
Required when isHcxPublic is set to true .
isHcxPublic?
Type:
boolean | IResolvable
(optional)
Determines if the HCX VLAN that Amazon EVS provisions is public or private.
nsxUpLink?
Type:
IResolvable | Initial
(optional)
The NSX uplink VLAN subnet.
This VLAN subnet allows connectivity to the NSX overlay network.
vMotion?
Type:
IResolvable | Initial
(optional)
The vMotion VLAN subnet.
This VLAN subnet carries traffic for vSphere vMotion.
vSan?
Type:
IResolvable | Initial
(optional)
The vSAN VLAN subnet.
This VLAN subnet carries the communication between ESXi hosts to implement a vSAN shared storage pool.
vTep?
Type:
IResolvable | Initial
(optional)
The VTEP VLAN subnet.
This VLAN subnet handles internal network traffic between virtual machines within a VCF instance.
vmManagement?
Type:
IResolvable | Initial
(optional)
The VM management VLAN subnet.
This VLAN subnet carries traffic for vSphere virtual machines.
vmkManagement?
Type:
IResolvable | Initial
(optional)
The host VMkernel management VLAN subnet.
This VLAN subnet carries traffic for managing ESXi hosts and communicating with VMware vCenter Server.

.NET
Go
Java
Python
TypeScript