commonMain.aws.sdk.kotlin.services.wafv2.model.CreateWebAclResponse.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 CreateWebAclResponse private constructor(builder: Builder) {
/**
* High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a `WebACL`, and the ARN, that you provide to operations like AssociateWebACL.
*/
public val summary: aws.sdk.kotlin.services.wafv2.model.WebAclSummary? = builder.summary
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wafv2.model.CreateWebAclResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateWebAclResponse(")
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 CreateWebAclResponse
if (summary != other.summary) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wafv2.model.CreateWebAclResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* High-level information about a WebACL, returned by operations like create and list. This provides information like the ID, that you can use to retrieve and manage a `WebACL`, and the ARN, that you provide to operations like AssociateWebACL.
*/
public var summary: aws.sdk.kotlin.services.wafv2.model.WebAclSummary? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wafv2.model.CreateWebAclResponse) : this() {
this.summary = x.summary
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wafv2.model.CreateWebAclResponse = CreateWebAclResponse(this)
/**
* construct an [aws.sdk.kotlin.services.wafv2.model.WebAclSummary] inside the given [block]
*/
public fun summary(block: aws.sdk.kotlin.services.wafv2.model.WebAclSummary.Builder.() -> kotlin.Unit) {
this.summary = aws.sdk.kotlin.services.wafv2.model.WebAclSummary.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy