com.pulumi.aws.appflow.kotlin.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.appflow.kotlin.inputs
import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property errorHandlingConfig
* @property idFieldNames
* @property objectPath
* @property successResponseHandlingConfig Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. See Success Response Handling Config for more details.
* @property writeOperationType
*/
public data class FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgs(
public val errorHandlingConfig: Output? =
null,
public val idFieldNames: Output>? = null,
public val objectPath: Output,
public val successResponseHandlingConfig: Output? =
null,
public val writeOperationType: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgs =
com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgs.builder()
.errorHandlingConfig(
errorHandlingConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.idFieldNames(idFieldNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.objectPath(objectPath.applyValue({ args0 -> args0 }))
.successResponseHandlingConfig(
successResponseHandlingConfig?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.writeOperationType(writeOperationType?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgs].
*/
@PulumiTagMarker
public class FlowDestinationFlowConfigDestinationConnectorPropertiesSapoDataArgsBuilder internal constructor() {
private var errorHandlingConfig:
Output? =
null
private var idFieldNames: Output>? = null
private var objectPath: Output? = null
private var successResponseHandlingConfig:
Output? =
null
private var writeOperationType: Output? = null
/**
* @param value
*/
@JvmName("wvhekcqmtjlxftao")
public suspend fun errorHandlingConfig(`value`: Output) {
this.errorHandlingConfig = value
}
/**
* @param value
*/
@JvmName("tphuqwyehnkcrcul")
public suspend fun idFieldNames(`value`: Output>) {
this.idFieldNames = value
}
@JvmName("pliusxqstqhobrlg")
public suspend fun idFieldNames(vararg values: Output) {
this.idFieldNames = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("bsiundewospdjbdo")
public suspend fun idFieldNames(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy