All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.appflow.kotlin.outputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoData.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@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