![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.appflow.kotlin.outputs.FlowDestinationFlowConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appflow.kotlin.outputs
import com.pulumi.awsnative.appflow.kotlin.enums.FlowConnectorType
import kotlin.String
import kotlin.Suppress
/**
* Configurations of destination connector.
* @property apiVersion The API version that the destination connector uses.
* @property connectorProfileName Name of destination connector profile
* @property connectorType Destination connector type
* @property destinationConnectorProperties Destination connector details
*/
public data class FlowDestinationFlowConfig(
public val apiVersion: String? = null,
public val connectorProfileName: String? = null,
public val connectorType: FlowConnectorType,
public val destinationConnectorProperties: FlowDestinationConnectorProperties,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.FlowDestinationFlowConfig): FlowDestinationFlowConfig = FlowDestinationFlowConfig(
apiVersion = javaType.apiVersion().map({ args0 -> args0 }).orElse(null),
connectorProfileName = javaType.connectorProfileName().map({ args0 -> args0 }).orElse(null),
connectorType = javaType.connectorType().let({ args0 ->
com.pulumi.awsnative.appflow.kotlin.enums.FlowConnectorType.Companion.toKotlin(args0)
}),
destinationConnectorProperties = javaType.destinationConnectorProperties().let({ args0 ->
com.pulumi.awsnative.appflow.kotlin.outputs.FlowDestinationConnectorProperties.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy