Module Values_3.AccountAttributeSource

Describes an account attribute.

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

    The name of the account attribute.

    *)
  2. attributeValues : Values_1.AccountAttributeValueList.t option;
    (*

    The values for the account attribute.

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