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

commonMain.aws.sdk.kotlin.services.autoscalingplans.model.DescribeScalingPlanResourcesResponse.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.autoscalingplans.model



public class DescribeScalingPlanResourcesResponse private constructor(builder: Builder) {
    /**
     * The token required to get the next set of results. This value is `null` if there are no more results to return.
     */
    public val nextToken: kotlin.String? = builder.nextToken
    /**
     * Information about the scalable resources.
     */
    public val scalingPlanResources: List? = builder.scalingPlanResources

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

    override fun toString(): kotlin.String = buildString {
        append("DescribeScalingPlanResourcesResponse(")
        append("nextToken=$nextToken,")
        append("scalingPlanResources=$scalingPlanResources")
        append(")")
    }

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

        if (nextToken != other.nextToken) return false
        if (scalingPlanResources != other.scalingPlanResources) return false

        return true
    }

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

    public class Builder {
        /**
         * The token required to get the next set of results. This value is `null` if there are no more results to return.
         */
        public var nextToken: kotlin.String? = null
        /**
         * Information about the scalable resources.
         */
        public var scalingPlanResources: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.autoscalingplans.model.DescribeScalingPlanResourcesResponse) : this() {
            this.nextToken = x.nextToken
            this.scalingPlanResources = x.scalingPlanResources
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.autoscalingplans.model.DescribeScalingPlanResourcesResponse = DescribeScalingPlanResourcesResponse(this)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy