com.pulumi.awsnative.fms.kotlin.outputs.PolicyIeMap.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.fms.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* An FMS includeMap or excludeMap.
* @property account The account list for the map.
* @property orgunit The organizational unit list for the map.
*/
public data class PolicyIeMap(
public val account: List? = null,
public val orgunit: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.fms.outputs.PolicyIeMap): PolicyIeMap =
PolicyIeMap(
account = javaType.account().map({ args0 -> args0 }),
orgunit = javaType.orgunit().map({ args0 -> args0 }),
)
}
}