commonMain.aws.sdk.kotlin.services.amplifybackend.model.CreateBackendApiResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amplifybackend-jvm Show documentation
Show all versions of amplifybackend-jvm Show documentation
The AWS SDK for Kotlin client for AmplifyBackend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.amplifybackend.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CreateBackendApiResponse private constructor(builder: Builder) {
/**
* The app ID.
*/
public val appId: kotlin.String? = builder.appId
/**
* The name of the backend environment.
*/
public val backendEnvironmentName: kotlin.String? = builder.backendEnvironmentName
/**
* If the request fails, this error is returned.
*/
public val error: kotlin.String? = builder.error
/**
* The ID for the job.
*/
public val jobId: kotlin.String? = builder.jobId
/**
* The name of the operation.
*/
public val operation: kotlin.String? = builder.operation
/**
* The current status of the request.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.amplifybackend.model.CreateBackendApiResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateBackendApiResponse(")
append("appId=$appId,")
append("backendEnvironmentName=$backendEnvironmentName,")
append("error=$error,")
append("jobId=$jobId,")
append("operation=$operation,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = appId?.hashCode() ?: 0
result = 31 * result + (backendEnvironmentName?.hashCode() ?: 0)
result = 31 * result + (error?.hashCode() ?: 0)
result = 31 * result + (jobId?.hashCode() ?: 0)
result = 31 * result + (operation?.hashCode() ?: 0)
result = 31 * result + (status?.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 CreateBackendApiResponse
if (appId != other.appId) return false
if (backendEnvironmentName != other.backendEnvironmentName) return false
if (error != other.error) return false
if (jobId != other.jobId) return false
if (operation != other.operation) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.amplifybackend.model.CreateBackendApiResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The app ID.
*/
public var appId: kotlin.String? = null
/**
* The name of the backend environment.
*/
public var backendEnvironmentName: kotlin.String? = null
/**
* If the request fails, this error is returned.
*/
public var error: kotlin.String? = null
/**
* The ID for the job.
*/
public var jobId: kotlin.String? = null
/**
* The name of the operation.
*/
public var operation: kotlin.String? = null
/**
* The current status of the request.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.amplifybackend.model.CreateBackendApiResponse) : this() {
this.appId = x.appId
this.backendEnvironmentName = x.backendEnvironmentName
this.error = x.error
this.jobId = x.jobId
this.operation = x.operation
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.amplifybackend.model.CreateBackendApiResponse = CreateBackendApiResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}