Values.CreateConnectionRequestSourceInitiates the process to create a Connection across the specified Environment. The Environment dictates the specified partner and location to which the other end of the connection should attach. You can see a list of the available Environments by calling ListEnvironments The Attach Point specifies where within the AWS Network your connection will logically connect. After a successful call to this method, the resulting Connection will return an Activation Key which will need to be brought to the specific partner's portal to confirm the Connection on both sides. (See Environment$activationPageUrl for a direct link to the partner portal).
type nonrec t = {description : ConnectionDescription.t option;A description to distinguish this Connection.
*)bandwidth : ConnectionBandwidth.t;The desired bandwidth of the requested Connection
*)attachPoint : AttachPoint.t;The Attach Point to which the connection should be associated."
*)environmentId : EnvironmentId.t;The identifier of the Environment across which this Connection should be created. The available Environment objects can be determined using ListEnvironments.
*)remoteAccount : RemoteAccountIdentifier.t option;Account and/or principal identifying information that can be verified by the partner of this specific Environment.
*)clientToken : String_.t option;Idempotency token used for the request.
*)}val make :
?description:??? ->
?remoteAccount:??? ->
?tags:??? ->
?clientToken:??? ->
bandwidth:ConnectionBandwidth.t ->
attachPoint:AttachPoint.t ->
environmentId:EnvironmentId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of ConnectionDescription.t
| `Structure of
(string * [> `String of DirectConnectGatewayAttachPoint.t ]) list ])
list ]