commonMain.aws.sdk.kotlin.services.appsync.model.GetDataSourceIntrospectionRequest.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 GetDataSourceIntrospectionRequest private constructor(builder: Builder) {
/**
* A boolean flag that determines whether SDL should be generated for introspected types or not. If set to `true`, each model will contain an `sdl` property that contains the SDL for that type. The SDL only contains the type data and no additional metadata or directives.
*/
public val includeModelsSdl: kotlin.Boolean? = builder.includeModelsSdl
/**
* The introspection ID. Each introspection contains a unique ID that can be used to reference the instrospection record.
*/
public val introspectionId: kotlin.String? = builder.introspectionId
/**
* The maximum number of introspected types that will be returned in a single response.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* Determines the number of types to be returned in a single response before paginating. This value is typically taken from `nextToken` value from the previous response.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.GetDataSourceIntrospectionRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetDataSourceIntrospectionRequest(")
append("includeModelsSdl=$includeModelsSdl,")
append("introspectionId=$introspectionId,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = includeModelsSdl?.hashCode() ?: 0
result = 31 * result + (introspectionId?.hashCode() ?: 0)
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.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 GetDataSourceIntrospectionRequest
if (includeModelsSdl != other.includeModelsSdl) return false
if (introspectionId != other.introspectionId) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.GetDataSourceIntrospectionRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A boolean flag that determines whether SDL should be generated for introspected types or not. If set to `true`, each model will contain an `sdl` property that contains the SDL for that type. The SDL only contains the type data and no additional metadata or directives.
*/
public var includeModelsSdl: kotlin.Boolean? = null
/**
* The introspection ID. Each introspection contains a unique ID that can be used to reference the instrospection record.
*/
public var introspectionId: kotlin.String? = null
/**
* The maximum number of introspected types that will be returned in a single response.
*/
public var maxResults: kotlin.Int? = null
/**
* Determines the number of types to be returned in a single response before paginating. This value is typically taken from `nextToken` value from the previous response.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.GetDataSourceIntrospectionRequest) : this() {
this.includeModelsSdl = x.includeModelsSdl
this.introspectionId = x.introspectionId
this.maxResults = x.maxResults
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.GetDataSourceIntrospectionRequest = GetDataSourceIntrospectionRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}