com.pulumi.awsnative.iotanalytics.kotlin.outputs.DatastoreColumn.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotanalytics.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name The name of the column.
* @property type The type of data. For more information about the supported data types, see [Common data types](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-common.html) in the *AWS Glue Developer Guide* .
*/
public data class DatastoreColumn(
public val name: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotanalytics.outputs.DatastoreColumn): DatastoreColumn = DatastoreColumn(
name = javaType.name(),
type = javaType.type(),
)
}
}