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

commonMain.aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeInstancesHealthResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.elasticbeanstalk.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant

/**
 * Detailed health information about the Amazon EC2 instances in an AWS Elastic Beanstalk environment.
 */
public class DescribeInstancesHealthResponse private constructor(builder: Builder) {
    /**
     * Detailed health information about each instance.
     *
     * The output differs slightly between Linux and Windows environments. There is a difference in the members that are supported under the `` type.
     */
    public val instanceHealthList: List? = builder.instanceHealthList
    /**
     * Pagination token for the next page of results, if available.
     */
    public val nextToken: kotlin.String? = builder.nextToken
    /**
     * The date and time that the health information was retrieved.
     */
    public val refreshedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.refreshedAt

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeInstancesHealthResponse(")
        append("instanceHealthList=$instanceHealthList,")
        append("nextToken=$nextToken,")
        append("refreshedAt=$refreshedAt")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = instanceHealthList?.hashCode() ?: 0
        result = 31 * result + (nextToken?.hashCode() ?: 0)
        result = 31 * result + (refreshedAt?.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 DescribeInstancesHealthResponse

        if (instanceHealthList != other.instanceHealthList) return false
        if (nextToken != other.nextToken) return false
        if (refreshedAt != other.refreshedAt) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Detailed health information about each instance.
         *
         * The output differs slightly between Linux and Windows environments. There is a difference in the members that are supported under the `` type.
         */
        public var instanceHealthList: List? = null
        /**
         * Pagination token for the next page of results, if available.
         */
        public var nextToken: kotlin.String? = null
        /**
         * The date and time that the health information was retrieved.
         */
        public var refreshedAt: aws.smithy.kotlin.runtime.time.Instant? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.elasticbeanstalk.model.DescribeInstancesHealthResponse) : this() {
            this.instanceHealthList = x.instanceHealthList
            this.nextToken = x.nextToken
            this.refreshedAt = x.refreshedAt
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy