![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iot.kotlin.outputs.TopicRuleIotSiteWiseAction.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iot.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property putAssetPropertyValueEntries A list of asset property value entries.
* @property roleArn The ARN of the role that grants AWS IoT permission to send an asset property value to AWS IoT SiteWise. ( `"Action": "iotsitewise:BatchPutAssetPropertyValue"` ). The trust policy can restrict access to specific asset hierarchy paths.
*/
public data class TopicRuleIotSiteWiseAction(
public val putAssetPropertyValueEntries: List,
public val roleArn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iot.outputs.TopicRuleIotSiteWiseAction): TopicRuleIotSiteWiseAction = TopicRuleIotSiteWiseAction(
putAssetPropertyValueEntries = javaType.putAssetPropertyValueEntries().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.iot.kotlin.outputs.TopicRulePutAssetPropertyValueEntry.Companion.toKotlin(args0)
})
}),
roleArn = javaType.roleArn(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy