commonMain.aws.sdk.kotlin.services.emrserverless.model.ImageConfigurationInput.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of emrserverless-jvm Show documentation
Show all versions of emrserverless-jvm Show documentation
The AWS SDK for Kotlin client for EMR Serverless
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.emrserverless.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The image configuration.
*/
public class ImageConfigurationInput private constructor(builder: Builder) {
/**
* The URI of an image in the Amazon ECR registry. This field is required when you create a new application. If you leave this field blank in an update, Amazon EMR will remove the image configuration.
*/
public val imageUri: kotlin.String? = builder.imageUri
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.emrserverless.model.ImageConfigurationInput = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ImageConfigurationInput(")
append("imageUri=$imageUri")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = imageUri?.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 ImageConfigurationInput
if (imageUri != other.imageUri) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.emrserverless.model.ImageConfigurationInput = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The URI of an image in the Amazon ECR registry. This field is required when you create a new application. If you leave this field blank in an update, Amazon EMR will remove the image configuration.
*/
public var imageUri: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.emrserverless.model.ImageConfigurationInput) : this() {
this.imageUri = x.imageUri
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.emrserverless.model.ImageConfigurationInput = ImageConfigurationInput(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy