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

com.pulumi.aws.appstream.kotlin.inputs.ImageBuilderDomainJoinInfoArgs.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: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.appstream.kotlin.inputs

import com.pulumi.aws.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 Fully qualified name of the directory (for example, corp.example.com).
 * @property organizationalUnitDistinguishedName 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.aws.appstream.inputs.ImageBuilderDomainJoinInfoArgs =
        com.pulumi.aws.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 Fully qualified name of the directory (for example, corp.example.com).
     */
    @JvmName("svqeqsdhnbgqwuvg")
    public suspend fun directoryName(`value`: Output) {
        this.directoryName = value
    }

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

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

    /**
     * @param value Distinguished name of the organizational unit for computer accounts.
     */
    @JvmName("qmopavnhrhgllmrf")
    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 - 2024 Weber Informatics LLC | Privacy Policy