commonMain.aws.sdk.kotlin.services.neptunegraph.model.GetQueryRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptunegraph.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetQueryRequest private constructor(builder: Builder) {
/**
* The unique identifier of the Neptune Analytics graph.
*/
public val graphIdentifier: kotlin.String? = builder.graphIdentifier
/**
* The ID of the query in question.
*/
public val queryId: kotlin.String? = builder.queryId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.neptunegraph.model.GetQueryRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetQueryRequest(")
append("graphIdentifier=$graphIdentifier,")
append("queryId=$queryId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = graphIdentifier?.hashCode() ?: 0
result = 31 * result + (queryId?.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 GetQueryRequest
if (graphIdentifier != other.graphIdentifier) return false
if (queryId != other.queryId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.neptunegraph.model.GetQueryRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the Neptune Analytics graph.
*/
public var graphIdentifier: kotlin.String? = null
/**
* The ID of the query in question.
*/
public var queryId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.neptunegraph.model.GetQueryRequest) : this() {
this.graphIdentifier = x.graphIdentifier
this.queryId = x.queryId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.neptunegraph.model.GetQueryRequest = GetQueryRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}