commonMain.aws.sdk.kotlin.services.glue.model.BatchGetBlueprintsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
public class BatchGetBlueprintsResponse private constructor(builder: Builder) {
/**
* Returns a list of blueprint as a `Blueprints` object.
*/
public val blueprints: List? = builder.blueprints
/**
* Returns a list of `BlueprintNames` that were not found.
*/
public val missingBlueprints: List? = builder.missingBlueprints
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.BatchGetBlueprintsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchGetBlueprintsResponse(")
append("blueprints=$blueprints,")
append("missingBlueprints=$missingBlueprints")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = blueprints?.hashCode() ?: 0
result = 31 * result + (missingBlueprints?.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 BatchGetBlueprintsResponse
if (blueprints != other.blueprints) return false
if (missingBlueprints != other.missingBlueprints) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.BatchGetBlueprintsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Returns a list of blueprint as a `Blueprints` object.
*/
public var blueprints: List? = null
/**
* Returns a list of `BlueprintNames` that were not found.
*/
public var missingBlueprints: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.BatchGetBlueprintsResponse) : this() {
this.blueprints = x.blueprints
this.missingBlueprints = x.missingBlueprints
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.BatchGetBlueprintsResponse = BatchGetBlueprintsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy