commonMain.aws.sdk.kotlin.services.computeoptimizer.model.DescribeRecommendationExportJobsRequest.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 DescribeRecommendationExportJobsRequest private constructor(builder: Builder) {
/**
* An array of objects to specify a filter that returns a more specific list of export jobs.
*/
public val filters: List? = builder.filters
/**
* The identification numbers of the export jobs to return.
*
* An export job ID is returned when you create an export using the ExportAutoScalingGroupRecommendations or ExportEC2InstanceRecommendations actions.
*
* All export jobs created in the last seven days are returned if this parameter is omitted.
*/
public val jobIds: List? = builder.jobIds
/**
* The maximum number of export jobs to return with a single request.
*
* To retrieve the remaining results, make another request with the returned `nextToken` value.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* The token to advance to the next page of export jobs.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.DescribeRecommendationExportJobsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeRecommendationExportJobsRequest(")
append("filters=$filters,")
append("jobIds=$jobIds,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = filters?.hashCode() ?: 0
result = 31 * result + (jobIds?.hashCode() ?: 0)
result = 31 * result + (maxResults ?: 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 DescribeRecommendationExportJobsRequest
if (filters != other.filters) return false
if (jobIds != other.jobIds) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.DescribeRecommendationExportJobsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An array of objects to specify a filter that returns a more specific list of export jobs.
*/
public var filters: List? = null
/**
* The identification numbers of the export jobs to return.
*
* An export job ID is returned when you create an export using the ExportAutoScalingGroupRecommendations or ExportEC2InstanceRecommendations actions.
*
* All export jobs created in the last seven days are returned if this parameter is omitted.
*/
public var jobIds: List? = null
/**
* The maximum number of export jobs to return with a single request.
*
* To retrieve the remaining results, make another request with the returned `nextToken` value.
*/
public var maxResults: kotlin.Int? = null
/**
* The token to advance to the next page of export jobs.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.DescribeRecommendationExportJobsRequest) : this() {
this.filters = x.filters
this.jobIds = x.jobIds
this.maxResults = x.maxResults
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.DescribeRecommendationExportJobsRequest = DescribeRecommendationExportJobsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}