com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessApplicationLandingPageDesign.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property buttonColor The button color of the landing page.
* @property buttonTextColor The button text color of the landing page.
* @property imageUrl The URL of the image to be displayed in the landing page.
* @property message The message of the landing page.
* @property title The title of the landing page.
*/
public data class ZeroTrustAccessApplicationLandingPageDesign(
public val buttonColor: String? = null,
public val buttonTextColor: String? = null,
public val imageUrl: String? = null,
public val message: String? = null,
public val title: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.ZeroTrustAccessApplicationLandingPageDesign): ZeroTrustAccessApplicationLandingPageDesign = ZeroTrustAccessApplicationLandingPageDesign(
buttonColor = javaType.buttonColor().map({ args0 -> args0 }).orElse(null),
buttonTextColor = javaType.buttonTextColor().map({ args0 -> args0 }).orElse(null),
imageUrl = javaType.imageUrl().map({ args0 -> args0 }).orElse(null),
message = javaType.message().map({ args0 -> args0 }).orElse(null),
title = javaType.title().map({ args0 -> args0 }).orElse(null),
)
}
}