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

com.pulumi.awsnative.identitystore.kotlin.inputs.GetGroupPlainArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.identitystore.kotlin.inputs

import com.pulumi.awsnative.identitystore.inputs.GetGroupPlainArgs.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 groupId The unique identifier for a group in the identity store.
 * @property identityStoreId The globally unique identifier for the identity store.
 */
public data class GetGroupPlainArgs(
    public val groupId: String,
    public val identityStoreId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.identitystore.inputs.GetGroupPlainArgs =
        com.pulumi.awsnative.identitystore.inputs.GetGroupPlainArgs.builder()
            .groupId(groupId.let({ args0 -> args0 }))
            .identityStoreId(identityStoreId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetGroupPlainArgs].
 */
@PulumiTagMarker
public class GetGroupPlainArgsBuilder internal constructor() {
    private var groupId: String? = null

    private var identityStoreId: String? = null

    /**
     * @param value The unique identifier for a group in the identity store.
     */
    @JvmName("yjjmnniganjpeloa")
    public suspend fun groupId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.groupId = mapped
    }

    /**
     * @param value The globally unique identifier for the identity store.
     */
    @JvmName("ixqhubviurrjghko")
    public suspend fun identityStoreId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.identityStoreId = mapped
    }

    internal fun build(): GetGroupPlainArgs = GetGroupPlainArgs(
        groupId = groupId ?: throw PulumiNullFieldException("groupId"),
        identityStoreId = identityStoreId ?: throw PulumiNullFieldException("identityStoreId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy