
com.pulumi.awsnative.nimblestudio.kotlin.outputs.StudioComponentLicenseServiceConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.nimblestudio.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* 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 StudioComponentLicenseServiceConfiguration(
public val endpoint: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.nimblestudio.outputs.StudioComponentLicenseServiceConfiguration): StudioComponentLicenseServiceConfiguration = StudioComponentLicenseServiceConfiguration(
endpoint = javaType.endpoint().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy