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

com.pulumi.awsnative.route53.kotlin.outputs.HealthCheckAlarmIdentifier.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.route53.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A complex type that identifies the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether the specified health check is healthy.
 * @property name The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.
 * @property region For the CloudWatch alarm that you want Route 53 health checkers to use to determine whether this health check is healthy, the region that the alarm was created in.
 */
public data class HealthCheckAlarmIdentifier(
    public val name: String,
    public val region: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.route53.outputs.HealthCheckAlarmIdentifier): HealthCheckAlarmIdentifier = HealthCheckAlarmIdentifier(
            name = javaType.name(),
            region = javaType.region(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy