commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.OutputLogEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatchlogs-jvm Show documentation
Show all versions of cloudwatchlogs-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch Logs
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Represents a log event.
*/
public class OutputLogEvent private constructor(builder: Builder) {
/**
* The time the event was ingested, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
*/
public val ingestionTime: kotlin.Long? = builder.ingestionTime
/**
* The data contained in the log event.
*/
public val message: kotlin.String? = builder.message
/**
* The time the event occurred, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
*/
public val timestamp: kotlin.Long? = builder.timestamp
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.OutputLogEvent = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("OutputLogEvent(")
append("ingestionTime=$ingestionTime,")
append("message=$message,")
append("timestamp=$timestamp")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = ingestionTime?.hashCode() ?: 0
result = 31 * result + (message?.hashCode() ?: 0)
result = 31 * result + (timestamp?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as OutputLogEvent
if (ingestionTime != other.ingestionTime) return false
if (message != other.message) return false
if (timestamp != other.timestamp) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.OutputLogEvent = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The time the event was ingested, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
*/
public var ingestionTime: kotlin.Long? = null
/**
* The data contained in the log event.
*/
public var message: kotlin.String? = null
/**
* The time the event occurred, expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
*/
public var timestamp: kotlin.Long? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.OutputLogEvent) : this() {
this.ingestionTime = x.ingestionTime
this.message = x.message
this.timestamp = x.timestamp
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.OutputLogEvent = OutputLogEvent(this)
internal fun correctErrors(): Builder {
return this
}
}
}