
com.pulumi.awsnative.appflow.kotlin.outputs.FlowUpsolverS3OutputFormatConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appflow.kotlin.outputs
import com.pulumi.awsnative.appflow.kotlin.enums.FlowFileType
import kotlin.Suppress
/**
*
* @property aggregationConfig The aggregation settings that you can use to customize the output format of your flow data.
* @property fileType Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket.
* @property prefixConfig Specifies elements that Amazon AppFlow includes in the file and folder names in the flow destination.
*/
public data class FlowUpsolverS3OutputFormatConfig(
public val aggregationConfig: FlowAggregationConfig? = null,
public val fileType: FlowFileType? = null,
public val prefixConfig: FlowPrefixConfig,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.FlowUpsolverS3OutputFormatConfig): FlowUpsolverS3OutputFormatConfig = FlowUpsolverS3OutputFormatConfig(
aggregationConfig = javaType.aggregationConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.appflow.kotlin.outputs.FlowAggregationConfig.Companion.toKotlin(args0)
})
}).orElse(null),
fileType = javaType.fileType().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.appflow.kotlin.enums.FlowFileType.Companion.toKotlin(args0)
})
}).orElse(null),
prefixConfig = javaType.prefixConfig().let({ args0 ->
com.pulumi.awsnative.appflow.kotlin.outputs.FlowPrefixConfig.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy