Module Values.EventTrackerSource

Provides information about an event tracker.

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

    The name of the event tracker.

    *)
  2. eventTrackerArn : Arn.t option;
    (*

    The ARN of the event tracker.

    *)
  3. accountId : AccountId.t option;
    (*

    The Amazon Web Services account that owns the event tracker.

    *)
  4. trackingId : TrackingId.t option;
    (*

    The ID of the event tracker. Include this ID in requests to the PutEvents API.

    *)
  5. datasetGroupArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset group that receives the event data.

    *)
  6. status : Status.t option;
    (*

    The status of the event tracker. An event tracker can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED DELETE PENDING > DELETE IN_PROGRESS

    *)
  7. creationDateTime : Date.t option;
    (*

    The date and time (in Unix format) that the event tracker was created.

    *)
  8. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the event tracker was last updated.

    *)
}
Sourceval make : ?name:??? -> ?eventTrackerArn:??? -> ?accountId:??? -> ?trackingId:??? -> ?datasetGroupArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.t | `Timestamp of Date.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