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

com.pulumi.awsnative.qbusiness.kotlin.inputs.GetWebExperiencePlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.qbusiness.kotlin.inputs

import com.pulumi.awsnative.qbusiness.inputs.GetWebExperiencePlainArgs.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 applicationId The identifier of the Amazon Q Business web experience.
 * @property webExperienceId The identifier of your Amazon Q Business web experience.
 */
public data class GetWebExperiencePlainArgs(
    public val applicationId: String,
    public val webExperienceId: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.qbusiness.inputs.GetWebExperiencePlainArgs =
        com.pulumi.awsnative.qbusiness.inputs.GetWebExperiencePlainArgs.builder()
            .applicationId(applicationId.let({ args0 -> args0 }))
            .webExperienceId(webExperienceId.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetWebExperiencePlainArgs].
 */
@PulumiTagMarker
public class GetWebExperiencePlainArgsBuilder internal constructor() {
    private var applicationId: String? = null

    private var webExperienceId: String? = null

    /**
     * @param value The identifier of the Amazon Q Business web experience.
     */
    @JvmName("attemogpiilhrwcu")
    public suspend fun applicationId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.applicationId = mapped
    }

    /**
     * @param value The identifier of your Amazon Q Business web experience.
     */
    @JvmName("dratwoqinkeuqbur")
    public suspend fun webExperienceId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.webExperienceId = mapped
    }

    internal fun build(): GetWebExperiencePlainArgs = GetWebExperiencePlainArgs(
        applicationId = applicationId ?: throw PulumiNullFieldException("applicationId"),
        webExperienceId = webExperienceId ?: throw PulumiNullFieldException("webExperienceId"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy