![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.cassandra.kotlin.outputs.TableColumn.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cassandra.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property columnName The name of the column. For more information, see [Identifiers](https://docs.aws.amazon.com/keyspaces/latest/devguide/cql.elements.html#cql.elements.identifier) in the *Amazon Keyspaces Developer Guide* .
* @property columnType The data type of the column. For more information, see [Data types](https://docs.aws.amazon.com/keyspaces/latest/devguide/cql.elements.html#cql.data-types) in the *Amazon Keyspaces Developer Guide* .
*/
public data class TableColumn(
public val columnName: String,
public val columnType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.cassandra.outputs.TableColumn): TableColumn =
TableColumn(
columnName = javaType.columnName(),
columnType = javaType.columnType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy