Values.NewBGPPeerSourceInformation about a new BGP peer.
type nonrec t = {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.
*)asnLong : LongAsn.t option;The long ASN for a new BGP peer. The valid range is from 1 to 4294967294.
*)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.
*)addressFamily : AddressFamily.t option;The address family for the BGP peer.
*)amazonAddress : AmazonAddress.t option;The IP address assigned to the Amazon interface.
*)customerAddress : CustomerAddress.t option;The IP address assigned to the customer interface.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of ASN.t
| `Long of LongAsn.t
| `String of BGPAuthKey.t ])
list ]