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

commonMain.aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryRequest.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.iottwinmaker.model



public class ExecuteQueryRequest private constructor(builder: Builder) {
    /**
     * The maximum number of results to return at one time. The default is 50.
     */
    public val maxResults: kotlin.Int? = builder.maxResults
    /**
     * The string that specifies the next page of results.
     */
    public val nextToken: kotlin.String? = builder.nextToken
    /**
     * The query statement.
     */
    public val queryStatement: kotlin.String = requireNotNull(builder.queryStatement) { "A non-null value must be provided for queryStatement" }
    /**
     * The ID of the workspace.
     */
    public val workspaceId: kotlin.String = requireNotNull(builder.workspaceId) { "A non-null value must be provided for workspaceId" }

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

    override fun toString(): kotlin.String = buildString {
        append("ExecuteQueryRequest(")
        append("maxResults=$maxResults,")
        append("nextToken=$nextToken,")
        append("queryStatement=$queryStatement,")
        append("workspaceId=$workspaceId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = maxResults ?: 0
        result = 31 * result + (nextToken?.hashCode() ?: 0)
        result = 31 * result + (queryStatement.hashCode())
        result = 31 * result + (workspaceId.hashCode())
        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 ExecuteQueryRequest

        if (maxResults != other.maxResults) return false
        if (nextToken != other.nextToken) return false
        if (queryStatement != other.queryStatement) return false
        if (workspaceId != other.workspaceId) return false

        return true
    }

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

    public class Builder {
        /**
         * The maximum number of results to return at one time. The default is 50.
         */
        public var maxResults: kotlin.Int? = null
        /**
         * The string that specifies the next page of results.
         */
        public var nextToken: kotlin.String? = null
        /**
         * The query statement.
         */
        public var queryStatement: kotlin.String? = null
        /**
         * The ID of the workspace.
         */
        public var workspaceId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.iottwinmaker.model.ExecuteQueryRequest) : this() {
            this.maxResults = x.maxResults
            this.nextToken = x.nextToken
            this.queryStatement = x.queryStatement
            this.workspaceId = x.workspaceId
        }

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

        internal fun correctErrors(): Builder {
            if (queryStatement == null) queryStatement = ""
            if (workspaceId == null) workspaceId = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy