commonMain.aws.sdk.kotlin.services.cleanroomsml.model.LogsConfigurationPolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleanroomsml-jvm Show documentation
Show all versions of cleanroomsml-jvm Show documentation
The AWS SDK for Kotlin client for CleanRoomsML
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cleanroomsml.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Provides the information necessary for a user to access the logs.
*/
public class LogsConfigurationPolicy private constructor(builder: Builder) {
/**
* A list of account IDs that are allowed to access the logs.
*/
public val allowedAccountIds: List = requireNotNull(builder.allowedAccountIds) { "A non-null value must be provided for allowedAccountIds" }
/**
* A regular expression pattern that is used to parse the logs and return information that matches the pattern.
*/
public val filterPattern: kotlin.String? = builder.filterPattern
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.LogsConfigurationPolicy = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("LogsConfigurationPolicy(")
append("allowedAccountIds=$allowedAccountIds,")
append("filterPattern=$filterPattern")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = allowedAccountIds.hashCode()
result = 31 * result + (filterPattern?.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 LogsConfigurationPolicy
if (allowedAccountIds != other.allowedAccountIds) return false
if (filterPattern != other.filterPattern) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.LogsConfigurationPolicy = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of account IDs that are allowed to access the logs.
*/
public var allowedAccountIds: List? = null
/**
* A regular expression pattern that is used to parse the logs and return information that matches the pattern.
*/
public var filterPattern: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.LogsConfigurationPolicy) : this() {
this.allowedAccountIds = x.allowedAccountIds
this.filterPattern = x.filterPattern
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.LogsConfigurationPolicy = LogsConfigurationPolicy(this)
internal fun correctErrors(): Builder {
if (allowedAccountIds == null) allowedAccountIds = emptyList()
return this
}
}
}