![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.appflow.kotlin.outputs.FlowRedshiftDestinationProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appflow.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucketPrefix The object key for the bucket in which Amazon AppFlow places the destination files.
* @property errorHandlingConfig The settings that determine how Amazon AppFlow handles an error when placing data in the Amazon Redshift destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. `ErrorHandlingConfig` is a part of the destination connector details.
* @property intermediateBucketName The intermediate bucket that Amazon AppFlow uses when moving data into Amazon Redshift.
* @property object The object specified in the Amazon Redshift flow destination.
*/
public data class FlowRedshiftDestinationProperties(
public val bucketPrefix: String? = null,
public val errorHandlingConfig: FlowErrorHandlingConfig? = null,
public val intermediateBucketName: String,
public val `object`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.FlowRedshiftDestinationProperties): FlowRedshiftDestinationProperties = FlowRedshiftDestinationProperties(
bucketPrefix = javaType.bucketPrefix().map({ args0 -> args0 }).orElse(null),
errorHandlingConfig = javaType.errorHandlingConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.appflow.kotlin.outputs.FlowErrorHandlingConfig.Companion.toKotlin(args0)
})
}).orElse(null),
intermediateBucketName = javaType.intermediateBucketName(),
`object` = javaType.`object`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy