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

com.pulumi.awsnative.cassandra.kotlin.outputs.TableColumn.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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 - 2024 Weber Informatics LLC | Privacy Policy