Module Values.EventTrackerSummarySource

Provides a summary of the properties of an event tracker. For a complete listing, call the DescribeEventTracker API.

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

    The name of the event tracker.

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

    The Amazon Resource Name (ARN) of the event tracker.

    *)
  3. 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

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

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

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

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

    *)
}
Sourceval make : ?name:??? -> ?eventTrackerArn:??? -> ?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