commonMain.aws.sdk.kotlin.services.route53.model.QueryLoggingConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53-jvm Show documentation
Show all versions of route53-jvm Show documentation
The AWS SDK for Kotlin client for Route 53
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A complex type that contains information about a configuration for DNS query logging.
*/
public class QueryLoggingConfig private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
*/
public val cloudWatchLogsLogGroupArn: kotlin.String = requireNotNull(builder.cloudWatchLogsLogGroupArn) { "A non-null value must be provided for cloudWatchLogsLogGroupArn" }
/**
* The ID of the hosted zone that CloudWatch Logs is logging queries for.
*/
public val hostedZoneId: kotlin.String = requireNotNull(builder.hostedZoneId) { "A non-null value must be provided for hostedZoneId" }
/**
* The ID for a configuration for DNS query logging.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53.model.QueryLoggingConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("QueryLoggingConfig(")
append("cloudWatchLogsLogGroupArn=$cloudWatchLogsLogGroupArn,")
append("hostedZoneId=$hostedZoneId,")
append("id=$id")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = cloudWatchLogsLogGroupArn.hashCode()
result = 31 * result + (hostedZoneId.hashCode())
result = 31 * result + (id.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 QueryLoggingConfig
if (cloudWatchLogsLogGroupArn != other.cloudWatchLogsLogGroupArn) return false
if (hostedZoneId != other.hostedZoneId) return false
if (id != other.id) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53.model.QueryLoggingConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
*/
public var cloudWatchLogsLogGroupArn: kotlin.String? = null
/**
* The ID of the hosted zone that CloudWatch Logs is logging queries for.
*/
public var hostedZoneId: kotlin.String? = null
/**
* The ID for a configuration for DNS query logging.
*/
public var id: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53.model.QueryLoggingConfig) : this() {
this.cloudWatchLogsLogGroupArn = x.cloudWatchLogsLogGroupArn
this.hostedZoneId = x.hostedZoneId
this.id = x.id
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53.model.QueryLoggingConfig = QueryLoggingConfig(this)
internal fun correctErrors(): Builder {
if (cloudWatchLogsLogGroupArn == null) cloudWatchLogsLogGroupArn = ""
if (hostedZoneId == null) hostedZoneId = ""
if (id == null) id = ""
return this
}
}
}