commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateProtectConfigurationCountryRuleSetRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateProtectConfigurationCountryRuleSetRequest private constructor(builder: Builder) {
/**
* A map of ProtectConfigurationCountryRuleSetInformation objects that contain the details for the requested NumberCapability. The Key is the two-letter ISO country code. For a list of supported ISO country codes, see [Supported countries and regions (SMS channel)](https://docs.aws.amazon.com/sms-voice/latest/userguide/phone-numbers-sms-by-country.html) in the AWS End User Messaging SMS User Guide.
*/
public val countryRuleSetUpdates: Map? = builder.countryRuleSetUpdates
/**
* The number capability to apply the CountryRuleSetUpdates updates to.
*/
public val numberCapability: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.NumberCapability? = builder.numberCapability
/**
* The unique identifier for the protect configuration.
*/
public val protectConfigurationId: kotlin.String? = builder.protectConfigurationId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateProtectConfigurationCountryRuleSetRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateProtectConfigurationCountryRuleSetRequest(")
append("countryRuleSetUpdates=$countryRuleSetUpdates,")
append("numberCapability=$numberCapability,")
append("protectConfigurationId=$protectConfigurationId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = countryRuleSetUpdates?.hashCode() ?: 0
result = 31 * result + (numberCapability?.hashCode() ?: 0)
result = 31 * result + (protectConfigurationId?.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 UpdateProtectConfigurationCountryRuleSetRequest
if (countryRuleSetUpdates != other.countryRuleSetUpdates) return false
if (numberCapability != other.numberCapability) return false
if (protectConfigurationId != other.protectConfigurationId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateProtectConfigurationCountryRuleSetRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A map of ProtectConfigurationCountryRuleSetInformation objects that contain the details for the requested NumberCapability. The Key is the two-letter ISO country code. For a list of supported ISO country codes, see [Supported countries and regions (SMS channel)](https://docs.aws.amazon.com/sms-voice/latest/userguide/phone-numbers-sms-by-country.html) in the AWS End User Messaging SMS User Guide.
*/
public var countryRuleSetUpdates: Map? = null
/**
* The number capability to apply the CountryRuleSetUpdates updates to.
*/
public var numberCapability: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.NumberCapability? = null
/**
* The unique identifier for the protect configuration.
*/
public var protectConfigurationId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateProtectConfigurationCountryRuleSetRequest) : this() {
this.countryRuleSetUpdates = x.countryRuleSetUpdates
this.numberCapability = x.numberCapability
this.protectConfigurationId = x.protectConfigurationId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.UpdateProtectConfigurationCountryRuleSetRequest = UpdateProtectConfigurationCountryRuleSetRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}