
commonMain.aws.sdk.kotlin.services.batch.model.EksPropertiesDetail.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.batch.model
/**
* An object that contains the details for the Kubernetes resources of a job.
*/
public class EksPropertiesDetail private constructor(builder: Builder) {
/**
* The properties for the Kubernetes pod resources of a job.
*/
public val podProperties: aws.sdk.kotlin.services.batch.model.EksPodPropertiesDetail? = builder.podProperties
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.batch.model.EksPropertiesDetail = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EksPropertiesDetail(")
append("podProperties=$podProperties")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = podProperties?.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 EksPropertiesDetail
if (podProperties != other.podProperties) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.batch.model.EksPropertiesDetail = Builder(this).apply(block).build()
public class Builder {
/**
* The properties for the Kubernetes pod resources of a job.
*/
public var podProperties: aws.sdk.kotlin.services.batch.model.EksPodPropertiesDetail? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.batch.model.EksPropertiesDetail) : this() {
this.podProperties = x.podProperties
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.batch.model.EksPropertiesDetail = EksPropertiesDetail(this)
/**
* construct an [aws.sdk.kotlin.services.batch.model.EksPodPropertiesDetail] inside the given [block]
*/
public fun podProperties(block: aws.sdk.kotlin.services.batch.model.EksPodPropertiesDetail.Builder.() -> kotlin.Unit) {
this.podProperties = aws.sdk.kotlin.services.batch.model.EksPodPropertiesDetail.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy