commonMain.aws.sdk.kotlin.services.codedeploy.model.BatchGetDeploymentTargetsResponse.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 BatchGetDeploymentTargetsResponse private constructor(builder: Builder) {
/**
* A list of target objects for a deployment. Each target object contains details about the target, such as its status and lifecycle events. The type of the target objects depends on the deployment' compute platform.
* + **EC2/On-premises**: Each target object is an Amazon EC2 or on-premises instance.
* + **Lambda**: The target object is a specific version of an Lambda function.
* + **Amazon ECS**: The target object is an Amazon ECS service.
* + **CloudFormation**: The target object is an CloudFormation blue/green deployment.
*/
public val deploymentTargets: List? = builder.deploymentTargets
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codedeploy.model.BatchGetDeploymentTargetsResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("BatchGetDeploymentTargetsResponse(")
append("deploymentTargets=$deploymentTargets")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = deploymentTargets?.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 BatchGetDeploymentTargetsResponse
if (deploymentTargets != other.deploymentTargets) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codedeploy.model.BatchGetDeploymentTargetsResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A list of target objects for a deployment. Each target object contains details about the target, such as its status and lifecycle events. The type of the target objects depends on the deployment' compute platform.
* + **EC2/On-premises**: Each target object is an Amazon EC2 or on-premises instance.
* + **Lambda**: The target object is a specific version of an Lambda function.
* + **Amazon ECS**: The target object is an Amazon ECS service.
* + **CloudFormation**: The target object is an CloudFormation blue/green deployment.
*/
public var deploymentTargets: List? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codedeploy.model.BatchGetDeploymentTargetsResponse) : this() {
this.deploymentTargets = x.deploymentTargets
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codedeploy.model.BatchGetDeploymentTargetsResponse = BatchGetDeploymentTargetsResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}