commonMain.aws.sdk.kotlin.services.timestreaminfluxdb.model.UpdateDbInstanceRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timestreaminfluxdb-jvm Show documentation
Show all versions of timestreaminfluxdb-jvm Show documentation
The AWS SDK for Kotlin client for Timestream InfluxDB
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.timestreaminfluxdb.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateDbInstanceRequest private constructor(builder: Builder) {
/**
* The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.
*/
public val dbParameterGroupIdentifier: kotlin.String? = builder.dbParameterGroupIdentifier
/**
* The id of the DB instance.
*/
public val identifier: kotlin.String? = builder.identifier
/**
* Configuration for sending InfluxDB engine logs to send to specified S3 bucket.
*/
public val logDeliveryConfiguration: aws.sdk.kotlin.services.timestreaminfluxdb.model.LogDeliveryConfiguration? = builder.logDeliveryConfiguration
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.timestreaminfluxdb.model.UpdateDbInstanceRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateDbInstanceRequest(")
append("dbParameterGroupIdentifier=$dbParameterGroupIdentifier,")
append("identifier=$identifier,")
append("logDeliveryConfiguration=$logDeliveryConfiguration")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dbParameterGroupIdentifier?.hashCode() ?: 0
result = 31 * result + (identifier?.hashCode() ?: 0)
result = 31 * result + (logDeliveryConfiguration?.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 UpdateDbInstanceRequest
if (dbParameterGroupIdentifier != other.dbParameterGroupIdentifier) return false
if (identifier != other.identifier) return false
if (logDeliveryConfiguration != other.logDeliveryConfiguration) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.timestreaminfluxdb.model.UpdateDbInstanceRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.
*/
public var dbParameterGroupIdentifier: kotlin.String? = null
/**
* The id of the DB instance.
*/
public var identifier: kotlin.String? = null
/**
* Configuration for sending InfluxDB engine logs to send to specified S3 bucket.
*/
public var logDeliveryConfiguration: aws.sdk.kotlin.services.timestreaminfluxdb.model.LogDeliveryConfiguration? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.timestreaminfluxdb.model.UpdateDbInstanceRequest) : this() {
this.dbParameterGroupIdentifier = x.dbParameterGroupIdentifier
this.identifier = x.identifier
this.logDeliveryConfiguration = x.logDeliveryConfiguration
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.timestreaminfluxdb.model.UpdateDbInstanceRequest = UpdateDbInstanceRequest(this)
/**
* construct an [aws.sdk.kotlin.services.timestreaminfluxdb.model.LogDeliveryConfiguration] inside the given [block]
*/
public fun logDeliveryConfiguration(block: aws.sdk.kotlin.services.timestreaminfluxdb.model.LogDeliveryConfiguration.Builder.() -> kotlin.Unit) {
this.logDeliveryConfiguration = aws.sdk.kotlin.services.timestreaminfluxdb.model.LogDeliveryConfiguration.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}