com.pulumi.awsnative.route53.kotlin.outputs.HealthCheckAlarmIdentifier.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.
@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(),
)
}
}