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

com.pulumi.awsnative.glue.kotlin.outputs.SchemaRegistry.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 registry which the schema is part of.
 * @property arn Amazon Resource Name for the Registry.
 * @property name Name of the registry in which the schema will be created.
 */
public data class SchemaRegistry(
    public val arn: String? = null,
    public val name: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.glue.outputs.SchemaRegistry): SchemaRegistry = SchemaRegistry(
            arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy