commonMain.aws.sdk.kotlin.services.mediapackage.model.ConfigureLogsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediapackage-jvm Show documentation
Show all versions of mediapackage-jvm Show documentation
The AWS SDK for Kotlin client for MediaPackage
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediapackage.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* the option to configure log subscription.
*/
public class ConfigureLogsRequest private constructor(builder: Builder) {
/**
* Configure egress access logging.
*/
public val egressAccessLogs: aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs? = builder.egressAccessLogs
/**
* The ID of the channel to log subscription.
*/
public val id: kotlin.String? = builder.id
/**
* Configure ingress access logging.
*/
public val ingressAccessLogs: aws.sdk.kotlin.services.mediapackage.model.IngressAccessLogs? = builder.ingressAccessLogs
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediapackage.model.ConfigureLogsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ConfigureLogsRequest(")
append("egressAccessLogs=$egressAccessLogs,")
append("id=$id,")
append("ingressAccessLogs=$ingressAccessLogs")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = egressAccessLogs?.hashCode() ?: 0
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (ingressAccessLogs?.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 ConfigureLogsRequest
if (egressAccessLogs != other.egressAccessLogs) return false
if (id != other.id) return false
if (ingressAccessLogs != other.ingressAccessLogs) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediapackage.model.ConfigureLogsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Configure egress access logging.
*/
public var egressAccessLogs: aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs? = null
/**
* The ID of the channel to log subscription.
*/
public var id: kotlin.String? = null
/**
* Configure ingress access logging.
*/
public var ingressAccessLogs: aws.sdk.kotlin.services.mediapackage.model.IngressAccessLogs? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediapackage.model.ConfigureLogsRequest) : this() {
this.egressAccessLogs = x.egressAccessLogs
this.id = x.id
this.ingressAccessLogs = x.ingressAccessLogs
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediapackage.model.ConfigureLogsRequest = ConfigureLogsRequest(this)
/**
* construct an [aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs] inside the given [block]
*/
public fun egressAccessLogs(block: aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs.Builder.() -> kotlin.Unit) {
this.egressAccessLogs = aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.mediapackage.model.IngressAccessLogs] inside the given [block]
*/
public fun ingressAccessLogs(block: aws.sdk.kotlin.services.mediapackage.model.IngressAccessLogs.Builder.() -> kotlin.Unit) {
this.ingressAccessLogs = aws.sdk.kotlin.services.mediapackage.model.IngressAccessLogs.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}