Values.CreateEnvironmentConnectorRequestSourceCreates a connector for an Amazon EVS environment. A connector establishes a connection to a VCF appliance, such as vCenter, using a fully qualified domain name and an Amazon Web Services Secrets Manager secret that stores the appliance credentials.
type nonrec t = {clientToken : ClientToken.t option;This parameter is not used in Amazon EVS currently. If you supply input for this parameter, it will have no effect. A unique, case-sensitive identifier that you provide to ensure the idempotency of the connector creation request. If you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
*)environmentId : EnvironmentId.t;A unique ID for the environment to create the connector in.
*)type_ : ConnectorType.t;The type of connector to create.
*)applianceFqdn : ApplianceFqdn.t;The fully qualified domain name (FQDN) of the VCF appliance that the connector targets.
*)secretIdentifier : SecretIdentifier.t;The ARN or name of the Amazon Web Services Secrets Manager secret that stores the credentials for the VCF appliance. Do not use credentials with Administrator privileges. We recommend using a service account with the minimum required permissions.
*)}val make :
?clientToken:??? ->
environmentId:EnvironmentId.t ->
type_:ConnectorType.t ->
applianceFqdn:ApplianceFqdn.t ->
secretIdentifier:SecretIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of ClientToken.t ]) list ]