commonMain.aws.sdk.kotlin.services.firehose.model.CloudWatchLoggingOptions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the Amazon CloudWatch logging options for your Firehose stream.
*/
public class CloudWatchLoggingOptions private constructor(builder: Builder) {
/**
* Enables or disables CloudWatch logging.
*/
public val enabled: kotlin.Boolean? = builder.enabled
/**
* The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.
*/
public val logGroupName: kotlin.String? = builder.logGroupName
/**
* The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.
*/
public val logStreamName: kotlin.String? = builder.logStreamName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.firehose.model.CloudWatchLoggingOptions = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CloudWatchLoggingOptions(")
append("enabled=$enabled,")
append("logGroupName=$logGroupName,")
append("logStreamName=$logStreamName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = enabled?.hashCode() ?: 0
result = 31 * result + (logGroupName?.hashCode() ?: 0)
result = 31 * result + (logStreamName?.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 CloudWatchLoggingOptions
if (enabled != other.enabled) return false
if (logGroupName != other.logGroupName) return false
if (logStreamName != other.logStreamName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.firehose.model.CloudWatchLoggingOptions = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Enables or disables CloudWatch logging.
*/
public var enabled: kotlin.Boolean? = null
/**
* The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.
*/
public var logGroupName: kotlin.String? = null
/**
* The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.
*/
public var logStreamName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.firehose.model.CloudWatchLoggingOptions) : this() {
this.enabled = x.enabled
this.logGroupName = x.logGroupName
this.logStreamName = x.logStreamName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.firehose.model.CloudWatchLoggingOptions = CloudWatchLoggingOptions(this)
internal fun correctErrors(): Builder {
return this
}
}
}