commonMain.aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetReputationOptionsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointemail-jvm Show documentation
Show all versions of pinpointemail-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint Email
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointemail.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* A request to enable or disable tracking of reputation metrics for a configuration set.
*/
public class PutConfigurationSetReputationOptionsRequest private constructor(builder: Builder) {
/**
* The name of the configuration set that you want to enable or disable reputation metric tracking for.
*/
public val configurationSetName: kotlin.String? = builder.configurationSetName
/**
* If `true`, tracking of reputation metrics is enabled for the configuration set. If `false`, tracking of reputation metrics is disabled for the configuration set.
*/
public val reputationMetricsEnabled: kotlin.Boolean? = builder.reputationMetricsEnabled
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetReputationOptionsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutConfigurationSetReputationOptionsRequest(")
append("configurationSetName=$configurationSetName,")
append("reputationMetricsEnabled=$reputationMetricsEnabled")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = configurationSetName?.hashCode() ?: 0
result = 31 * result + (reputationMetricsEnabled?.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 PutConfigurationSetReputationOptionsRequest
if (configurationSetName != other.configurationSetName) return false
if (reputationMetricsEnabled != other.reputationMetricsEnabled) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetReputationOptionsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the configuration set that you want to enable or disable reputation metric tracking for.
*/
public var configurationSetName: kotlin.String? = null
/**
* If `true`, tracking of reputation metrics is enabled for the configuration set. If `false`, tracking of reputation metrics is disabled for the configuration set.
*/
public var reputationMetricsEnabled: kotlin.Boolean? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetReputationOptionsRequest) : this() {
this.configurationSetName = x.configurationSetName
this.reputationMetricsEnabled = x.reputationMetricsEnabled
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointemail.model.PutConfigurationSetReputationOptionsRequest = PutConfigurationSetReputationOptionsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}