
commonMain.aws.sdk.kotlin.services.emr.model.CreateStudioResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.emr.model
public class CreateStudioResponse private constructor(builder: Builder) {
/**
* The ID of the Amazon EMR Studio.
*/
public val studioId: kotlin.String? = builder.studioId
/**
* The unique Studio access URL.
*/
public val url: kotlin.String? = builder.url
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.emr.model.CreateStudioResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateStudioResponse(")
append("studioId=$studioId,")
append("url=$url)")
}
override fun hashCode(): kotlin.Int {
var result = studioId?.hashCode() ?: 0
result = 31 * result + (url?.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 CreateStudioResponse
if (studioId != other.studioId) return false
if (url != other.url) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.emr.model.CreateStudioResponse = Builder(this).apply(block).build()
public class Builder {
/**
* The ID of the Amazon EMR Studio.
*/
public var studioId: kotlin.String? = null
/**
* The unique Studio access URL.
*/
public var url: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.emr.model.CreateStudioResponse) : this() {
this.studioId = x.studioId
this.url = x.url
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.emr.model.CreateStudioResponse = CreateStudioResponse(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy