EventSeriesArgs

data class EventSeriesArgs(val count: Output<Int>, val lastObservedTime: Output<String>, val state: Output<String>) : ConvertibleToJava<EventSeriesArgs>

EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.

Constructors

Link copied to clipboard
constructor(count: Output<Int>, lastObservedTime: Output<String>, state: Output<String>)

Properties

Link copied to clipboard
val count: Output<Int>

Number of occurrences in this series up to the last heartbeat time

Link copied to clipboard

Time when last Event from the series was seen before last heartbeat.

Link copied to clipboard
val state: Output<String>

Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18

Functions

Link copied to clipboard
open override fun toJava(): EventSeriesArgs