Module Values.UpdateVirtualInterfaceAttributesRequestSource

Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 8500 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.

Sourcetype nonrec t = {
  1. virtualInterfaceId : VirtualInterfaceId.t;
    (*

    The ID of the virtual private interface.

    *)
  2. mtu : MTU.t option;
    (*

    The maximum transmission unit (MTU), in bytes. The supported values are 1500 and 8500. The default value is 1500.

    *)
  3. virtualInterfaceName : VirtualInterfaceName.t option;
    (*

    The name of the virtual private interface.

    *)
}
Sourceval context_ : string
Sourceval make : ?mtu:??? -> ?enableSiteLink:??? -> ?virtualInterfaceName:??? -> virtualInterfaceId:VirtualInterfaceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of EnableSiteLink.t | `Integer of MTU.t | `String of VirtualInterfaceId.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