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

com.pulumi.awsnative.elasticbeanstalk.kotlin.inputs.GetConfigurationTemplatePlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.elasticbeanstalk.kotlin.inputs

import com.pulumi.awsnative.elasticbeanstalk.inputs.GetConfigurationTemplatePlainArgs.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 applicationName The name of the Elastic Beanstalk application to associate with this configuration template.
 * @property templateName The name of the configuration template
 */
public data class GetConfigurationTemplatePlainArgs(
    public val applicationName: String,
    public val templateName: String,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.elasticbeanstalk.inputs.GetConfigurationTemplatePlainArgs =
        com.pulumi.awsnative.elasticbeanstalk.inputs.GetConfigurationTemplatePlainArgs.builder()
            .applicationName(applicationName.let({ args0 -> args0 }))
            .templateName(templateName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetConfigurationTemplatePlainArgs].
 */
@PulumiTagMarker
public class GetConfigurationTemplatePlainArgsBuilder internal constructor() {
    private var applicationName: String? = null

    private var templateName: String? = null

    /**
     * @param value The name of the Elastic Beanstalk application to associate with this configuration template.
     */
    @JvmName("oadtjnjpytxipgww")
    public suspend fun applicationName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.applicationName = mapped
    }

    /**
     * @param value The name of the configuration template
     */
    @JvmName("yeepxpotukliabss")
    public suspend fun templateName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.templateName = mapped
    }

    internal fun build(): GetConfigurationTemplatePlainArgs = GetConfigurationTemplatePlainArgs(
        applicationName = applicationName ?: throw PulumiNullFieldException("applicationName"),
        templateName = templateName ?: throw PulumiNullFieldException("templateName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy