
com.pulumi.awsnative.ec2.kotlin.outputs.VerifiedAccessTrustProviderDeviceOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The options for device identity based trust providers.
* @property publicSigningKeyUrl URL Verified Access will use to verify authenticity of the device tokens.
* @property tenantId The ID of the tenant application with the device-identity provider.
*/
public data class VerifiedAccessTrustProviderDeviceOptions(
public val publicSigningKeyUrl: String? = null,
public val tenantId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.VerifiedAccessTrustProviderDeviceOptions): VerifiedAccessTrustProviderDeviceOptions = VerifiedAccessTrustProviderDeviceOptions(
publicSigningKeyUrl = javaType.publicSigningKeyUrl().map({ args0 -> args0 }).orElse(null),
tenantId = javaType.tenantId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy