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

commonMain.aws.sdk.kotlin.services.neptune.model.EngineDefaults.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.neptune.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Contains the result of a successful invocation of the DescribeEngineDefaultParameters action.
 */
public class EngineDefaults private constructor(builder: Builder) {
    /**
     * Specifies the name of the DB parameter group family that the engine default parameters apply to.
     */
    public val dbParameterGroupFamily: kotlin.String? = builder.dbParameterGroupFamily
    /**
     * An optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by `MaxRecords` .
     */
    public val marker: kotlin.String? = builder.marker
    /**
     * Contains a list of engine default parameters.
     */
    public val parameters: List? = builder.parameters

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

    override fun toString(): kotlin.String = buildString {
        append("EngineDefaults(")
        append("dbParameterGroupFamily=$dbParameterGroupFamily,")
        append("marker=$marker,")
        append("parameters=$parameters")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = dbParameterGroupFamily?.hashCode() ?: 0
        result = 31 * result + (marker?.hashCode() ?: 0)
        result = 31 * result + (parameters?.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 EngineDefaults

        if (dbParameterGroupFamily != other.dbParameterGroupFamily) return false
        if (marker != other.marker) return false
        if (parameters != other.parameters) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Specifies the name of the DB parameter group family that the engine default parameters apply to.
         */
        public var dbParameterGroupFamily: kotlin.String? = null
        /**
         * An optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by `MaxRecords` .
         */
        public var marker: kotlin.String? = null
        /**
         * Contains a list of engine default parameters.
         */
        public var parameters: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.neptune.model.EngineDefaults) : this() {
            this.dbParameterGroupFamily = x.dbParameterGroupFamily
            this.marker = x.marker
            this.parameters = x.parameters
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy