Module Values.CreateEnvironmentConnectorRequestSource

Creates 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.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. environmentId : EnvironmentId.t;
    (*

    A unique ID for the environment to create the connector in.

    *)
  3. type_ : ConnectorType.t;
    (*

    The type of connector to create.

    *)
  4. applianceFqdn : ApplianceFqdn.t;
    (*

    The fully qualified domain name (FQDN) of the VCF appliance that the connector targets.

    *)
  5. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> environmentId:EnvironmentId.t -> type_:ConnectorType.t -> applianceFqdn:ApplianceFqdn.t -> secretIdentifier:SecretIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ClientToken.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t