commonMain.aws.sdk.kotlin.services.autoscaling.model.SuspendedProcess.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
/**
* Describes an auto scaling process that has been suspended.
*
* For more information, see [Types of processes](https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-suspend-resume-processes.html#process-types) in the *Amazon EC2 Auto Scaling User Guide*.
*/
public class SuspendedProcess private constructor(builder: Builder) {
/**
* The name of the suspended process.
*/
public val processName: kotlin.String? = builder.processName
/**
* The reason that the process was suspended.
*/
public val suspensionReason: kotlin.String? = builder.suspensionReason
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.autoscaling.model.SuspendedProcess = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SuspendedProcess(")
append("processName=$processName,")
append("suspensionReason=$suspensionReason")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = processName?.hashCode() ?: 0
result = 31 * result + (suspensionReason?.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 SuspendedProcess
if (processName != other.processName) return false
if (suspensionReason != other.suspensionReason) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.autoscaling.model.SuspendedProcess = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the suspended process.
*/
public var processName: kotlin.String? = null
/**
* The reason that the process was suspended.
*/
public var suspensionReason: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.autoscaling.model.SuspendedProcess) : this() {
this.processName = x.processName
this.suspensionReason = x.suspensionReason
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.autoscaling.model.SuspendedProcess = SuspendedProcess(this)
internal fun correctErrors(): Builder {
return this
}
}
}