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

com.pulumi.awsnative.appflow.kotlin.outputs.FlowVeevaSourceProperties.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.appflow.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property documentType The document type specified in the Veeva document extract flow.
 * @property includeAllVersions Boolean value to include All Versions of files in Veeva document extract flow.
 * @property includeRenditions Boolean value to include file renditions in Veeva document extract flow.
 * @property includeSourceFiles Boolean value to include source files in Veeva document extract flow.
 * @property object The object specified in the Veeva flow source.
 */
public data class FlowVeevaSourceProperties(
    public val documentType: String? = null,
    public val includeAllVersions: Boolean? = null,
    public val includeRenditions: Boolean? = null,
    public val includeSourceFiles: Boolean? = null,
    public val `object`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.FlowVeevaSourceProperties): FlowVeevaSourceProperties = FlowVeevaSourceProperties(
            documentType = javaType.documentType().map({ args0 -> args0 }).orElse(null),
            includeAllVersions = javaType.includeAllVersions().map({ args0 -> args0 }).orElse(null),
            includeRenditions = javaType.includeRenditions().map({ args0 -> args0 }).orElse(null),
            includeSourceFiles = javaType.includeSourceFiles().map({ args0 -> args0 }).orElse(null),
            `object` = javaType.`object`(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy