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

com.pulumi.awsnative.deadline.kotlin.outputs.GetMonitorResult.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.deadline.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property arn The Amazon Resource Name (ARN) of the monitor.
 * @property displayName The name of the monitor that displays on the Deadline Cloud console.
 * > This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
 * @property identityCenterApplicationArn The Amazon Resource Name (ARN) that the IAM Identity Center assigned to the monitor when it was created.
 * @property monitorId The unique identifier for the monitor.
 * @property roleArn The Amazon Resource Name (ARN) of the IAM role for the monitor. Users of the monitor use this role to access Deadline Cloud resources.
 * @property subdomain The subdomain used for the monitor URL. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.
 * @property url The complete URL of the monitor. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.
 */
public data class GetMonitorResult(
    public val arn: String? = null,
    public val displayName: String? = null,
    public val identityCenterApplicationArn: String? = null,
    public val monitorId: String? = null,
    public val roleArn: String? = null,
    public val subdomain: String? = null,
    public val url: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.deadline.outputs.GetMonitorResult): GetMonitorResult = GetMonitorResult(
            arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
            displayName = javaType.displayName().map({ args0 -> args0 }).orElse(null),
            identityCenterApplicationArn = javaType.identityCenterApplicationArn().map({ args0 ->
                args0
            }).orElse(null),
            monitorId = javaType.monitorId().map({ args0 -> args0 }).orElse(null),
            roleArn = javaType.roleArn().map({ args0 -> args0 }).orElse(null),
            subdomain = javaType.subdomain().map({ args0 -> args0 }).orElse(null),
            url = javaType.url().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy