com.pulumi.aws.appflow.kotlin.outputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoData.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property objectPath
* @property paginationConfig Sets the page size for each concurrent process that transfers OData records from your SAP instance.
* @property parallelismConfig Sets the number of concurrent processes that transfers OData records from your SAP instance.
*/
public data class FlowSourceFlowConfigSourceConnectorPropertiesSapoData(
public val objectPath: String,
public val paginationConfig: FlowSourceFlowConfigSourceConnectorPropertiesSapoDataPaginationConfig? = null,
public val parallelismConfig: FlowSourceFlowConfigSourceConnectorPropertiesSapoDataParallelismConfig? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.appflow.outputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoData): FlowSourceFlowConfigSourceConnectorPropertiesSapoData =
FlowSourceFlowConfigSourceConnectorPropertiesSapoData(
objectPath = javaType.objectPath(),
paginationConfig = javaType.paginationConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.appflow.kotlin.outputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoDataPaginationConfig.Companion.toKotlin(args0)
})
}).orElse(null),
parallelismConfig = javaType.parallelismConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.appflow.kotlin.outputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoDataParallelismConfig.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy