
commonMain.aws.sdk.kotlin.services.pipes.model.BatchEnvironmentVariable.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pipes.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition.
*
* Environment variables cannot start with "`Batch`". This naming convention is reserved for variables that Batch sets.
*/
public class BatchEnvironmentVariable private constructor(builder: Builder) {
/**
* The name of the key-value pair. For environment variables, this is the name of the environment variable.
*/
public val name: kotlin.String? = builder.name
/**
* The value of the key-value pair. For environment variables, this is the value of the environment variable.
*/
public val value: kotlin.String? = builder.value
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pipes.model.BatchEnvironmentVariable = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchEnvironmentVariable(")
append("name=$name,")
append("value=$value")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (value?.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 BatchEnvironmentVariable
if (name != other.name) return false
if (value != other.value) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pipes.model.BatchEnvironmentVariable = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the key-value pair. For environment variables, this is the name of the environment variable.
*/
public var name: kotlin.String? = null
/**
* The value of the key-value pair. For environment variables, this is the value of the environment variable.
*/
public var value: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pipes.model.BatchEnvironmentVariable) : this() {
this.name = x.name
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pipes.model.BatchEnvironmentVariable = BatchEnvironmentVariable(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy