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

commonMain.aws.sdk.kotlin.services.shield.model.EnableApplicationLayerAutomaticResponseRequest.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.shield.model



class EnableApplicationLayerAutomaticResponseRequest private constructor(builder: Builder) {
    /**
     * Specifies the action setting that Shield Advanced should use in the WAF rules that it creates on behalf of the protected resource in response to DDoS attacks. You specify this as part of the configuration for the automatic application layer DDoS mitigation feature, when you enable or update automatic mitigation. Shield Advanced creates the WAF rules in a Shield Advanced-managed rule group, inside the web ACL that you have associated with the resource.
     */
    val action: aws.sdk.kotlin.services.shield.model.ResponseAction? = builder.action
    /**
     * The ARN (Amazon Resource Name) of the resource.
     */
    val resourceArn: kotlin.String? = builder.resourceArn

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

    override fun toString(): kotlin.String = buildString {
        append("EnableApplicationLayerAutomaticResponseRequest(")
        append("action=$action,")
        append("resourceArn=$resourceArn)")
    }

    override fun hashCode(): kotlin.Int {
        var result = action?.hashCode() ?: 0
        result = 31 * result + (resourceArn?.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 EnableApplicationLayerAutomaticResponseRequest

        if (action != other.action) return false
        if (resourceArn != other.resourceArn) return false

        return true
    }

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

    class Builder {
        /**
         * Specifies the action setting that Shield Advanced should use in the WAF rules that it creates on behalf of the protected resource in response to DDoS attacks. You specify this as part of the configuration for the automatic application layer DDoS mitigation feature, when you enable or update automatic mitigation. Shield Advanced creates the WAF rules in a Shield Advanced-managed rule group, inside the web ACL that you have associated with the resource.
         */
        var action: aws.sdk.kotlin.services.shield.model.ResponseAction? = null
        /**
         * The ARN (Amazon Resource Name) of the resource.
         */
        var resourceArn: kotlin.String? = null

        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.shield.model.EnableApplicationLayerAutomaticResponseRequest) : this() {
            this.action = x.action
            this.resourceArn = x.resourceArn
        }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy