commonMain.aws.sdk.kotlin.services.athena.model.ExportNotebookResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.model
import aws.smithy.kotlin.runtime.SdkDsl
public class ExportNotebookResponse private constructor(builder: Builder) {
/**
* The notebook metadata, including notebook ID, notebook name, and workgroup name.
*/
public val notebookMetadata: aws.sdk.kotlin.services.athena.model.NotebookMetadata? = builder.notebookMetadata
/**
* The content of the exported notebook.
*/
public val payload: kotlin.String? = builder.payload
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.ExportNotebookResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ExportNotebookResponse(")
append("notebookMetadata=$notebookMetadata,")
append("payload=$payload")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = notebookMetadata?.hashCode() ?: 0
result = 31 * result + (payload?.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 ExportNotebookResponse
if (notebookMetadata != other.notebookMetadata) return false
if (payload != other.payload) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.ExportNotebookResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The notebook metadata, including notebook ID, notebook name, and workgroup name.
*/
public var notebookMetadata: aws.sdk.kotlin.services.athena.model.NotebookMetadata? = null
/**
* The content of the exported notebook.
*/
public var payload: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.ExportNotebookResponse) : this() {
this.notebookMetadata = x.notebookMetadata
this.payload = x.payload
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.ExportNotebookResponse = ExportNotebookResponse(this)
/**
* construct an [aws.sdk.kotlin.services.athena.model.NotebookMetadata] inside the given [block]
*/
public fun notebookMetadata(block: aws.sdk.kotlin.services.athena.model.NotebookMetadata.Builder.() -> kotlin.Unit) {
this.notebookMetadata = aws.sdk.kotlin.services.athena.model.NotebookMetadata.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}