commonMain.aws.sdk.kotlin.services.iotsitewise.model.ImageLocation.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
/**
* Contains an image that is uploaded to IoT SiteWise and available at a URL.
*/
public class ImageLocation private constructor(builder: Builder) {
/**
* The ID of the image.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The URL where the image is available. The URL is valid for 15 minutes so that you can view and download the image
*/
public val url: kotlin.String = requireNotNull(builder.url) { "A non-null value must be provided for url" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotsitewise.model.ImageLocation = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ImageLocation(")
append("id=$id,")
append("url=$url")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = id.hashCode()
result = 31 * result + (url.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 ImageLocation
if (id != other.id) return false
if (url != other.url) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotsitewise.model.ImageLocation = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the image.
*/
public var id: kotlin.String? = null
/**
* The URL where the image is available. The URL is valid for 15 minutes so that you can view and download the image
*/
public var url: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotsitewise.model.ImageLocation) : this() {
this.id = x.id
this.url = x.url
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotsitewise.model.ImageLocation = ImageLocation(this)
internal fun correctErrors(): Builder {
if (id == null) id = ""
if (url == null) url = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy