commonMain.aws.sdk.kotlin.services.glue.model.BlueprintDetails.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
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
/**
* The details of a blueprint.
*/
public class BlueprintDetails private constructor(builder: Builder) {
/**
* The name of the blueprint.
*/
public val blueprintName: kotlin.String? = builder.blueprintName
/**
* The run ID for this blueprint.
*/
public val runId: kotlin.String? = builder.runId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.BlueprintDetails = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BlueprintDetails(")
append("blueprintName=$blueprintName,")
append("runId=$runId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = blueprintName?.hashCode() ?: 0
result = 31 * result + (runId?.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 BlueprintDetails
if (blueprintName != other.blueprintName) return false
if (runId != other.runId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.BlueprintDetails = Builder(this).apply(block).build()
public class Builder {
/**
* The name of the blueprint.
*/
public var blueprintName: kotlin.String? = null
/**
* The run ID for this blueprint.
*/
public var runId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.BlueprintDetails) : this() {
this.blueprintName = x.blueprintName
this.runId = x.runId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.BlueprintDetails = BlueprintDetails(this)
internal fun correctErrors(): Builder {
return this
}
}
}