commonMain.aws.sdk.kotlin.services.kinesisanalytics.model.CloudWatchLoggingOptionDescription.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinesisanalytics-jvm Show documentation
Show all versions of kinesisanalytics-jvm Show documentation
The AWS SDK for Kotlin client for Kinesis Analytics
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.kinesisanalytics.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Description of the CloudWatch logging option.
*/
public class CloudWatchLoggingOptionDescription private constructor(builder: Builder) {
/**
* ID of the CloudWatch logging option description.
*/
public val cloudWatchLoggingOptionId: kotlin.String? = builder.cloudWatchLoggingOptionId
/**
* ARN of the CloudWatch log to receive application messages.
*/
public val logStreamArn: kotlin.String = requireNotNull(builder.logStreamArn) { "A non-null value must be provided for logStreamArn" }
/**
* IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role used must have the `PutLogEvents` policy action enabled.
*/
public val roleArn: kotlin.String = requireNotNull(builder.roleArn) { "A non-null value must be provided for roleArn" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.kinesisanalytics.model.CloudWatchLoggingOptionDescription = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CloudWatchLoggingOptionDescription(")
append("cloudWatchLoggingOptionId=$cloudWatchLoggingOptionId,")
append("logStreamArn=$logStreamArn,")
append("roleArn=$roleArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = cloudWatchLoggingOptionId?.hashCode() ?: 0
result = 31 * result + (logStreamArn.hashCode())
result = 31 * result + (roleArn.hashCode())
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 CloudWatchLoggingOptionDescription
if (cloudWatchLoggingOptionId != other.cloudWatchLoggingOptionId) return false
if (logStreamArn != other.logStreamArn) return false
if (roleArn != other.roleArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.kinesisanalytics.model.CloudWatchLoggingOptionDescription = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* ID of the CloudWatch logging option description.
*/
public var cloudWatchLoggingOptionId: kotlin.String? = null
/**
* ARN of the CloudWatch log to receive application messages.
*/
public var logStreamArn: kotlin.String? = null
/**
* IAM ARN of the role to use to send application messages. Note: To write application messages to CloudWatch, the IAM role used must have the `PutLogEvents` policy action enabled.
*/
public var roleArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.kinesisanalytics.model.CloudWatchLoggingOptionDescription) : this() {
this.cloudWatchLoggingOptionId = x.cloudWatchLoggingOptionId
this.logStreamArn = x.logStreamArn
this.roleArn = x.roleArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.kinesisanalytics.model.CloudWatchLoggingOptionDescription = CloudWatchLoggingOptionDescription(this)
internal fun correctErrors(): Builder {
if (logStreamArn == null) logStreamArn = ""
if (roleArn == null) roleArn = ""
return this
}
}
}