commonMain.aws.sdk.kotlin.services.codecatalyst.model.ProjectInformation.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 project in a space.
*/
public class ProjectInformation private constructor(builder: Builder) {
/**
* The name of the project in the space.
*/
public val name: kotlin.String? = builder.name
/**
* The system-generated unique ID of the project.
*/
public val projectId: kotlin.String? = builder.projectId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.ProjectInformation = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ProjectInformation(")
append("name=$name,")
append("projectId=$projectId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (projectId?.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 ProjectInformation
if (name != other.name) return false
if (projectId != other.projectId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.ProjectInformation = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the project in the space.
*/
public var name: kotlin.String? = null
/**
* The system-generated unique ID of the project.
*/
public var projectId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.ProjectInformation) : this() {
this.name = x.name
this.projectId = x.projectId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.ProjectInformation = ProjectInformation(this)
internal fun correctErrors(): Builder {
return this
}
}
}