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

commonMain.aws.sdk.kotlin.services.timestreaminfluxdb.model.CreateDbParameterGroupRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.timestreaminfluxdb.model

import aws.smithy.kotlin.runtime.SdkDsl

public class CreateDbParameterGroupRequest private constructor(builder: Builder) {
    /**
     * A description of the DB parameter group.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The name of the DB parameter group. The name must be unique per customer and per region.
     */
    public val name: kotlin.String? = builder.name
    /**
     * A list of the parameters that comprise the DB parameter group.
     */
    public val parameters: aws.sdk.kotlin.services.timestreaminfluxdb.model.Parameters? = builder.parameters
    /**
     * A list of key-value pairs to associate with the DB parameter group.
     */
    public val tags: Map? = builder.tags

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

    override fun toString(): kotlin.String = buildString {
        append("CreateDbParameterGroupRequest(")
        append("description=$description,")
        append("name=$name,")
        append("parameters=$parameters,")
        append("tags=$tags")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = description?.hashCode() ?: 0
        result = 31 * result + (name?.hashCode() ?: 0)
        result = 31 * result + (parameters?.hashCode() ?: 0)
        result = 31 * result + (tags?.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 CreateDbParameterGroupRequest

        if (description != other.description) return false
        if (name != other.name) return false
        if (parameters != other.parameters) return false
        if (tags != other.tags) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A description of the DB parameter group.
         */
        public var description: kotlin.String? = null
        /**
         * The name of the DB parameter group. The name must be unique per customer and per region.
         */
        public var name: kotlin.String? = null
        /**
         * A list of the parameters that comprise the DB parameter group.
         */
        public var parameters: aws.sdk.kotlin.services.timestreaminfluxdb.model.Parameters? = null
        /**
         * A list of key-value pairs to associate with the DB parameter group.
         */
        public var tags: Map? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.timestreaminfluxdb.model.CreateDbParameterGroupRequest) : this() {
            this.description = x.description
            this.name = x.name
            this.parameters = x.parameters
            this.tags = x.tags
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy