Module Values.CidrCollectionSource

A complex type that identifies a CIDR collection.

Sourcetype nonrec t = {
  1. arn : ARN.t option;
    (*

    The ARN of the collection. Can be used to reference the collection in IAM policy or in another Amazon Web Services account.

    *)
  2. id : UUID.t option;
    (*

    The unique ID of the CIDR collection.

    *)
  3. name : CollectionName.t option;
    (*

    The name of a CIDR collection.

    *)
  4. version : CollectionVersion.t option;
    (*

    A sequential counter that Route 53 sets to 1 when you create a CIDR collection and increments by 1 each time you update settings for the CIDR collection.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of CollectionVersion.t | `String of ARN.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