commonMain.aws.sdk.kotlin.services.autoscaling.model.LaunchTemplate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoscaling-jvm Show documentation
Show all versions of autoscaling-jvm Show documentation
The AWS SDK for Kotlin client for Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.autoscaling.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Use this structure to specify the launch templates and instance types (overrides) for a mixed instances policy.
*/
public class LaunchTemplate private constructor(builder: Builder) {
/**
* The launch template.
*/
public val launchTemplateSpecification: aws.sdk.kotlin.services.autoscaling.model.LaunchTemplateSpecification? = builder.launchTemplateSpecification
/**
* Any properties that you specify override the same properties in the launch template.
*/
public val overrides: List? = builder.overrides
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.autoscaling.model.LaunchTemplate = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("LaunchTemplate(")
append("launchTemplateSpecification=$launchTemplateSpecification,")
append("overrides=$overrides")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = launchTemplateSpecification?.hashCode() ?: 0
result = 31 * result + (overrides?.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 LaunchTemplate
if (launchTemplateSpecification != other.launchTemplateSpecification) return false
if (overrides != other.overrides) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.autoscaling.model.LaunchTemplate = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The launch template.
*/
public var launchTemplateSpecification: aws.sdk.kotlin.services.autoscaling.model.LaunchTemplateSpecification? = null
/**
* Any properties that you specify override the same properties in the launch template.
*/
public var overrides: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.autoscaling.model.LaunchTemplate) : this() {
this.launchTemplateSpecification = x.launchTemplateSpecification
this.overrides = x.overrides
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.autoscaling.model.LaunchTemplate = LaunchTemplate(this)
/**
* construct an [aws.sdk.kotlin.services.autoscaling.model.LaunchTemplateSpecification] inside the given [block]
*/
public fun launchTemplateSpecification(block: aws.sdk.kotlin.services.autoscaling.model.LaunchTemplateSpecification.Builder.() -> kotlin.Unit) {
this.launchTemplateSpecification = aws.sdk.kotlin.services.autoscaling.model.LaunchTemplateSpecification.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}