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

com.pulumi.awsnative.servicecatalogappregistry.kotlin.AttributeGroupAssociationArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.servicecatalogappregistry.kotlin

import com.pulumi.awsnative.servicecatalogappregistry.AttributeGroupAssociationArgs.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 Schema for AWS::ServiceCatalogAppRegistry::AttributeGroupAssociation.
 * @property application The name or the Id of the Application.
 * @property attributeGroup The name or the Id of the AttributeGroup.
 */
public data class AttributeGroupAssociationArgs(
    public val application: Output? = null,
    public val attributeGroup: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.servicecatalogappregistry.AttributeGroupAssociationArgs =
        com.pulumi.awsnative.servicecatalogappregistry.AttributeGroupAssociationArgs.builder()
            .application(application?.applyValue({ args0 -> args0 }))
            .attributeGroup(attributeGroup?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AttributeGroupAssociationArgs].
 */
@PulumiTagMarker
public class AttributeGroupAssociationArgsBuilder internal constructor() {
    private var application: Output? = null

    private var attributeGroup: Output? = null

    /**
     * @param value The name or the Id of the Application.
     */
    @JvmName("cjxsvyjjmfgwjxcn")
    public suspend fun application(`value`: Output) {
        this.application = value
    }

    /**
     * @param value The name or the Id of the AttributeGroup.
     */
    @JvmName("tmtaicdlkaarcwof")
    public suspend fun attributeGroup(`value`: Output) {
        this.attributeGroup = value
    }

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

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

    internal fun build(): AttributeGroupAssociationArgs = AttributeGroupAssociationArgs(
        application = application,
        attributeGroup = attributeGroup,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy