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

com.pulumi.awsnative.fms.kotlin.inputs.GetResourceSetPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.fms.kotlin.inputs

import com.pulumi.awsnative.fms.inputs.GetResourceSetPlainArgs.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 id A unique identifier for the resource set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
 */
public data class GetResourceSetPlainArgs(
    public val id: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.fms.inputs.GetResourceSetPlainArgs =
        com.pulumi.awsnative.fms.inputs.GetResourceSetPlainArgs.builder()
            .id(id.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetResourceSetPlainArgs].
 */
@PulumiTagMarker
public class GetResourceSetPlainArgsBuilder internal constructor() {
    private var id: String? = null

    /**
     * @param value A unique identifier for the resource set. This ID is returned in the responses to create and list commands. You provide it to operations like update and delete.
     */
    @JvmName("asfsrcaqpluupnes")
    public suspend fun id(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.id = mapped
    }

    internal fun build(): GetResourceSetPlainArgs = GetResourceSetPlainArgs(
        id = id ?: throw PulumiNullFieldException("id"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy