
com.pulumi.azurenative.security.kotlin.outputs.DefenderCspmAwsOfferingResponseDatabasesDspm.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.security.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* The databases DSPM configuration
* @property cloudRoleArn The cloud role ARN in AWS for this feature
* @property enabled Is databases DSPM protection enabled
*/
public data class DefenderCspmAwsOfferingResponseDatabasesDspm(
public val cloudRoleArn: String? = null,
public val enabled: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.security.outputs.DefenderCspmAwsOfferingResponseDatabasesDspm): DefenderCspmAwsOfferingResponseDatabasesDspm = DefenderCspmAwsOfferingResponseDatabasesDspm(
cloudRoleArn = javaType.cloudRoleArn().map({ args0 -> args0 }).orElse(null),
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy