Values.CreateHostInputSourceCreates a resource that represents the infrastructure where a third-party provider is installed. The host is used when you create connections to an installed third-party provider type, such as GitHub Enterprise Server. You create one host for all connections to that provider. A host created through the CLI or the SDK is in `PENDING` status by default. You can make its status `AVAILABLE` by setting up the host in the console.
type nonrec t = {name : HostName.t;The name of the host to be created.
*)providerType : ProviderType.t;The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.
*)providerEndpoint : Url.t;The endpoint of the infrastructure to be represented by the host after it is created.
*)vpcConfiguration : VpcConfiguration.t option;The VPC configuration to be provisioned for the host. A VPC must be configured and the infrastructure to be represented by the host must already be connected to the VPC.
*)}val make :
?vpcConfiguration:??? ->
?tags:??? ->
name:HostName.t ->
providerType:ProviderType.t ->
providerEndpoint:Url.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of
[> `Structure of (string * [> `String of TagKey.t ]) list ] list
| `String of HostName.t
| `Structure of
(string
* [> `List of [> `String of SubnetId.t ] list
| `String of VpcId.t ])
list ])
list ]