Module Values_0.SegmentAttributeValue

A value for a segment attribute. This is structured as a map where the key is valueString and the value is a string.

Sourcetype nonrec t = {
  1. valueString : SegmentAttributeValueString.t option;
    (*

    The value of a segment attribute.

    *)
  2. valueMap : SegmentAttributeValueMap.t option;
    (*

    The value of a segment attribute.

    *)
  3. valueInteger : SegmentAttributeValueInteger.t option;
    (*

    The value of a segment attribute.

    *)
  4. valueList : SegmentAttributeValueList.t option;
    (*

    The value of a segment attribute. This is only supported for system-defined attributes, not for user-defined attributes.

    *)
  5. valueArn : SegmentAttributeValueString.t option;
    (*

    The value of a segment attribute that has to be a valid ARN. This is only supported for system-defined attributes, not for user-defined attributes.

    *)
}
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t