All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.codedeploy.model.ContinueDeploymentRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.78
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.codedeploy.model

import aws.smithy.kotlin.runtime.SdkDsl

public class ContinueDeploymentRequest private constructor(builder: Builder) {
    /**
     * The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.
     */
    public val deploymentId: kotlin.String? = builder.deploymentId
    /**
     * The status of the deployment's waiting period. `READY_WAIT` indicates that the deployment is ready to start shifting traffic. `TERMINATION_WAIT` indicates that the traffic is shifted, but the original target is not terminated.
     */
    public val deploymentWaitType: aws.sdk.kotlin.services.codedeploy.model.DeploymentWaitType? = builder.deploymentWaitType

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codedeploy.model.ContinueDeploymentRequest = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("ContinueDeploymentRequest(")
        append("deploymentId=$deploymentId,")
        append("deploymentWaitType=$deploymentWaitType")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = deploymentId?.hashCode() ?: 0
        result = 31 * result + (deploymentWaitType?.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 ContinueDeploymentRequest

        if (deploymentId != other.deploymentId) return false
        if (deploymentWaitType != other.deploymentWaitType) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codedeploy.model.ContinueDeploymentRequest = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.
         */
        public var deploymentId: kotlin.String? = null
        /**
         * The status of the deployment's waiting period. `READY_WAIT` indicates that the deployment is ready to start shifting traffic. `TERMINATION_WAIT` indicates that the traffic is shifted, but the original target is not terminated.
         */
        public var deploymentWaitType: aws.sdk.kotlin.services.codedeploy.model.DeploymentWaitType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.codedeploy.model.ContinueDeploymentRequest) : this() {
            this.deploymentId = x.deploymentId
            this.deploymentWaitType = x.deploymentWaitType
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.codedeploy.model.ContinueDeploymentRequest = ContinueDeploymentRequest(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy