Module Values.NewBGPPeerSource

Information about a new BGP peer.

Sourcetype nonrec t = {
  1. asn : ASN.t option;
    (*

    The autonomous system number (ASN). The valid range is from 1 to 2147483646 for Border Gateway Protocol (BGP) configuration. If you provide a number greater than the maximum, an error is returned. Use asnLong instead.

    *)
  2. asnLong : LongAsn.t option;
    (*

    The long ASN for a new BGP peer. The valid range is from 1 to 4294967294.

    *)
  3. authKey : BGPAuthKey.t option;
    (*

    The authentication key for BGP configuration. This string has a minimum length of 6 characters and and a maximun lenth of 80 characters.

    *)
  4. addressFamily : AddressFamily.t option;
    (*

    The address family for the BGP peer.

    *)
  5. amazonAddress : AmazonAddress.t option;
    (*

    The IP address assigned to the Amazon interface.

    *)
  6. customerAddress : CustomerAddress.t option;
    (*

    The IP address assigned to the customer interface.

    *)
}
Sourceval make : ?asn:??? -> ?asnLong:??? -> ?authKey:??? -> ?addressFamily:??? -> ?amazonAddress:??? -> ?customerAddress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ASN.t | `Long of LongAsn.t | `String of BGPAuthKey.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