![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.appflow.kotlin.outputs.ConnectorProfileCustomAuthCredentials.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appflow.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property credentialsMap A map that holds custom authentication credentials.
* @property customAuthenticationType The custom authentication type that the connector uses.
*/
public data class ConnectorProfileCustomAuthCredentials(
public val credentialsMap: Map? = null,
public val customAuthenticationType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.ConnectorProfileCustomAuthCredentials): ConnectorProfileCustomAuthCredentials = ConnectorProfileCustomAuthCredentials(
credentialsMap = javaType.credentialsMap().map({ args0 -> args0.key.to(args0.value) }).toMap(),
customAuthenticationType = javaType.customAuthenticationType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy