
com.pulumi.awsnative.appflow.kotlin.outputs.ConnectorProfileApiKeyCredentials.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appflow.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property apiKey The API key required for API key authentication.
* @property apiSecretKey The API secret key required for API key authentication.
*/
public data class ConnectorProfileApiKeyCredentials(
public val apiKey: String,
public val apiSecretKey: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appflow.outputs.ConnectorProfileApiKeyCredentials): ConnectorProfileApiKeyCredentials = ConnectorProfileApiKeyCredentials(
apiKey = javaType.apiKey(),
apiSecretKey = javaType.apiSecretKey().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy