com.pulumi.awsnative.nimblestudio.kotlin.inputs.StudioComponentLicenseServiceConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.nimblestudio.kotlin.inputs
import com.pulumi.awsnative.nimblestudio.inputs.StudioComponentLicenseServiceConfigurationArgs.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
/**
* The configuration for a license service that is associated with a studio
* resource.
* @property endpoint The endpoint of the license service that is accessed by the studio component
* resource.
*/
public data class StudioComponentLicenseServiceConfigurationArgs(
public val endpoint: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.nimblestudio.inputs.StudioComponentLicenseServiceConfigurationArgs =
com.pulumi.awsnative.nimblestudio.inputs.StudioComponentLicenseServiceConfigurationArgs.builder()
.endpoint(endpoint?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StudioComponentLicenseServiceConfigurationArgs].
*/
@PulumiTagMarker
public class StudioComponentLicenseServiceConfigurationArgsBuilder internal constructor() {
private var endpoint: Output? = null
/**
* @param value The endpoint of the license service that is accessed by the studio component
* resource.
*/
@JvmName("yoxuearsrxtikyen")
public suspend fun endpoint(`value`: Output) {
this.endpoint = value
}
/**
* @param value The endpoint of the license service that is accessed by the studio component
* resource.
*/
@JvmName("ehntsfoixtomowuc")
public suspend fun endpoint(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.endpoint = mapped
}
internal fun build(): StudioComponentLicenseServiceConfigurationArgs =
StudioComponentLicenseServiceConfigurationArgs(
endpoint = endpoint,
)
}