![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.licensemanager.kotlin.outputs.LicenseIssuerData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.licensemanager.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property name Issuer name.
* @property signKey Asymmetric KMS key from AWS Key Management Service . The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
*/
public data class LicenseIssuerData(
public val name: String,
public val signKey: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.licensemanager.outputs.LicenseIssuerData): LicenseIssuerData = LicenseIssuerData(
name = javaType.name(),
signKey = javaType.signKey().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy