commonMain.aws.sdk.kotlin.services.datapipeline.model.CreatePipelineResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datapipeline-jvm Show documentation
Show all versions of datapipeline-jvm Show documentation
The AWS SDK for Kotlin client for Data Pipeline
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.datapipeline.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains the output of CreatePipeline.
*/
public class CreatePipelineResponse private constructor(builder: Builder) {
/**
* The ID that AWS Data Pipeline assigns the newly created pipeline. For example, `df-06372391ZG65EXAMPLE`.
*/
public val pipelineId: kotlin.String = requireNotNull(builder.pipelineId) { "A non-null value must be provided for pipelineId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.datapipeline.model.CreatePipelineResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreatePipelineResponse(")
append("pipelineId=$pipelineId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = pipelineId.hashCode()
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 CreatePipelineResponse
if (pipelineId != other.pipelineId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.datapipeline.model.CreatePipelineResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID that AWS Data Pipeline assigns the newly created pipeline. For example, `df-06372391ZG65EXAMPLE`.
*/
public var pipelineId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.datapipeline.model.CreatePipelineResponse) : this() {
this.pipelineId = x.pipelineId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.datapipeline.model.CreatePipelineResponse = CreatePipelineResponse(this)
internal fun correctErrors(): Builder {
if (pipelineId == null) pipelineId = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy