
com.pulumi.awsnative.glue.kotlin.outputs.SchemaVersionSchema.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.glue.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Identifier for the schema where the schema version will be created.
* @property registryName Name of the registry to identify where the Schema is located.
* @property schemaArn Amazon Resource Name for the Schema. This attribute can be used to uniquely represent the Schema.
* @property schemaName Name of the schema. This parameter requires RegistryName to be provided.
*/
public data class SchemaVersionSchema(
public val registryName: String? = null,
public val schemaArn: String? = null,
public val schemaName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.glue.outputs.SchemaVersionSchema): SchemaVersionSchema = SchemaVersionSchema(
registryName = javaType.registryName().map({ args0 -> args0 }).orElse(null),
schemaArn = javaType.schemaArn().map({ args0 -> args0 }).orElse(null),
schemaName = javaType.schemaName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy