commonMain.aws.sdk.kotlin.services.codedeploy.model.GetDeploymentTargetResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codedeploy-jvm Show documentation
Show all versions of codedeploy-jvm Show documentation
The AWS SDK for Kotlin client for CodeDeploy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codedeploy.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetDeploymentTargetResponse private constructor(builder: Builder) {
/**
* A deployment target that contains information about a deployment such as its status, lifecycle events, and when it was last updated. It also contains metadata about the deployment target. The deployment target metadata depends on the deployment target's type (`instanceTarget`, `lambdaTarget`, or `ecsTarget`).
*/
public val deploymentTarget: aws.sdk.kotlin.services.codedeploy.model.DeploymentTarget? = builder.deploymentTarget
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codedeploy.model.GetDeploymentTargetResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetDeploymentTargetResponse(")
append("deploymentTarget=$deploymentTarget")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = deploymentTarget?.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 GetDeploymentTargetResponse
if (deploymentTarget != other.deploymentTarget) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codedeploy.model.GetDeploymentTargetResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A deployment target that contains information about a deployment such as its status, lifecycle events, and when it was last updated. It also contains metadata about the deployment target. The deployment target metadata depends on the deployment target's type (`instanceTarget`, `lambdaTarget`, or `ecsTarget`).
*/
public var deploymentTarget: aws.sdk.kotlin.services.codedeploy.model.DeploymentTarget? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codedeploy.model.GetDeploymentTargetResponse) : this() {
this.deploymentTarget = x.deploymentTarget
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codedeploy.model.GetDeploymentTargetResponse = GetDeploymentTargetResponse(this)
/**
* construct an [aws.sdk.kotlin.services.codedeploy.model.DeploymentTarget] inside the given [block]
*/
public fun deploymentTarget(block: aws.sdk.kotlin.services.codedeploy.model.DeploymentTarget.Builder.() -> kotlin.Unit) {
this.deploymentTarget = aws.sdk.kotlin.services.codedeploy.model.DeploymentTarget.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}