All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkSummary.kt Maven / Gradle / Ivy

There is a newer version: 1.3.77
Show newest version
// 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 a service network.
 */
public class ServiceNetworkSummary private constructor(builder: Builder) {
    /**
     * The Amazon Resource Name (ARN) of the service network.
     */
    public val arn: kotlin.String? = builder.arn
    /**
     * The date and time that the service network was created, specified in ISO-8601 format.
     */
    public val createdAt: aws.smithy.kotlin.runtime.time.Instant? = builder.createdAt
    /**
     * The ID of the service network.
     */
    public val id: kotlin.String? = builder.id
    /**
     * The date and time that the service network was last updated, specified in ISO-8601 format.
     */
    public val lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.lastUpdatedAt
    /**
     * The name of the service network.
     */
    public val name: kotlin.String? = builder.name
    /**
     * The number of services associated with the service network.
     */
    public val numberOfAssociatedServices: kotlin.Long? = builder.numberOfAssociatedServices
    /**
     * The number of VPCs associated with the service network.
     */
    public val numberOfAssociatedVpcs: kotlin.Long? = builder.numberOfAssociatedVpcs

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkSummary = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ServiceNetworkSummary(")
        append("arn=$arn,")
        append("createdAt=$createdAt,")
        append("id=$id,")
        append("lastUpdatedAt=$lastUpdatedAt,")
        append("name=$name,")
        append("numberOfAssociatedServices=$numberOfAssociatedServices,")
        append("numberOfAssociatedVpcs=$numberOfAssociatedVpcs")
        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 + (lastUpdatedAt?.hashCode() ?: 0)
        result = 31 * result + (name?.hashCode() ?: 0)
        result = 31 * result + (numberOfAssociatedServices?.hashCode() ?: 0)
        result = 31 * result + (numberOfAssociatedVpcs?.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 ServiceNetworkSummary

        if (arn != other.arn) return false
        if (createdAt != other.createdAt) return false
        if (id != other.id) return false
        if (lastUpdatedAt != other.lastUpdatedAt) return false
        if (name != other.name) return false
        if (numberOfAssociatedServices != other.numberOfAssociatedServices) return false
        if (numberOfAssociatedVpcs != other.numberOfAssociatedVpcs) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkSummary = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Resource Name (ARN) of the service network.
         */
        public var arn: kotlin.String? = null
        /**
         * The date and time that the service network was created, specified in ISO-8601 format.
         */
        public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The ID of the service network.
         */
        public var id: kotlin.String? = null
        /**
         * The date and time that the service network was last updated, specified in ISO-8601 format.
         */
        public var lastUpdatedAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * The name of the service network.
         */
        public var name: kotlin.String? = null
        /**
         * The number of services associated with the service network.
         */
        public var numberOfAssociatedServices: kotlin.Long? = null
        /**
         * The number of VPCs associated with the service network.
         */
        public var numberOfAssociatedVpcs: kotlin.Long? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkSummary) : this() {
            this.arn = x.arn
            this.createdAt = x.createdAt
            this.id = x.id
            this.lastUpdatedAt = x.lastUpdatedAt
            this.name = x.name
            this.numberOfAssociatedServices = x.numberOfAssociatedServices
            this.numberOfAssociatedVpcs = x.numberOfAssociatedVpcs
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.vpclattice.model.ServiceNetworkSummary = ServiceNetworkSummary(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy