commonMain.aws.sdk.kotlin.services.deadline.model.StepParameter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadline-jvm Show documentation
Show all versions of deadline-jvm Show documentation
The AWS SDK for Kotlin client for deadline
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.deadline.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The details of a step parameter.
*/
public class StepParameter private constructor(builder: Builder) {
/**
* The name of the parameter.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
/**
* The data type of the parameter.
*/
public val type: aws.sdk.kotlin.services.deadline.model.StepParameterType = requireNotNull(builder.type) { "A non-null value must be provided for type" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.deadline.model.StepParameter = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StepParameter(")
append("name=$name,")
append("type=$type")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name.hashCode()
result = 31 * result + (type.hashCode())
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 StepParameter
if (name != other.name) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.deadline.model.StepParameter = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the parameter.
*/
public var name: kotlin.String? = null
/**
* The data type of the parameter.
*/
public var type: aws.sdk.kotlin.services.deadline.model.StepParameterType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.deadline.model.StepParameter) : this() {
this.name = x.name
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.deadline.model.StepParameter = StepParameter(this)
internal fun correctErrors(): Builder {
if (name == null) name = ""
if (type == null) type = StepParameterType.SdkUnknown("no value provided")
return this
}
}
}