All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.computeoptimizer.model.ExportRdsDatabaseRecommendationsResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.35
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.computeoptimizer.model

import aws.smithy.kotlin.runtime.SdkDsl

public class ExportRdsDatabaseRecommendationsResponse private constructor(builder: Builder) {
    /**
     * The identification number of the export job.
     *
     * To view the status of an export job, use the DescribeRecommendationExportJobs action and specify the job ID.
     */
    public val jobId: kotlin.String? = builder.jobId
    /**
     * Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
     */
    public val s3Destination: aws.sdk.kotlin.services.computeoptimizer.model.S3Destination? = builder.s3Destination

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.ExportRdsDatabaseRecommendationsResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ExportRdsDatabaseRecommendationsResponse(")
        append("jobId=$jobId,")
        append("s3Destination=$s3Destination")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = jobId?.hashCode() ?: 0
        result = 31 * result + (s3Destination?.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 ExportRdsDatabaseRecommendationsResponse

        if (jobId != other.jobId) return false
        if (s3Destination != other.s3Destination) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.ExportRdsDatabaseRecommendationsResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The identification number of the export job.
         *
         * To view the status of an export job, use the DescribeRecommendationExportJobs action and specify the job ID.
         */
        public var jobId: kotlin.String? = null
        /**
         * Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
         */
        public var s3Destination: aws.sdk.kotlin.services.computeoptimizer.model.S3Destination? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.ExportRdsDatabaseRecommendationsResponse) : this() {
            this.jobId = x.jobId
            this.s3Destination = x.s3Destination
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.ExportRdsDatabaseRecommendationsResponse = ExportRdsDatabaseRecommendationsResponse(this)

        /**
         * construct an [aws.sdk.kotlin.services.computeoptimizer.model.S3Destination] inside the given [block]
         */
        public fun s3Destination(block: aws.sdk.kotlin.services.computeoptimizer.model.S3Destination.Builder.() -> kotlin.Unit) {
            this.s3Destination = aws.sdk.kotlin.services.computeoptimizer.model.S3Destination.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy