Module Values.EventDescriptionSource

Describes an event.

Sourcetype nonrec t = {
  1. eventDate : EventDate.t option;
    (*

    The date when the event occurred.

    *)
  2. message : EventMessage.t option;
    (*

    The event message.

    *)
  3. applicationName : ApplicationName.t option;
    (*

    The application associated with the event.

    *)
  4. versionLabel : VersionLabel.t option;
    (*

    The release label for the application version associated with this event.

    *)
  5. templateName : ConfigurationTemplateName.t option;
    (*

    The name of the configuration associated with this event.

    *)
  6. environmentName : EnvironmentName.t option;
    (*

    The name of the environment associated with this event.

    *)
  7. platformArn : PlatformArn.t option;
    (*

    The ARN of the platform version.

    *)
  8. requestId : RequestId.t option;
    (*

    The web service request ID for the activity of this event.

    *)
  9. severity : EventSeverity.t option;
    (*

    The severity level of this event.

    *)
}
Sourceval make : ?eventDate:??? -> ?message:??? -> ?applicationName:??? -> ?versionLabel:??? -> ?templateName:??? -> ?environmentName:??? -> ?platformArn:??? -> ?requestId:??? -> ?severity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EventMessage.t | `Timestamp of EventDate.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