commonMain.aws.sdk.kotlin.services.codecatalyst.model.WorkflowDefinitionSummary.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codecatalyst-jvm Show documentation
Show all versions of codecatalyst-jvm Show documentation
The AWS SDK for Kotlin client for CodeCatalyst
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codecatalyst.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about a workflow definition.
*/
public class WorkflowDefinitionSummary private constructor(builder: Builder) {
/**
* The path to the workflow definition file stored in the source repository for the project, including the file name.
*/
public val path: kotlin.String = requireNotNull(builder.path) { "A non-null value must be provided for path" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.WorkflowDefinitionSummary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("WorkflowDefinitionSummary(")
append("path=$path")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = path.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 WorkflowDefinitionSummary
if (path != other.path) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.WorkflowDefinitionSummary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The path to the workflow definition file stored in the source repository for the project, including the file name.
*/
public var path: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.WorkflowDefinitionSummary) : this() {
this.path = x.path
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.WorkflowDefinitionSummary = WorkflowDefinitionSummary(this)
internal fun correctErrors(): Builder {
if (path == null) path = ""
return this
}
}
}