All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.vpclattice.model.UpdateRuleRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.vpclattice.model

import aws.smithy.kotlin.runtime.SdkDsl

public class UpdateRuleRequest private constructor(builder: Builder) {
    /**
     * Information about the action for the specified listener rule.
     */
    public val action: aws.sdk.kotlin.services.vpclattice.model.RuleAction? = builder.action
    /**
     * 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 rule match.
     */
    public val match: aws.sdk.kotlin.services.vpclattice.model.RuleMatch? = builder.match
    /**
     * The rule priority. A listener can't have multiple rules with the same priority.
     */
    public val priority: kotlin.Int? = builder.priority
    /**
     * The ID or Amazon Resource Name (ARN) of the rule.
     */
    public val ruleIdentifier: kotlin.String = requireNotNull(builder.ruleIdentifier) { "A non-null value must be provided for ruleIdentifier" }
    /**
     * 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.UpdateRuleRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("UpdateRuleRequest(")
        append("action=$action,")
        append("listenerIdentifier=$listenerIdentifier,")
        append("match=$match,")
        append("priority=$priority,")
        append("ruleIdentifier=$ruleIdentifier,")
        append("serviceIdentifier=$serviceIdentifier")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = action?.hashCode() ?: 0
        result = 31 * result + (listenerIdentifier.hashCode())
        result = 31 * result + (match?.hashCode() ?: 0)
        result = 31 * result + (priority ?: 0)
        result = 31 * result + (ruleIdentifier.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 UpdateRuleRequest

        if (action != other.action) return false
        if (listenerIdentifier != other.listenerIdentifier) return false
        if (match != other.match) return false
        if (priority != other.priority) return false
        if (ruleIdentifier != other.ruleIdentifier) return false
        if (serviceIdentifier != other.serviceIdentifier) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.UpdateRuleRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * Information about the action for the specified listener rule.
         */
        public var action: aws.sdk.kotlin.services.vpclattice.model.RuleAction? = null
        /**
         * The ID or Amazon Resource Name (ARN) of the listener.
         */
        public var listenerIdentifier: kotlin.String? = null
        /**
         * The rule match.
         */
        public var match: aws.sdk.kotlin.services.vpclattice.model.RuleMatch? = null
        /**
         * The rule priority. A listener can't have multiple rules with the same priority.
         */
        public var priority: kotlin.Int? = null
        /**
         * The ID or Amazon Resource Name (ARN) of the rule.
         */
        public var ruleIdentifier: kotlin.String? = 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.UpdateRuleRequest) : this() {
            this.action = x.action
            this.listenerIdentifier = x.listenerIdentifier
            this.match = x.match
            this.priority = x.priority
            this.ruleIdentifier = x.ruleIdentifier
            this.serviceIdentifier = x.serviceIdentifier
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.vpclattice.model.UpdateRuleRequest = UpdateRuleRequest(this)

        internal fun correctErrors(): Builder {
            if (listenerIdentifier == null) listenerIdentifier = ""
            if (ruleIdentifier == null) ruleIdentifier = ""
            if (serviceIdentifier == null) serviceIdentifier = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy