commonMain.aws.sdk.kotlin.services.appsync.model.LambdaDataSourceConfig.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
/**
* Describes an Lambda data source configuration.
*/
public class LambdaDataSourceConfig private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) for the Lambda function.
*/
public val lambdaFunctionArn: kotlin.String = requireNotNull(builder.lambdaFunctionArn) { "A non-null value must be provided for lambdaFunctionArn" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appsync.model.LambdaDataSourceConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("LambdaDataSourceConfig(")
append("lambdaFunctionArn=$lambdaFunctionArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lambdaFunctionArn.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 LambdaDataSourceConfig
if (lambdaFunctionArn != other.lambdaFunctionArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appsync.model.LambdaDataSourceConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) for the Lambda function.
*/
public var lambdaFunctionArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appsync.model.LambdaDataSourceConfig) : this() {
this.lambdaFunctionArn = x.lambdaFunctionArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appsync.model.LambdaDataSourceConfig = LambdaDataSourceConfig(this)
internal fun correctErrors(): Builder {
if (lambdaFunctionArn == null) lambdaFunctionArn = ""
return this
}
}
}