Module Values.CreateConnectionRequestSource

Creates a connection between a customer network and a specific Direct Connect location. A connection links your internal network to an Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an Direct Connect router. To find the locations for your Region, use DescribeLocations. You can automatically add the new connection to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new connection is allocated on the same Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no connection is created.

Sourcetype nonrec t = {
  1. location : LocationCode.t;
    (*

    The location of the connection.

    *)
  2. bandwidth : Bandwidth.t;
    (*

    The bandwidth of the connection.

    *)
  3. connectionName : ConnectionName.t;
    (*

    The name of the connection.

    *)
  4. lagId : LagId.t option;
    (*

    The ID of the LAG.

    *)
  5. tags : TagList.t option;
    (*

    The tags to associate with the lag.

    *)
  6. providerName : ProviderName.t option;
    (*

    The name of the service provider associated with the requested connection.

    *)
  7. requestMACSec : RequestMACSec.t option;
    (*

    Indicates whether you want the connection to support MAC Security (MACsec). MAC Security (MACsec) is unavailable on hosted connections. For information about MAC Security (MACsec) prerequisites, see MAC Security in Direct Connect in the Direct Connect User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?lagId:??? -> ?tags:??? -> ?providerName:??? -> ?requestMACSec:??? -> location:LocationCode.t -> bandwidth:Bandwidth.t -> connectionName:ConnectionName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of RequestMACSec.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of LocationCode.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