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

com.pulumi.awsnative.appstream.kotlin.ApplicationEntitlementAssociationArgs.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: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.appstream.kotlin

import com.pulumi.awsnative.appstream.ApplicationEntitlementAssociationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Resource Type definition for AWS::AppStream::ApplicationEntitlementAssociation
 * @property applicationIdentifier The identifier of the application.
 * @property entitlementName The name of the entitlement.
 * @property stackName The name of the stack.
 */
public data class ApplicationEntitlementAssociationArgs(
    public val applicationIdentifier: Output? = null,
    public val entitlementName: Output? = null,
    public val stackName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.appstream.ApplicationEntitlementAssociationArgs =
        com.pulumi.awsnative.appstream.ApplicationEntitlementAssociationArgs.builder()
            .applicationIdentifier(applicationIdentifier?.applyValue({ args0 -> args0 }))
            .entitlementName(entitlementName?.applyValue({ args0 -> args0 }))
            .stackName(stackName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ApplicationEntitlementAssociationArgs].
 */
@PulumiTagMarker
public class ApplicationEntitlementAssociationArgsBuilder internal constructor() {
    private var applicationIdentifier: Output? = null

    private var entitlementName: Output? = null

    private var stackName: Output? = null

    /**
     * @param value The identifier of the application.
     */
    @JvmName("wdywcwexyrptklgg")
    public suspend fun applicationIdentifier(`value`: Output) {
        this.applicationIdentifier = value
    }

    /**
     * @param value The name of the entitlement.
     */
    @JvmName("krnsershpcsbrltl")
    public suspend fun entitlementName(`value`: Output) {
        this.entitlementName = value
    }

    /**
     * @param value The name of the stack.
     */
    @JvmName("cinleqvtknabyhpl")
    public suspend fun stackName(`value`: Output) {
        this.stackName = value
    }

    /**
     * @param value The identifier of the application.
     */
    @JvmName("emhypnbgdhgnmgdd")
    public suspend fun applicationIdentifier(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.applicationIdentifier = mapped
    }

    /**
     * @param value The name of the entitlement.
     */
    @JvmName("tktivktcduywbosl")
    public suspend fun entitlementName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.entitlementName = mapped
    }

    /**
     * @param value The name of the stack.
     */
    @JvmName("ebnixpacgnyqafsi")
    public suspend fun stackName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.stackName = mapped
    }

    internal fun build(): ApplicationEntitlementAssociationArgs =
        ApplicationEntitlementAssociationArgs(
            applicationIdentifier = applicationIdentifier,
            entitlementName = entitlementName,
            stackName = stackName,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy