commonMain.aws.sdk.kotlin.services.shield.model.UpdateApplicationLayerAutomaticResponseRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.shield.model
public class UpdateApplicationLayerAutomaticResponseRequest 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.
*/
public val action: aws.sdk.kotlin.services.shield.model.ResponseAction? = builder.action
/**
* The ARN (Amazon Resource Name) of the resource.
*/
public val resourceArn: kotlin.String? = builder.resourceArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.shield.model.UpdateApplicationLayerAutomaticResponseRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateApplicationLayerAutomaticResponseRequest(")
append("action=$action,")
append("resourceArn=$resourceArn")
append(")")
}
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 UpdateApplicationLayerAutomaticResponseRequest
if (action != other.action) return false
if (resourceArn != other.resourceArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.shield.model.UpdateApplicationLayerAutomaticResponseRequest = Builder(this).apply(block).build()
public 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.
*/
public var action: aws.sdk.kotlin.services.shield.model.ResponseAction? = null
/**
* The ARN (Amazon Resource Name) of the resource.
*/
public var resourceArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.shield.model.UpdateApplicationLayerAutomaticResponseRequest) : this() {
this.action = x.action
this.resourceArn = x.resourceArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.shield.model.UpdateApplicationLayerAutomaticResponseRequest = UpdateApplicationLayerAutomaticResponseRequest(this)
/**
* construct an [aws.sdk.kotlin.services.shield.model.ResponseAction] inside the given [block]
*/
public 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