
com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamCopyCommand.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kinesisfirehose.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property copyOptions Parameters to use with the Amazon Redshift `COPY` command. For examples, see the `CopyOptions` content for the [CopyCommand](https://docs.aws.amazon.com/firehose/latest/APIReference/API_CopyCommand.html) data type in the *Amazon Kinesis Data Firehose API Reference* .
* @property dataTableColumns A comma-separated list of column names.
* @property dataTableName The name of the target table. The table must already exist in the database.
*/
public data class DeliveryStreamCopyCommand(
public val copyOptions: String? = null,
public val dataTableColumns: String? = null,
public val dataTableName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamCopyCommand): DeliveryStreamCopyCommand = DeliveryStreamCopyCommand(
copyOptions = javaType.copyOptions().map({ args0 -> args0 }).orElse(null),
dataTableColumns = javaType.dataTableColumns().map({ args0 -> args0 }).orElse(null),
dataTableName = javaType.dataTableName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy