commonMain.aws.sdk.kotlin.services.appsync.model.UpdateApiKeyRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appsync-jvm Show documentation
Show all versions of appsync-jvm Show documentation
The AWS SDK for Kotlin client for AppSync
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appsync.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateApiKeyRequest private constructor(builder: Builder) {
/**
* The ID for the GraphQL API.
*/
public val apiId: kotlin.String? = builder.apiId
/**
* A description of the purpose of the API key.
*/
public val description: kotlin.String? = builder.description
/**
* From the update time, the time after which the API key expires. The date is represented as seconds since the epoch. For more information, see .
*/
public val expires: kotlin.Long? = builder.expires
/**
* The API key ID.
*/
public val id: kotlin.String? = builder.id
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.UpdateApiKeyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateApiKeyRequest(")
append("apiId=$apiId,")
append("description=$description,")
append("expires=$expires,")
append("id=$id")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = apiId?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (expires?.hashCode() ?: 0)
result = 31 * result + (id?.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 UpdateApiKeyRequest
if (apiId != other.apiId) return false
if (description != other.description) return false
if (expires != other.expires) return false
if (id != other.id) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.UpdateApiKeyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID for the GraphQL API.
*/
public var apiId: kotlin.String? = null
/**
* A description of the purpose of the API key.
*/
public var description: kotlin.String? = null
/**
* From the update time, the time after which the API key expires. The date is represented as seconds since the epoch. For more information, see .
*/
public var expires: kotlin.Long? = null
/**
* The API key ID.
*/
public var id: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.UpdateApiKeyRequest) : this() {
this.apiId = x.apiId
this.description = x.description
this.expires = x.expires
this.id = x.id
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.UpdateApiKeyRequest = UpdateApiKeyRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}