com.pulumi.awsnative.datazone.kotlin.ProjectArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datazone.kotlin
import com.pulumi.awsnative.datazone.ProjectArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Amazon DataZone projects are business use case–based groupings of people, assets (data), and tools used to simplify access to the AWS analytics.
* @property description The description of the Amazon DataZone project.
* @property domainIdentifier The ID of the Amazon DataZone domain in which this project is created.
* @property glossaryTerms The glossary terms that can be used in this Amazon DataZone project.
* @property name The name of the Amazon DataZone project.
*/
public data class ProjectArgs(
public val description: Output? = null,
public val domainIdentifier: Output? = null,
public val glossaryTerms: Output>? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.datazone.ProjectArgs =
com.pulumi.awsnative.datazone.ProjectArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.domainIdentifier(domainIdentifier?.applyValue({ args0 -> args0 }))
.glossaryTerms(glossaryTerms?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ProjectArgs].
*/
@PulumiTagMarker
public class ProjectArgsBuilder internal constructor() {
private var description: Output? = null
private var domainIdentifier: Output? = null
private var glossaryTerms: Output>? = null
private var name: Output? = null
/**
* @param value The description of the Amazon DataZone project.
*/
@JvmName("vmwkjwmcqnjhhjfd")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The ID of the Amazon DataZone domain in which this project is created.
*/
@JvmName("smtufijbvidmmpfm")
public suspend fun domainIdentifier(`value`: Output) {
this.domainIdentifier = value
}
/**
* @param value The glossary terms that can be used in this Amazon DataZone project.
*/
@JvmName("wfnvijqbafpvgvne")
public suspend fun glossaryTerms(`value`: Output>) {
this.glossaryTerms = value
}
@JvmName("dmbfpucabdomvpmr")
public suspend fun glossaryTerms(vararg values: Output) {
this.glossaryTerms = Output.all(values.asList())
}
/**
* @param values The glossary terms that can be used in this Amazon DataZone project.
*/
@JvmName("lidtulunnacbjvml")
public suspend fun glossaryTerms(values: List