![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.acmpca.kotlin.outputs.CertificateCustomAttribute.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.acmpca.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Defines the X.500 relative distinguished name (RDN).
* @property objectIdentifier Specifies the object identifier (OID) of the attribute type of the relative distinguished name (RDN).
* @property value Specifies the attribute value of relative distinguished name (RDN).
*/
public data class CertificateCustomAttribute(
public val objectIdentifier: String,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.acmpca.outputs.CertificateCustomAttribute): CertificateCustomAttribute = CertificateCustomAttribute(
objectIdentifier = javaType.objectIdentifier(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy