Module Values.AcceptConnectionProposalRequestSource

Accepts a connection proposal which was generated at a supported partner's portal. The proposal contains the Environment and bandwidth that were chosen on the partner's portal and cannot be modified. Upon accepting the proposal a connection will be made between the AWS network as accessed via the selected Attach Point and the network previously selected network on the partner's portal.

Sourcetype nonrec t = {
  1. attachPoint : AttachPoint.t;
    (*

    The Attach Point to which the connection should be associated.

    *)
  2. activationKey : ActivationKey.t;
    (*

    An Activation Key that was generated on a supported partner's portal. This key captures the desired parameters from the initial creation request. The details of this request can be described using with DescribeConnectionProposal.

    *)
  3. description : ConnectionDescription.t option;
    (*

    A description to distinguish this Connection.

    *)
  4. tags : TagMap.t option;
    (*

    The tags to associate with the resulting Connection.

    *)
  5. clientToken : String_.t option;
    (*

    Idempotency token used for the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?clientToken:??? -> attachPoint:AttachPoint.t -> activationKey:ActivationKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ActivationKey.t | `Structure of (string * [> `String of DirectConnectGatewayAttachPoint.t ]) list ]) 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