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

commonMain.aws.sdk.kotlin.services.wafv2.model.CreateRegexPatternSetResponse.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.wafv2.model

import aws.smithy.kotlin.runtime.SdkDsl

public class CreateRegexPatternSetResponse private constructor(builder: Builder) {
    /**
     * High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a `RegexPatternSet`, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.
     */
    public val summary: aws.sdk.kotlin.services.wafv2.model.RegexPatternSetSummary? = builder.summary

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

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

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

        if (summary != other.summary) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * High-level information about a RegexPatternSet, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a `RegexPatternSet`, and the ARN, that you provide to the RegexPatternSetReferenceStatement to use the pattern set in a Rule.
         */
        public var summary: aws.sdk.kotlin.services.wafv2.model.RegexPatternSetSummary? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.wafv2.model.CreateRegexPatternSetResponse) : this() {
            this.summary = x.summary
        }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy