commonMain.aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs.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
/**
* Configure egress access logging.
*/
public class EgressAccessLogs private constructor(builder: Builder) {
/**
* Customize the log group name.
*/
public val logGroupName: kotlin.String? = builder.logGroupName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EgressAccessLogs(")
append("logGroupName=$logGroupName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = logGroupName?.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 EgressAccessLogs
if (logGroupName != other.logGroupName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Customize the log group name.
*/
public var logGroupName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs) : this() {
this.logGroupName = x.logGroupName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediapackage.model.EgressAccessLogs = EgressAccessLogs(this)
internal fun correctErrors(): Builder {
return this
}
}
}