commonMain.aws.sdk.kotlin.services.wafv2.model.ManagedRuleGroupVersion.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
import aws.smithy.kotlin.runtime.time.Instant
/**
* Describes a single version of a managed rule group.
*/
public class ManagedRuleGroupVersion private constructor(builder: Builder) {
/**
* The date and time that the managed rule group owner updated the rule group version information.
*/
public val lastUpdateTimestamp: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdateTimestamp
/**
* The version name.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.wafv2.model.ManagedRuleGroupVersion = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ManagedRuleGroupVersion(")
append("lastUpdateTimestamp=$lastUpdateTimestamp,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lastUpdateTimestamp?.hashCode() ?: 0
result = 31 * result + (name?.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 ManagedRuleGroupVersion
if (lastUpdateTimestamp != other.lastUpdateTimestamp) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.wafv2.model.ManagedRuleGroupVersion = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The date and time that the managed rule group owner updated the rule group version information.
*/
public var lastUpdateTimestamp: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The version name.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.wafv2.model.ManagedRuleGroupVersion) : this() {
this.lastUpdateTimestamp = x.lastUpdateTimestamp
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.wafv2.model.ManagedRuleGroupVersion = ManagedRuleGroupVersion(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy