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

com.pulumi.awsnative.route53.kotlin.inputs.HostedZoneConfigArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.route53.kotlin.inputs

import com.pulumi.awsnative.route53.inputs.HostedZoneConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * 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 HostedZoneConfigArgs(
    public val comment: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.route53.inputs.HostedZoneConfigArgs =
        com.pulumi.awsnative.route53.inputs.HostedZoneConfigArgs.builder()
            .comment(comment?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [HostedZoneConfigArgs].
 */
@PulumiTagMarker
public class HostedZoneConfigArgsBuilder internal constructor() {
    private var comment: Output? = null

    /**
     * @param value Any comments that you want to include about the hosted zone.
     */
    @JvmName("gjuheaqkecjqluwv")
    public suspend fun comment(`value`: Output) {
        this.comment = value
    }

    /**
     * @param value Any comments that you want to include about the hosted zone.
     */
    @JvmName("abrrteouckmtqnbs")
    public suspend fun comment(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.comment = mapped
    }

    internal fun build(): HostedZoneConfigArgs = HostedZoneConfigArgs(
        comment = comment,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy