Module Values.EventTriggerSummaryItemSource

The summary of the event trigger.

Sourcetype nonrec t = {
  1. objectTypeName : TypeName.t option;
    (*

    The unique name of the object type.

    *)
  2. eventTriggerName : Name.t option;
    (*

    The unique name of the event trigger.

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

    The description of the event trigger.

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

    The timestamp of when the event trigger was created.

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

    The timestamp of when the event trigger was most recently updated.

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

    An array of key-value pairs to apply to this resource.

    *)
}
Sourceval make : ?objectTypeName:??? -> ?eventTriggerName:??? -> ?description:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of TypeName.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