commonMain.aws.sdk.kotlin.services.codedeploy.model.PutLifecycleEventHookExecutionStatusResponse.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 PutLifecycleEventHookExecutionStatusResponse private constructor(builder: Builder) {
/**
* The execution ID of the lifecycle event hook. A hook is specified in the `hooks` section of the deployment's AppSpec file.
*/
public val lifecycleEventHookExecutionId: kotlin.String? = builder.lifecycleEventHookExecutionId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codedeploy.model.PutLifecycleEventHookExecutionStatusResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("PutLifecycleEventHookExecutionStatusResponse(")
append("lifecycleEventHookExecutionId=$lifecycleEventHookExecutionId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lifecycleEventHookExecutionId?.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 PutLifecycleEventHookExecutionStatusResponse
if (lifecycleEventHookExecutionId != other.lifecycleEventHookExecutionId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codedeploy.model.PutLifecycleEventHookExecutionStatusResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The execution ID of the lifecycle event hook. A hook is specified in the `hooks` section of the deployment's AppSpec file.
*/
public var lifecycleEventHookExecutionId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codedeploy.model.PutLifecycleEventHookExecutionStatusResponse) : this() {
this.lifecycleEventHookExecutionId = x.lifecycleEventHookExecutionId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codedeploy.model.PutLifecycleEventHookExecutionStatusResponse = PutLifecycleEventHookExecutionStatusResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}