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

commonMain.aws.sdk.kotlin.services.waf.model.GetIpSetResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.waf.model

import aws.smithy.kotlin.runtime.SdkDsl

public class GetIpSetResponse private constructor(builder: Builder) {
    /**
     * Information about the IPSet that you specified in the `GetIPSet` request. For more information, see the following topics:
     * + IPSet: Contains `IPSetDescriptors`, `IPSetId`, and `Name`
     * + `IPSetDescriptors`: Contains an array of IPSetDescriptor objects. Each `IPSetDescriptor` object contains `Type` and `Value`
     */
    public val ipSet: aws.sdk.kotlin.services.waf.model.IpSet? = builder.ipSet

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.waf.model.GetIpSetResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("GetIpSetResponse(")
        append("ipSet=$ipSet")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = ipSet?.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 GetIpSetResponse

        if (ipSet != other.ipSet) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Information about the IPSet that you specified in the `GetIPSet` request. For more information, see the following topics:
         * + IPSet: Contains `IPSetDescriptors`, `IPSetId`, and `Name`
         * + `IPSetDescriptors`: Contains an array of IPSetDescriptor objects. Each `IPSetDescriptor` object contains `Type` and `Value`
         */
        public var ipSet: aws.sdk.kotlin.services.waf.model.IpSet? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.waf.model.GetIpSetResponse) : this() {
            this.ipSet = x.ipSet
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.waf.model.IpSet] inside the given [block]
         */
        public fun ipSet(block: aws.sdk.kotlin.services.waf.model.IpSet.Builder.() -> kotlin.Unit) {
            this.ipSet = aws.sdk.kotlin.services.waf.model.IpSet.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy