Module Values.ConfigurationEventSource

The event information.

Sourcetype nonrec t = {
  1. resourceGroupName : ResourceGroupName.t option;
    (*

    The name of the resource group of the application to which the configuration event belongs.

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

    The Amazon Web Services account ID for the owner of the application to which the configuration event belongs.

    *)
  3. monitoredResourceARN : ConfigurationEventMonitoredResourceARN.t option;
    (*

    The resource monitored by Application Insights.

    *)
  4. eventStatus : ConfigurationEventStatus.t option;
    (*

    The status of the configuration update event. Possible values include INFO, WARN, and ERROR.

    *)
  5. eventResourceType : ConfigurationEventResourceType.t option;
    (*

    The resource type that Application Insights attempted to configure, for example, CLOUDWATCH_ALARM.

    *)
  6. eventTime : ConfigurationEventTime.t option;
    (*

    The timestamp of the event.

    *)
  7. eventDetail : ConfigurationEventDetail.t option;
    (*

    The details of the event in plain text.

    *)
  8. eventResourceName : ConfigurationEventResourceName.t option;
    (*

    The name of the resource Application Insights attempted to configure.

    *)
}
Sourceval make : ?resourceGroupName:??? -> ?accountId:??? -> ?monitoredResourceARN:??? -> ?eventStatus:??? -> ?eventResourceType:??? -> ?eventTime:??? -> ?eventDetail:??? -> ?eventResourceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceGroupName.t | `Timestamp of ConfigurationEventTime.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