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

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>) {
        this.glossaryTerms = Output.all(values)
    }

    /**
     * @param value The name of the Amazon DataZone project.
     */
    @JvmName("oamekclvytemgkya")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The description of the Amazon DataZone project.
     */
    @JvmName("mpsexrghrwkotmbf")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The ID of the Amazon DataZone domain in which this project is created.
     */
    @JvmName("yhatvwbqxgtaapdo")
    public suspend fun domainIdentifier(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.domainIdentifier = mapped
    }

    /**
     * @param value The glossary terms that can be used in this Amazon DataZone project.
     */
    @JvmName("axsbmtgafyqtgour")
    public suspend fun glossaryTerms(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.glossaryTerms = mapped
    }

    /**
     * @param values The glossary terms that can be used in this Amazon DataZone project.
     */
    @JvmName("nbihdeiurkfqfjxl")
    public suspend fun glossaryTerms(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.glossaryTerms = mapped
    }

    /**
     * @param value The name of the Amazon DataZone project.
     */
    @JvmName("mgwsuctaoljtardc")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    internal fun build(): ProjectArgs = ProjectArgs(
        description = description,
        domainIdentifier = domainIdentifier,
        glossaryTerms = glossaryTerms,
        name = name,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy