commonMain.aws.sdk.kotlin.services.vpclattice.model.RuleSummary.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vpclattice-jvm Show documentation
Show all versions of vpclattice-jvm Show documentation
The AWS SDK for Kotlin client for VPC Lattice
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.vpclattice.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
/**
* Summary information about the listener rule.
*/
public class RuleSummary private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the rule.
*/
public val arn: kotlin.String? = builder.arn
/**
* The date and time that the listener rule was created, specified in ISO-8601 format.
*/
public val createdAt: aws.smithy.kotlin.runtime.time.Instant? = builder.createdAt
/**
* The ID of the rule.
*/
public val id: kotlin.String? = builder.id
/**
* Indicates whether this is the default listener rule.
*/
public val isDefault: kotlin.Boolean? = builder.isDefault
/**
* The date and time that the listener rule was last updated, specified in ISO-8601 format.
*/
public val lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedAt
/**
* The name of the rule.
*/
public val name: kotlin.String? = builder.name
/**
* The priority of the rule.
*/
public val priority: kotlin.Int? = builder.priority
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.RuleSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RuleSummary(")
append("arn=$arn,")
append("createdAt=$createdAt,")
append("id=$id,")
append("isDefault=$isDefault,")
append("lastUpdatedAt=$lastUpdatedAt,")
append("name=$name,")
append("priority=$priority")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (createdAt?.hashCode() ?: 0)
result = 31 * result + (id?.hashCode() ?: 0)
result = 31 * result + (isDefault?.hashCode() ?: 0)
result = 31 * result + (lastUpdatedAt?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (priority ?: 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 RuleSummary
if (arn != other.arn) return false
if (createdAt != other.createdAt) return false
if (id != other.id) return false
if (isDefault != other.isDefault) return false
if (lastUpdatedAt != other.lastUpdatedAt) return false
if (name != other.name) return false
if (priority != other.priority) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.RuleSummary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the rule.
*/
public var arn: kotlin.String? = null
/**
* The date and time that the listener rule was created, specified in ISO-8601 format.
*/
public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The ID of the rule.
*/
public var id: kotlin.String? = null
/**
* Indicates whether this is the default listener rule.
*/
public var isDefault: kotlin.Boolean? = null
/**
* The date and time that the listener rule was last updated, specified in ISO-8601 format.
*/
public var lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The name of the rule.
*/
public var name: kotlin.String? = null
/**
* The priority of the rule.
*/
public var priority: kotlin.Int? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.RuleSummary) : this() {
this.arn = x.arn
this.createdAt = x.createdAt
this.id = x.id
this.isDefault = x.isDefault
this.lastUpdatedAt = x.lastUpdatedAt
this.name = x.name
this.priority = x.priority
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.vpclattice.model.RuleSummary = RuleSummary(this)
internal fun correctErrors(): Builder {
return this
}
}
}