commonMain.aws.sdk.kotlin.services.databasemigrationservice.model.StartRecommendationsRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databasemigrationservice-jvm Show documentation
Show all versions of databasemigrationservice-jvm Show documentation
The AWS SDK for Kotlin client for Database Migration Service
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.databasemigrationservice.model
import aws.smithy.kotlin.runtime.SdkDsl
public class StartRecommendationsRequest private constructor(builder: Builder) {
/**
* The identifier of the source database to analyze and provide recommendations for.
*/
public val databaseId: kotlin.String? = builder.databaseId
/**
* The settings in JSON format that Fleet Advisor uses to determine target engine recommendations. These parameters include target instance sizing and availability and durability settings. For target instance sizing, Fleet Advisor supports the following two options: total capacity and resource utilization. For availability and durability, Fleet Advisor supports the following two options: production (Multi-AZ deployments) and Dev/Test (Single-AZ deployments).
*/
public val settings: aws.sdk.kotlin.services.databasemigrationservice.model.RecommendationSettings? = builder.settings
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.databasemigrationservice.model.StartRecommendationsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartRecommendationsRequest(")
append("databaseId=$databaseId,")
append("settings=$settings")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = databaseId?.hashCode() ?: 0
result = 31 * result + (settings?.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 StartRecommendationsRequest
if (databaseId != other.databaseId) return false
if (settings != other.settings) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.databasemigrationservice.model.StartRecommendationsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The identifier of the source database to analyze and provide recommendations for.
*/
public var databaseId: kotlin.String? = null
/**
* The settings in JSON format that Fleet Advisor uses to determine target engine recommendations. These parameters include target instance sizing and availability and durability settings. For target instance sizing, Fleet Advisor supports the following two options: total capacity and resource utilization. For availability and durability, Fleet Advisor supports the following two options: production (Multi-AZ deployments) and Dev/Test (Single-AZ deployments).
*/
public var settings: aws.sdk.kotlin.services.databasemigrationservice.model.RecommendationSettings? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.databasemigrationservice.model.StartRecommendationsRequest) : this() {
this.databaseId = x.databaseId
this.settings = x.settings
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.databasemigrationservice.model.StartRecommendationsRequest = StartRecommendationsRequest(this)
/**
* construct an [aws.sdk.kotlin.services.databasemigrationservice.model.RecommendationSettings] inside the given [block]
*/
public fun settings(block: aws.sdk.kotlin.services.databasemigrationservice.model.RecommendationSettings.Builder.() -> kotlin.Unit) {
this.settings = aws.sdk.kotlin.services.databasemigrationservice.model.RecommendationSettings.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy