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

com.pulumi.awsnative.acmpca.kotlin.inputs.CertificateOtherNameArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.acmpca.kotlin.inputs

import com.pulumi.awsnative.acmpca.inputs.CertificateOtherNameArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Defines a custom ASN.1 X.400 ``GeneralName`` using an object identifier (OID) and value. The OID must satisfy the regular expression shown below. For more information, see NIST's definition of [Object Identifier (OID)](https://docs.aws.amazon.com/https://csrc.nist.gov/glossary/term/Object_Identifier).
 * @property typeId Specifies an OID.
 * @property value Specifies an OID value.
 */
public data class CertificateOtherNameArgs(
    public val typeId: Output,
    public val `value`: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.acmpca.inputs.CertificateOtherNameArgs =
        com.pulumi.awsnative.acmpca.inputs.CertificateOtherNameArgs.builder()
            .typeId(typeId.applyValue({ args0 -> args0 }))
            .`value`(`value`.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [CertificateOtherNameArgs].
 */
@PulumiTagMarker
public class CertificateOtherNameArgsBuilder internal constructor() {
    private var typeId: Output? = null

    private var `value`: Output? = null

    /**
     * @param value Specifies an OID.
     */
    @JvmName("crrediyqslngcwnx")
    public suspend fun typeId(`value`: Output) {
        this.typeId = value
    }

    /**
     * @param value Specifies an OID value.
     */
    @JvmName("ugbotmmwgebavaam")
    public suspend fun `value`(`value`: Output) {
        this.`value` = value
    }

    /**
     * @param value Specifies an OID.
     */
    @JvmName("tgcumqargytomdge")
    public suspend fun typeId(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.typeId = mapped
    }

    /**
     * @param value Specifies an OID value.
     */
    @JvmName("rymwrebjvegjglhj")
    public suspend fun `value`(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.`value` = mapped
    }

    internal fun build(): CertificateOtherNameArgs = CertificateOtherNameArgs(
        typeId = typeId ?: throw PulumiNullFieldException("typeId"),
        `value` = `value` ?: throw PulumiNullFieldException("value"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy