commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.SearchedLogStream.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Represents the search status of a log stream.
*/
public class SearchedLogStream private constructor(builder: Builder) {
/**
* The name of the log stream.
*/
public val logStreamName: kotlin.String? = builder.logStreamName
/**
* Indicates whether all the events in this log stream were searched.
*/
public val searchedCompletely: kotlin.Boolean? = builder.searchedCompletely
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.SearchedLogStream = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SearchedLogStream(")
append("logStreamName=$logStreamName,")
append("searchedCompletely=$searchedCompletely")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = logStreamName?.hashCode() ?: 0
result = 31 * result + (searchedCompletely?.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 SearchedLogStream
if (logStreamName != other.logStreamName) return false
if (searchedCompletely != other.searchedCompletely) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.SearchedLogStream = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the log stream.
*/
public var logStreamName: kotlin.String? = null
/**
* Indicates whether all the events in this log stream were searched.
*/
public var searchedCompletely: kotlin.Boolean? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.SearchedLogStream) : this() {
this.logStreamName = x.logStreamName
this.searchedCompletely = x.searchedCompletely
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.SearchedLogStream = SearchedLogStream(this)
internal fun correctErrors(): Builder {
return this
}
}
}