commonMain.aws.sdk.kotlin.services.iotsitewise.model.CreateProjectResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateProjectResponse private constructor(builder: Builder) {
/**
* The [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) of the project, which has the following format.
*
* `arn:${Partition}:iotsitewise:${Region}:${Account}:project/${ProjectId}`
*/
public val projectArn: kotlin.String = requireNotNull(builder.projectArn) { "A non-null value must be provided for projectArn" }
/**
* The ID of the project.
*/
public val projectId: kotlin.String = requireNotNull(builder.projectId) { "A non-null value must be provided for projectId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotsitewise.model.CreateProjectResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateProjectResponse(")
append("projectArn=$projectArn,")
append("projectId=$projectId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = projectArn.hashCode()
result = 31 * result + (projectId.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 CreateProjectResponse
if (projectArn != other.projectArn) return false
if (projectId != other.projectId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotsitewise.model.CreateProjectResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) of the project, which has the following format.
*
* `arn:${Partition}:iotsitewise:${Region}:${Account}:project/${ProjectId}`
*/
public var projectArn: kotlin.String? = null
/**
* The ID of the project.
*/
public var projectId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotsitewise.model.CreateProjectResponse) : this() {
this.projectArn = x.projectArn
this.projectId = x.projectId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotsitewise.model.CreateProjectResponse = CreateProjectResponse(this)
internal fun correctErrors(): Builder {
if (projectArn == null) projectArn = ""
if (projectId == null) projectId = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy