commonMain.aws.sdk.kotlin.services.appflow.model.ConnectorProvisioningConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appflow-jvm Show documentation
Show all versions of appflow-jvm Show documentation
The AWS SDK for Kotlin client for Appflow
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appflow.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains information about the configuration of the connector being registered.
*/
public class ConnectorProvisioningConfig private constructor(builder: Builder) {
/**
* Contains information about the configuration of the lambda which is being registered as the connector.
*/
public val lambda: aws.sdk.kotlin.services.appflow.model.LambdaConnectorProvisioningConfig? = builder.lambda
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appflow.model.ConnectorProvisioningConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ConnectorProvisioningConfig(")
append("lambda=$lambda")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lambda?.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 ConnectorProvisioningConfig
if (lambda != other.lambda) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appflow.model.ConnectorProvisioningConfig = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Contains information about the configuration of the lambda which is being registered as the connector.
*/
public var lambda: aws.sdk.kotlin.services.appflow.model.LambdaConnectorProvisioningConfig? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appflow.model.ConnectorProvisioningConfig) : this() {
this.lambda = x.lambda
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appflow.model.ConnectorProvisioningConfig = ConnectorProvisioningConfig(this)
/**
* construct an [aws.sdk.kotlin.services.appflow.model.LambdaConnectorProvisioningConfig] inside the given [block]
*/
public fun lambda(block: aws.sdk.kotlin.services.appflow.model.LambdaConnectorProvisioningConfig.Builder.() -> kotlin.Unit) {
this.lambda = aws.sdk.kotlin.services.appflow.model.LambdaConnectorProvisioningConfig.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}