Module Values.SegmentDefinitionItemSource

Object holding the segment definition fields.

Sourcetype nonrec t = {
  1. segmentDefinitionName : Name.t option;
    (*

    Name of the segment definition.

    *)
  2. displayName : String1To255.t option;
    (*

    Display name of the segment definition.

    *)
  3. description : SensitiveString1To4000.t option;
    (*

    The description of the segment definition.

    *)
  4. segmentDefinitionArn : SegmentDefinitionArn.t option;
    (*

    The arn of the segment definition.

    *)
  5. createdAt : Timestamp.t option;
    (*

    When the segment definition was created.

    *)
  6. tags : TagMap.t option;
    (*

    The tags belonging to the segment definition.

    *)
  7. segmentType : SegmentType.t option;
    (*

    The segment type. Classic : Segments created using traditional SegmentGroup structure Enhanced : Segments created using SQL queries

    *)
}
Sourceval make : ?segmentDefinitionName:??? -> ?displayName:??? -> ?description:??? -> ?segmentDefinitionArn:??? -> ?createdAt:??? -> ?tags:??? -> ?segmentType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Timestamp of Timestamp.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