Module Values.DeleteDirectConnectGatewayAssociationRequestSource

Deletes the association between the specified Direct Connect gateway and virtual private gateway. We recommend that you specify the associationID to delete the association. Alternatively, if you own virtual gateway and a Direct Connect gateway association, you can specify the virtualGatewayId and directConnectGatewayId to delete an association.

Sourcetype nonrec t = {
  1. associationId : DirectConnectGatewayAssociationId.t option;
    (*

    The ID of the Direct Connect gateway association.

    *)
  2. directConnectGatewayId : DirectConnectGatewayId.t option;
    (*

    The ID of the Direct Connect gateway.

    *)
  3. virtualGatewayId : VirtualGatewayId.t option;
    (*

    The ID of the virtual private gateway.

    *)
}
Sourceval make : ?associationId:??? -> ?directConnectGatewayId:??? -> ?virtualGatewayId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DirectConnectGatewayAssociationId.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