Interface CfnEnvironmentPropsMixin.HostInfoForCreateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnvironmentPropsMixin.HostInfoForCreateProperty.Jsii$Proxy
- Enclosing class:
CfnEnvironmentPropsMixin
@Stability(Stable)
public static interface CfnEnvironmentPropsMixin.HostInfoForCreateProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents a host.
You cannot use
dedicatedHostIdandplacementGroupIdtogether in the sameHostInfoForCreateobject. This results in aValidationExceptionresponse.
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.*;
HostInfoForCreateProperty hostInfoForCreateProperty = HostInfoForCreateProperty.builder()
.dedicatedHostId("dedicatedHostId")
.hostName("hostName")
.instanceType("instanceType")
.keyName("keyName")
.placementGroupId("placementGroupId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnvironmentPropsMixin.HostInfoForCreatePropertystatic final classAn implementation forCfnEnvironmentPropsMixin.HostInfoForCreateProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe unique ID of the Amazon EC2 Dedicated Host.default StringThe DNS hostname of the host.default StringThe EC2 instance type that represents the host.default StringThe name of the SSH key that is used to access the host.default StringThe unique ID of the placement group where the host is placed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDedicatedHostId
The unique ID of the Amazon EC2 Dedicated Host.- See Also:
-
getHostName
The DNS hostname of the host.DNS hostnames for hosts must be unique across Amazon EVS environments and within VCF.
- See Also:
-
getInstanceType
The EC2 instance type that represents the host.- See Also:
-
getKeyName
The name of the SSH key that is used to access the host.- See Also:
-
getPlacementGroupId
The unique ID of the placement group where the host is placed.- See Also:
-
builder
-