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

com.pulumi.awsnative.quicksight.kotlin.outputs.DashboardCustomActionUrlOperation.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.quicksight.kotlin.outputs

import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardUrlTargetConfiguration
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property urlTarget The target of the `CustomActionURLOperation` .
 * Valid values are defined as follows:
 * - `NEW_TAB` : Opens the target URL in a new browser tab.
 * - `NEW_WINDOW` : Opens the target URL in a new browser window.
 * - `SAME_TAB` : Opens the target URL in the same browser tab.
 * @property urlTemplate THe URL link of the `CustomActionURLOperation` .
 */
public data class DashboardCustomActionUrlOperation(
    public val urlTarget: DashboardUrlTargetConfiguration,
    public val urlTemplate: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.DashboardCustomActionUrlOperation): DashboardCustomActionUrlOperation = DashboardCustomActionUrlOperation(
            urlTarget = javaType.urlTarget().let({ args0 ->
                com.pulumi.awsnative.quicksight.kotlin.enums.DashboardUrlTargetConfiguration.Companion.toKotlin(args0)
            }),
            urlTemplate = javaType.urlTemplate(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy