Interface CfnEnvironment.VcfHostnamesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEnvironment.VcfHostnamesProperty.Jsii$Proxy
Enclosing class:
CfnEnvironment

@Stability(Stable) public static interface CfnEnvironment.VcfHostnamesProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.evs.*;
 VcfHostnamesProperty vcfHostnamesProperty = VcfHostnamesProperty.builder()
         .cloudBuilder("cloudBuilder")
         .nsx("nsx")
         .nsxEdge1("nsxEdge1")
         .nsxEdge2("nsxEdge2")
         .nsxManager1("nsxManager1")
         .nsxManager2("nsxManager2")
         .nsxManager3("nsxManager3")
         .sddcManager("sddcManager")
         .vCenter("vCenter")
         .build();
 

See Also: