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

com.pulumi.awsnative.neptunegraph.kotlin.inputs.GetGraphPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.neptunegraph.kotlin.inputs

import com.pulumi.awsnative.neptunegraph.inputs.GetGraphPlainArgs.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 graphId The auto-generated id assigned by the service.
 */
public data class GetGraphPlainArgs(
    public val graphId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.neptunegraph.inputs.GetGraphPlainArgs =
        com.pulumi.awsnative.neptunegraph.inputs.GetGraphPlainArgs.builder()
            .graphId(graphId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetGraphPlainArgs].
 */
@PulumiTagMarker
public class GetGraphPlainArgsBuilder internal constructor() {
    private var graphId: String? = null

    /**
     * @param value The auto-generated id assigned by the service.
     */
    @JvmName("isjqlardobjlxlre")
    public suspend fun graphId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.graphId = mapped
    }

    internal fun build(): GetGraphPlainArgs = GetGraphPlainArgs(
        graphId = graphId ?: throw PulumiNullFieldException("graphId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy