commonMain.aws.sdk.kotlin.services.computeoptimizer.model.GetLicenseRecommendationsResponse.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 GetLicenseRecommendationsResponse private constructor(builder: Builder) {
/**
* An array of objects that describe errors of the request.
*/
public val errors: List? = builder.errors
/**
* An array of objects that describe license recommendations.
*/
public val licenseRecommendations: List? = builder.licenseRecommendations
/**
* The token to use to advance to the next page of license recommendations.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.GetLicenseRecommendationsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetLicenseRecommendationsResponse(")
append("errors=$errors,")
append("licenseRecommendations=$licenseRecommendations,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = errors?.hashCode() ?: 0
result = 31 * result + (licenseRecommendations?.hashCode() ?: 0)
result = 31 * result + (nextToken?.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 GetLicenseRecommendationsResponse
if (errors != other.errors) return false
if (licenseRecommendations != other.licenseRecommendations) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.GetLicenseRecommendationsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of objects that describe errors of the request.
*/
public var errors: List? = null
/**
* An array of objects that describe license recommendations.
*/
public var licenseRecommendations: List? = null
/**
* The token to use to advance to the next page of license recommendations.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.GetLicenseRecommendationsResponse) : this() {
this.errors = x.errors
this.licenseRecommendations = x.licenseRecommendations
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.GetLicenseRecommendationsResponse = GetLicenseRecommendationsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}