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