Module Values.AccountAttributeSource

A name value pair that describes an aspect of an account.

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

    The name of the attribute.

    *)
  2. attributeValues : AttributeValueList.t option;
    (*

    A list of attribute values.

    *)
}
Sourceval make : ?attributeName:??? -> ?attributeValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of 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