![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.eventschemas.kotlin.RegistryArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.eventschemas.kotlin
import com.pulumi.awsnative.eventschemas.RegistryArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::EventSchemas::Registry
* ## Example Usage
* ### Example
* No Java example available.
* @property description A description of the registry to be created.
* @property registryName The name of the schema registry.
* @property tags Tags associated with the resource.
*/
public data class RegistryArgs(
public val description: Output? = null,
public val registryName: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.eventschemas.RegistryArgs =
com.pulumi.awsnative.eventschemas.RegistryArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.registryName(registryName?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [RegistryArgs].
*/
@PulumiTagMarker
public class RegistryArgsBuilder internal constructor() {
private var description: Output? = null
private var registryName: Output? = null
private var tags: Output>? = null
/**
* @param value A description of the registry to be created.
*/
@JvmName("bsmrgackisdkpfwu")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The name of the schema registry.
*/
@JvmName("ehctakxjyepjalef")
public suspend fun registryName(`value`: Output) {
this.registryName = value
}
/**
* @param value Tags associated with the resource.
*/
@JvmName("ynxledyxeqbuygxo")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("nxyupoipunqwongd")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values Tags associated with the resource.
*/
@JvmName("ggwgkmoxegyaplnm")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy