Module Values_7.AssociateTrunkInterfaceRequestSource

Associates a branch network interface with a trunk network interface. Before you create the association, use CreateNetworkInterface command and set the interface type to trunk. You must also create a network interface for each branch network interface that you want to associate with the trunk network interface.

Sourcetype nonrec t = {
  1. branchInterfaceId : Values_0.NetworkInterfaceId.t;
    (*

    The ID of the branch network interface.

    *)
  2. trunkInterfaceId : Values_0.NetworkInterfaceId.t;
    (*

    The ID of the trunk network interface.

    *)
  3. vlanId : Values_0.Integer.t option;
    (*

    The ID of the VLAN. This applies to the VLAN protocol.

    *)
  4. greKey : Values_0.Integer.t option;
    (*

    The application key. This applies to the GRE protocol.

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

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

    *)
  6. dryRun : Values_0.Boolean.t option;
    (*

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

    *)
}
Sourceval context_ : string
Sourceval make : ?vlanId:??? -> ?greKey:??? -> ?clientToken:??? -> ?dryRun:??? -> branchInterfaceId:Values_0.NetworkInterfaceId.t -> trunkInterfaceId:Values_0.NetworkInterfaceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Values_0.Integer.t | `String of Values_0.NetworkInterfaceId.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