
com.pulumi.awsnative.apprunner.kotlin.outputs.ServiceAuthenticationConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.apprunner.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Authentication Configuration
* @property accessRoleArn Access Role Arn
* @property connectionArn Connection Arn
*/
public data class ServiceAuthenticationConfiguration(
public val accessRoleArn: String? = null,
public val connectionArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.apprunner.outputs.ServiceAuthenticationConfiguration): ServiceAuthenticationConfiguration = ServiceAuthenticationConfiguration(
accessRoleArn = javaType.accessRoleArn().map({ args0 -> args0 }).orElse(null),
connectionArn = javaType.connectionArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy