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

com.pulumi.awsnative.iotsitewise.kotlin.outputs.GetDashboardResult.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.iotsitewise.kotlin.outputs

import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property dashboardArn The ARN of the dashboard.
 * @property dashboardDefinition The dashboard definition specified in a JSON literal.
 * @property dashboardDescription A description for the dashboard.
 * @property dashboardId The ID of the dashboard.
 * @property dashboardName A friendly name for the dashboard.
 * @property tags A list of key-value pairs that contain metadata for the dashboard.
 */
public data class GetDashboardResult(
    public val dashboardArn: String? = null,
    public val dashboardDefinition: String? = null,
    public val dashboardDescription: String? = null,
    public val dashboardId: String? = null,
    public val dashboardName: String? = null,
    public val tags: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.iotsitewise.outputs.GetDashboardResult): GetDashboardResult = GetDashboardResult(
            dashboardArn = javaType.dashboardArn().map({ args0 -> args0 }).orElse(null),
            dashboardDefinition = javaType.dashboardDefinition().map({ args0 -> args0 }).orElse(null),
            dashboardDescription = javaType.dashboardDescription().map({ args0 -> args0 }).orElse(null),
            dashboardId = javaType.dashboardId().map({ args0 -> args0 }).orElse(null),
            dashboardName = javaType.dashboardName().map({ args0 -> args0 }).orElse(null),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy