commonMain.aws.sdk.kotlin.services.appsync.model.DeleteResolverRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appsync-jvm Show documentation
Show all versions of appsync-jvm Show documentation
The AWS SDK for Kotlin client for AppSync
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appsync.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DeleteResolverRequest private constructor(builder: Builder) {
/**
* The API ID.
*/
public val apiId: kotlin.String? = builder.apiId
/**
* The resolver field name.
*/
public val fieldName: kotlin.String? = builder.fieldName
/**
* The name of the resolver type.
*/
public val typeName: kotlin.String? = builder.typeName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.DeleteResolverRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DeleteResolverRequest(")
append("apiId=$apiId,")
append("fieldName=$fieldName,")
append("typeName=$typeName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = apiId?.hashCode() ?: 0
result = 31 * result + (fieldName?.hashCode() ?: 0)
result = 31 * result + (typeName?.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 DeleteResolverRequest
if (apiId != other.apiId) return false
if (fieldName != other.fieldName) return false
if (typeName != other.typeName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.DeleteResolverRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The API ID.
*/
public var apiId: kotlin.String? = null
/**
* The resolver field name.
*/
public var fieldName: kotlin.String? = null
/**
* The name of the resolver type.
*/
public var typeName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.DeleteResolverRequest) : this() {
this.apiId = x.apiId
this.fieldName = x.fieldName
this.typeName = x.typeName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.DeleteResolverRequest = DeleteResolverRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}