Module Values_2.TrunkInterfaceAssociationSource

Information about an association between a branch network interface with a trunk network interface.

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

    The ID of the association.

    *)
  2. branchInterfaceId : Values_0.String_.t option;
    (*

    The ID of the branch network interface.

    *)
  3. trunkInterfaceId : Values_0.String_.t option;
    (*

    The ID of the trunk network interface.

    *)
  4. interfaceProtocol : Values_1.InterfaceProtocolType.t option;
    (*

    The interface protocol. Valid values are VLAN and GRE.

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

    The ID of the VLAN when you use the VLAN protocol.

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

    The application key when you use the GRE protocol.

    *)
  7. tags : Values_0.TagList.t option;
    (*

    The tags for the trunk interface association.

    *)
}
Sourceval make : ?associationId:??? -> ?branchInterfaceId:??? -> ?trunkInterfaceId:??? -> ?interfaceProtocol:??? -> ?vlanId:??? -> ?greKey:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_1.TrunkInterfaceAssociationId.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