commonMain.aws.sdk.kotlin.services.vpclattice.model.BatchUpdateRuleRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.model
import aws.smithy.kotlin.runtime.SdkDsl
public class BatchUpdateRuleRequest private constructor(builder: Builder) {
/**
* The ID or Amazon Resource Name (ARN) of the listener.
*/
public val listenerIdentifier: kotlin.String = requireNotNull(builder.listenerIdentifier) { "A non-null value must be provided for listenerIdentifier" }
/**
* The rules for the specified listener.
*/
public val rules: List = requireNotNull(builder.rules) { "A non-null value must be provided for rules" }
/**
* The ID or Amazon Resource Name (ARN) of the service.
*/
public val serviceIdentifier: kotlin.String = requireNotNull(builder.serviceIdentifier) { "A non-null value must be provided for serviceIdentifier" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.BatchUpdateRuleRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchUpdateRuleRequest(")
append("listenerIdentifier=$listenerIdentifier,")
append("rules=$rules,")
append("serviceIdentifier=$serviceIdentifier")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = listenerIdentifier.hashCode()
result = 31 * result + (rules.hashCode())
result = 31 * result + (serviceIdentifier.hashCode())
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 BatchUpdateRuleRequest
if (listenerIdentifier != other.listenerIdentifier) return false
if (rules != other.rules) return false
if (serviceIdentifier != other.serviceIdentifier) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.BatchUpdateRuleRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID or Amazon Resource Name (ARN) of the listener.
*/
public var listenerIdentifier: kotlin.String? = null
/**
* The rules for the specified listener.
*/
public var rules: List? = null
/**
* The ID or Amazon Resource Name (ARN) of the service.
*/
public var serviceIdentifier: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.BatchUpdateRuleRequest) : this() {
this.listenerIdentifier = x.listenerIdentifier
this.rules = x.rules
this.serviceIdentifier = x.serviceIdentifier
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.BatchUpdateRuleRequest = BatchUpdateRuleRequest(this)
internal fun correctErrors(): Builder {
if (listenerIdentifier == null) listenerIdentifier = ""
if (rules == null) rules = emptyList()
if (serviceIdentifier == null) serviceIdentifier = ""
return this
}
}
}