Values.HostInfoForCreateSourceAn object that represents a host. You cannot use dedicatedHostId and placementGroupId together in the same HostInfoForCreateobject. This results in a ValidationException response.
type nonrec t = {hostName : HostName.t;The DNS hostname of the host. DNS hostnames for hosts must be unique across Amazon EVS environments and within VCF.
*)keyName : KeyName.t;The name of the SSH key that is used to access the host.
*)instanceType : InstanceType.t;The EC2 instance type that represents the host.
*)placementGroupId : PlacementGroupId.t option;The unique ID of the placement group where the host is placed.
*)dedicatedHostId : DedicatedHostId.t option;The unique ID of the Amazon EC2 Dedicated Host.
*)}val make :
?placementGroupId:??? ->
?dedicatedHostId:??? ->
hostName:HostName.t ->
keyName:KeyName.t ->
instanceType:InstanceType.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `Enum of string | `String of HostName.t ]) list ]