commonMain.aws.sdk.kotlin.services.computeoptimizer.model.GetEbsVolumeRecommendationsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetEbsVolumeRecommendationsResponse private constructor(builder: Builder) {
/**
* An array of objects that describe errors of the request.
*
* For example, an error is returned if you request recommendations for an unsupported volume.
*/
public val errors: List? = builder.errors
/**
* The token to use to advance to the next page of volume recommendations.
*
* This value is null when there are no more pages of volume recommendations to return.
*/
public val nextToken: kotlin.String? = builder.nextToken
/**
* An array of objects that describe volume recommendations.
*/
public val volumeRecommendations: List? = builder.volumeRecommendations
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.GetEbsVolumeRecommendationsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetEbsVolumeRecommendationsResponse(")
append("errors=$errors,")
append("nextToken=$nextToken,")
append("volumeRecommendations=$volumeRecommendations")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = errors?.hashCode() ?: 0
result = 31 * result + (nextToken?.hashCode() ?: 0)
result = 31 * result + (volumeRecommendations?.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 GetEbsVolumeRecommendationsResponse
if (errors != other.errors) return false
if (nextToken != other.nextToken) return false
if (volumeRecommendations != other.volumeRecommendations) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.GetEbsVolumeRecommendationsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of objects that describe errors of the request.
*
* For example, an error is returned if you request recommendations for an unsupported volume.
*/
public var errors: List? = null
/**
* The token to use to advance to the next page of volume recommendations.
*
* This value is null when there are no more pages of volume recommendations to return.
*/
public var nextToken: kotlin.String? = null
/**
* An array of objects that describe volume recommendations.
*/
public var volumeRecommendations: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.GetEbsVolumeRecommendationsResponse) : this() {
this.errors = x.errors
this.nextToken = x.nextToken
this.volumeRecommendations = x.volumeRecommendations
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.GetEbsVolumeRecommendationsResponse = GetEbsVolumeRecommendationsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}