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

com.pulumi.awsnative.groundstation.kotlin.ConfigArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.groundstation.kotlin

import com.pulumi.awsnative.groundstation.ConfigArgs.builder
import com.pulumi.awsnative.groundstation.kotlin.inputs.ConfigDataArgs
import com.pulumi.awsnative.groundstation.kotlin.inputs.ConfigDataArgsBuilder
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

/**
 * AWS Ground Station config resource type for CloudFormation.
 * @property configData Object containing the parameters of a config. Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
 * @property name The name of the config object.
 * @property tags Tags assigned to a resource.
 */
public data class ConfigArgs(
    public val configData: Output? = null,
    public val name: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.groundstation.ConfigArgs =
        com.pulumi.awsnative.groundstation.ConfigArgs.builder()
            .configData(configData?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .name(name?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [ConfigArgs].
 */
@PulumiTagMarker
public class ConfigArgsBuilder internal constructor() {
    private var configData: Output? = null

    private var name: Output? = null

    private var tags: Output>? = null

    /**
     * @param value Object containing the parameters of a config. Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
     */
    @JvmName("aimymbsvkanvpxuj")
    public suspend fun configData(`value`: Output) {
        this.configData = value
    }

    /**
     * @param value The name of the config object.
     */
    @JvmName("rjgdwvnefhmenacs")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Tags assigned to a resource.
     */
    @JvmName("esownturrugkmlix")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    @JvmName("bogyentbseraddqx")
    public suspend fun tags(vararg values: Output) {
        this.tags = Output.all(values.asList())
    }

    /**
     * @param values Tags assigned to a resource.
     */
    @JvmName("fvvqjeppwplivlgm")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value Object containing the parameters of a config. Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
     */
    @JvmName("xrnmdylwmdbuylsk")
    public suspend fun configData(`value`: ConfigDataArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.configData = mapped
    }

    /**
     * @param argument Object containing the parameters of a config. Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
     */
    @JvmName("vcrbalwglsglnadg")
    public suspend fun configData(argument: suspend ConfigDataArgsBuilder.() -> Unit) {
        val toBeMapped = ConfigDataArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.configData = mapped
    }

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

    /**
     * @param value Tags assigned to a resource.
     */
    @JvmName("ywfglrrjgmouajwx")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument Tags assigned to a resource.
     */
    @JvmName("tgjatkxkxpyknqlw")
    public suspend fun tags(argument: List Unit>) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument Tags assigned to a resource.
     */
    @JvmName("odjmkskejrqmwntu")
    public suspend fun tags(vararg argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument Tags assigned to a resource.
     */
    @JvmName("cydogaomltsktddo")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values Tags assigned to a resource.
     */
    @JvmName("hjgjmdjmshswmpqn")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): ConfigArgs = ConfigArgs(
        configData = configData,
        name = name,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy