Module Values.ResourceAttributeSource

Attribute associated with a resource. Note the corresponding format required per type listed below: IPV4 x.x.x.x where x is an integer in the range [0,255] IPV6 y : y : y : y : y : y : y : y where y is a hexadecimal between 0 and FFFF. [0, FFFF] MAC_ADDRESS ^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$ FQDN ^[^<>{}\\\\/?,=\\p{Cntrl}]{1,256}$

Sourcetype nonrec t = {
  1. type_ : ResourceAttributeType.t;
    (*

    Type of resource.

    *)
  2. value : ResourceAttributeValue.t;
    (*

    Value of the resource type.

    *)
}
Sourceval context_ : string
Sourceval make : type_:ResourceAttributeType.t -> value:ResourceAttributeValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceAttributeValue.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