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

com.pulumi.awsnative.configuration.kotlin.inputs.GetConformancePackPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.configuration.kotlin.inputs

import com.pulumi.awsnative.configuration.inputs.GetConformancePackPlainArgs.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 conformancePackName Name of the conformance pack which will be assigned as the unique identifier.
 */
public data class GetConformancePackPlainArgs(
    public val conformancePackName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.configuration.inputs.GetConformancePackPlainArgs =
        com.pulumi.awsnative.configuration.inputs.GetConformancePackPlainArgs.builder()
            .conformancePackName(conformancePackName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetConformancePackPlainArgs].
 */
@PulumiTagMarker
public class GetConformancePackPlainArgsBuilder internal constructor() {
    private var conformancePackName: String? = null

    /**
     * @param value Name of the conformance pack which will be assigned as the unique identifier.
     */
    @JvmName("gfppsvassruiyaqo")
    public suspend fun conformancePackName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.conformancePackName = mapped
    }

    internal fun build(): GetConformancePackPlainArgs = GetConformancePackPlainArgs(
        conformancePackName = conformancePackName ?: throw PulumiNullFieldException("conformancePackName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy