Interface CfnEnvironmentPropsMixin.VcfHostnamesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentPropsMixin.VcfHostnamesProperty.Jsii$Proxy
- Enclosing class:
CfnEnvironmentPropsMixin
@Stability(Stable)
public static interface CfnEnvironmentPropsMixin.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.cfnpropertymixins.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentPropsMixin.VcfHostnamesPropertystatic final classAn implementation forCfnEnvironmentPropsMixin.VcfHostnamesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe hostname for VMware Cloud Builder.default StringgetNsx()The VMware NSX hostname.default StringThe hostname for the first NSX Edge node.default StringThe hostname for the second NSX Edge node.default StringThe hostname for the first VMware NSX Manager virtual machine (VM).default StringThe hostname for the second VMware NSX Manager virtual machine (VM).default StringThe hostname for the third VMware NSX Manager virtual machine (VM).default StringThe hostname for SDDC Manager.default StringThe VMware vCenter hostname.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudBuilder
The hostname for VMware Cloud Builder.- See Also:
-
getNsx
The VMware NSX hostname.- See Also:
-
getNsxEdge1
The hostname for the first NSX Edge node.- See Also:
-
getNsxEdge2
The hostname for the second NSX Edge node.- See Also:
-
getNsxManager1
The hostname for the first VMware NSX Manager virtual machine (VM).- See Also:
-
getNsxManager2
The hostname for the second VMware NSX Manager virtual machine (VM).- See Also:
-
getNsxManager3
The hostname for the third VMware NSX Manager virtual machine (VM).- See Also:
-
getSddcManager
The hostname for SDDC Manager.- See Also:
-
getVCenter
The VMware vCenter hostname.- See Also:
-
builder
-