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