commonMain.aws.sdk.kotlin.services.wafv2.model.DeleteFirewallManagerRuleGroupsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wafv2-jvm Show documentation
Show all versions of wafv2-jvm Show documentation
The AWS Kotlin client for WAFV2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.wafv2.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteFirewallManagerRuleGroupsResponse private constructor(builder: Builder) {
/**
* A token used for optimistic locking. WAF returns a token to your `get` and `list` requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like `update` and `delete`. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a `WAFOptimisticLockException`. If this happens, perform another `get`, and use the new token returned by that operation.
*/
public val nextWebAclLockToken: kotlin.String? = builder.nextWebAclLockToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wafv2.model.DeleteFirewallManagerRuleGroupsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteFirewallManagerRuleGroupsResponse(")
append("nextWebAclLockToken=$nextWebAclLockToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = nextWebAclLockToken?.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 DeleteFirewallManagerRuleGroupsResponse
if (nextWebAclLockToken != other.nextWebAclLockToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wafv2.model.DeleteFirewallManagerRuleGroupsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A token used for optimistic locking. WAF returns a token to your `get` and `list` requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like `update` and `delete`. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a `WAFOptimisticLockException`. If this happens, perform another `get`, and use the new token returned by that operation.
*/
public var nextWebAclLockToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wafv2.model.DeleteFirewallManagerRuleGroupsResponse) : this() {
this.nextWebAclLockToken = x.nextWebAclLockToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wafv2.model.DeleteFirewallManagerRuleGroupsResponse = DeleteFirewallManagerRuleGroupsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy