Module Values_1.AsnAssociationSource

An Autonomous System Number (ASN) and BYOIP CIDR association.

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

    The association's ASN.

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

    The association's CIDR.

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

    The association's status message.

    *)
  4. state : Values_0.AsnAssociationState.t option;
    (*

    The association's state.

    *)
}
Sourceval make : ?asn:??? -> ?cidr:??? -> ?statusMessage:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.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