commonMain.aws.sdk.kotlin.services.applicationautoscaling.model.DescribeScalingPoliciesResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationautoscaling-jvm Show documentation
Show all versions of applicationautoscaling-jvm Show documentation
The AWS Kotlin client for Application Auto Scaling
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.applicationautoscaling.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeScalingPoliciesResponse 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 scaling policies.
*/
public val scalingPolicies: List? = builder.scalingPolicies
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.applicationautoscaling.model.DescribeScalingPoliciesResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeScalingPoliciesResponse(")
append("nextToken=$nextToken,")
append("scalingPolicies=$scalingPolicies")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = nextToken?.hashCode() ?: 0
result = 31 * result + (scalingPolicies?.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 DescribeScalingPoliciesResponse
if (nextToken != other.nextToken) return false
if (scalingPolicies != other.scalingPolicies) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.applicationautoscaling.model.DescribeScalingPoliciesResponse = Builder(this).apply(block).build()
@SdkDsl
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 scaling policies.
*/
public var scalingPolicies: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.applicationautoscaling.model.DescribeScalingPoliciesResponse) : this() {
this.nextToken = x.nextToken
this.scalingPolicies = x.scalingPolicies
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.applicationautoscaling.model.DescribeScalingPoliciesResponse = DescribeScalingPoliciesResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}