commonMain.aws.sdk.kotlin.services.appsync.model.CreateApiKeyRequest.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 CreateApiKeyRequest private constructor(builder: Builder) {
/**
* The ID for your 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 creation time, the time after which the API key expires. The date is represented as seconds since the epoch, rounded down to the nearest hour. The default value for this parameter is 7 days from creation time. For more information, see .
*/
public val expires: kotlin.Long? = builder.expires
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.CreateApiKeyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateApiKeyRequest(")
append("apiId=$apiId,")
append("description=$description,")
append("expires=$expires")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = apiId?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (expires?.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 CreateApiKeyRequest
if (apiId != other.apiId) return false
if (description != other.description) return false
if (expires != other.expires) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.CreateApiKeyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID for your 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 creation time, the time after which the API key expires. The date is represented as seconds since the epoch, rounded down to the nearest hour. The default value for this parameter is 7 days from creation time. For more information, see .
*/
public var expires: kotlin.Long? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.CreateApiKeyRequest) : this() {
this.apiId = x.apiId
this.description = x.description
this.expires = x.expires
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.CreateApiKeyRequest = CreateApiKeyRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}