interface VcfHostnamesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EVS.Mixins.CfnEnvironmentPropsMixin.VcfHostnamesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevs/mixins#CfnEnvironmentPropsMixin_VcfHostnamesProperty |
Java | software.amazon.awscdk.mixins.preview.services.evs.mixins.CfnEnvironmentPropsMixin.VcfHostnamesProperty |
Python | aws_cdk.mixins_preview.aws_evs.mixins.CfnEnvironmentPropsMixin.VcfHostnamesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evs » mixins » CfnEnvironmentPropsMixin » VcfHostnamesProperty |
The DNS hostnames that Amazon EVS uses to install VMware vCenter Server, NSX, SDDC Manager, and Cloud Builder.
Each hostname must be unique, and resolve to a domain name that you've registered in your DNS service of choice. Hostnames cannot be changed.
VMware VCF requires the deployment of two NSX Edge nodes, and three NSX Manager virtual machines.
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 vcfHostnamesProperty: evs_mixins.CfnEnvironmentPropsMixin.VcfHostnamesProperty = {
cloudBuilder: 'cloudBuilder',
nsx: 'nsx',
nsxEdge1: 'nsxEdge1',
nsxEdge2: 'nsxEdge2',
nsxManager1: 'nsxManager1',
nsxManager2: 'nsxManager2',
nsxManager3: 'nsxManager3',
sddcManager: 'sddcManager',
vCenter: 'vCenter',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | The hostname for VMware Cloud Builder. |
| nsx? | string | The VMware NSX hostname. |
| nsx | string | The hostname for the first NSX Edge node. |
| nsx | string | The hostname for the second NSX Edge node. |
| nsx | string | The hostname for the first VMware NSX Manager virtual machine (VM). |
| nsx | string | The hostname for the second VMware NSX Manager virtual machine (VM). |
| nsx | string | The hostname for the third VMware NSX Manager virtual machine (VM). |
| sddc | string | The hostname for SDDC Manager. |
| v | string | The VMware vCenter hostname. |
cloudBuilder?
Type:
string
(optional)
The hostname for VMware Cloud Builder.
nsx?
Type:
string
(optional)
The VMware NSX hostname.
nsxEdge1?
Type:
string
(optional)
The hostname for the first NSX Edge node.
nsxEdge2?
Type:
string
(optional)
The hostname for the second NSX Edge node.
nsxManager1?
Type:
string
(optional)
The hostname for the first VMware NSX Manager virtual machine (VM).
nsxManager2?
Type:
string
(optional)
The hostname for the second VMware NSX Manager virtual machine (VM).
nsxManager3?
Type:
string
(optional)
The hostname for the third VMware NSX Manager virtual machine (VM).
sddcManager?
Type:
string
(optional)
The hostname for SDDC Manager.
vCenter?
Type:
string
(optional)
The VMware vCenter hostname.

.NET
Go
Java
Python
TypeScript