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

com.pulumi.awsnative.groundstation.kotlin.inputs.GetConfigPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.groundstation.kotlin.inputs

import com.pulumi.awsnative.groundstation.inputs.GetConfigPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property arn The ARN of the config, such as `arn:aws:groundstation:us-east-2:1234567890:config/tracking/9940bf3b-d2ba-427e-9906-842b5e5d2296` .
 */
public data class GetConfigPlainArgs(
    public val arn: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.groundstation.inputs.GetConfigPlainArgs =
        com.pulumi.awsnative.groundstation.inputs.GetConfigPlainArgs.builder()
            .arn(arn.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetConfigPlainArgs].
 */
@PulumiTagMarker
public class GetConfigPlainArgsBuilder internal constructor() {
    private var arn: String? = null

    /**
     * @param value The ARN of the config, such as `arn:aws:groundstation:us-east-2:1234567890:config/tracking/9940bf3b-d2ba-427e-9906-842b5e5d2296` .
     */
    @JvmName("ynfmdctaagtywvpt")
    public suspend fun arn(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.arn = mapped
    }

    internal fun build(): GetConfigPlainArgs = GetConfigPlainArgs(
        arn = arn ?: throw PulumiNullFieldException("arn"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy