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

com.pulumi.awsnative.appstream.kotlin.inputs.ImageBuilderDomainJoinInfoArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.appstream.kotlin.inputs

import com.pulumi.awsnative.appstream.inputs.ImageBuilderDomainJoinInfoArgs.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

/**
 *
 * @property directoryName The fully qualified name of the directory (for example, corp.example.com).
 * @property organizationalUnitDistinguishedName The distinguished name of the organizational unit for computer accounts.
 */
public data class ImageBuilderDomainJoinInfoArgs(
    public val directoryName: Output? = null,
    public val organizationalUnitDistinguishedName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.appstream.inputs.ImageBuilderDomainJoinInfoArgs =
        com.pulumi.awsnative.appstream.inputs.ImageBuilderDomainJoinInfoArgs.builder()
            .directoryName(directoryName?.applyValue({ args0 -> args0 }))
            .organizationalUnitDistinguishedName(
                organizationalUnitDistinguishedName?.applyValue({ args0 ->
                    args0
                }),
            ).build()
}

/**
 * Builder for [ImageBuilderDomainJoinInfoArgs].
 */
@PulumiTagMarker
public class ImageBuilderDomainJoinInfoArgsBuilder internal constructor() {
    private var directoryName: Output? = null

    private var organizationalUnitDistinguishedName: Output? = null

    /**
     * @param value The fully qualified name of the directory (for example, corp.example.com).
     */
    @JvmName("olpwhhyykmyarstn")
    public suspend fun directoryName(`value`: Output) {
        this.directoryName = value
    }

    /**
     * @param value The distinguished name of the organizational unit for computer accounts.
     */
    @JvmName("sokbjudrbkbpdowi")
    public suspend fun organizationalUnitDistinguishedName(`value`: Output) {
        this.organizationalUnitDistinguishedName = value
    }

    /**
     * @param value The fully qualified name of the directory (for example, corp.example.com).
     */
    @JvmName("dyjohleunxhdtgou")
    public suspend fun directoryName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.directoryName = mapped
    }

    /**
     * @param value The distinguished name of the organizational unit for computer accounts.
     */
    @JvmName("nabxmarpcctaybqq")
    public suspend fun organizationalUnitDistinguishedName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.organizationalUnitDistinguishedName = mapped
    }

    internal fun build(): ImageBuilderDomainJoinInfoArgs = ImageBuilderDomainJoinInfoArgs(
        directoryName = directoryName,
        organizationalUnitDistinguishedName = organizationalUnitDistinguishedName,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy