![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.route53.kotlin.outputs.HostedZoneConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.route53.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A complex type that contains an optional comment about your hosted zone. If you don't want to specify a comment, omit both the ``HostedZoneConfig`` and ``Comment`` elements.
* @property comment Any comments that you want to include about the hosted zone.
*/
public data class HostedZoneConfig(
public val comment: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.route53.outputs.HostedZoneConfig): HostedZoneConfig = HostedZoneConfig(
comment = javaType.comment().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy