commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.DeliveryDestinationConfiguration.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
/**
* A structure that contains information about one logs delivery destination.
*/
public class DeliveryDestinationConfiguration private constructor(builder: Builder) {
/**
* The ARN of the Amazon Web Services destination that this delivery destination represents. That Amazon Web Services destination can be a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery stream in Firehose.
*/
public val destinationResourceArn: kotlin.String = requireNotNull(builder.destinationResourceArn) { "A non-null value must be provided for destinationResourceArn" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.DeliveryDestinationConfiguration = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeliveryDestinationConfiguration(")
append("destinationResourceArn=$destinationResourceArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = destinationResourceArn.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 DeliveryDestinationConfiguration
if (destinationResourceArn != other.destinationResourceArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.DeliveryDestinationConfiguration = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the Amazon Web Services destination that this delivery destination represents. That Amazon Web Services destination can be a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery stream in Firehose.
*/
public var destinationResourceArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.DeliveryDestinationConfiguration) : this() {
this.destinationResourceArn = x.destinationResourceArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.DeliveryDestinationConfiguration = DeliveryDestinationConfiguration(this)
internal fun correctErrors(): Builder {
if (destinationResourceArn == null) destinationResourceArn = ""
return this
}
}
}