Values.UpdateConnectionRequestSourceModifies an existing connection. Currently we support modifications to the connection's description and/or bandwidth.
type nonrec t = {identifier : ConnectionId.t;The identifier of the Connection that should be updated.
*)description : ConnectionDescription.t option;An updated description to apply to the Connection
*)bandwidth : ConnectionBandwidth.t option;Request a new bandwidth size on the given Connection. Note that changes to the size may be subject to additional policy, and does require the remote partner provider to acknowledge and permit this new bandwidth size.
*)clientToken : String_.t option;Idempotency token used for the request.
*)}val make :
?description:??? ->
?bandwidth:??? ->
?clientToken:??? ->
identifier:ConnectionId.t ->
unit ->
t