commonMain.aws.sdk.kotlin.services.devicefarm.model.CreateTestGridUrlResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devicefarm-jvm Show documentation
Show all versions of devicefarm-jvm Show documentation
The AWS SDK for Kotlin client for Device Farm
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devicefarm.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
public class CreateTestGridUrlResponse private constructor(builder: Builder) {
/**
* The number of seconds the URL from CreateTestGridUrlResult$url stays active.
*/
public val expires: aws.smithy.kotlin.runtime.time.Instant? = builder.expires
/**
* A signed URL, expiring in CreateTestGridUrlRequest$expiresInSeconds seconds, to be passed to a `RemoteWebDriver`.
*/
public val url: kotlin.String? = builder.url
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devicefarm.model.CreateTestGridUrlResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateTestGridUrlResponse(")
append("expires=$expires,")
append("url=*** Sensitive Data Redacted ***")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = expires?.hashCode() ?: 0
result = 31 * result + (url?.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 CreateTestGridUrlResponse
if (expires != other.expires) return false
if (url != other.url) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devicefarm.model.CreateTestGridUrlResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The number of seconds the URL from CreateTestGridUrlResult$url stays active.
*/
public var expires: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* A signed URL, expiring in CreateTestGridUrlRequest$expiresInSeconds seconds, to be passed to a `RemoteWebDriver`.
*/
public var url: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devicefarm.model.CreateTestGridUrlResponse) : this() {
this.expires = x.expires
this.url = x.url
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devicefarm.model.CreateTestGridUrlResponse = CreateTestGridUrlResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}