![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iot.kotlin.outputs.MitigationActionAddThingsToThingGroupParams.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iot.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Parameters to define a mitigation action that moves devices associated with a certificate to one or more specified thing groups, typically for quarantine.
* @property overrideDynamicGroups Specifies if this mitigation action can move the things that triggered the mitigation action out of one or more dynamic thing groups.
* @property thingGroupNames The list of groups to which you want to add the things that triggered the mitigation action.
*/
public data class MitigationActionAddThingsToThingGroupParams(
public val overrideDynamicGroups: Boolean? = null,
public val thingGroupNames: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iot.outputs.MitigationActionAddThingsToThingGroupParams): MitigationActionAddThingsToThingGroupParams = MitigationActionAddThingsToThingGroupParams(
overrideDynamicGroups = javaType.overrideDynamicGroups().map({ args0 -> args0 }).orElse(null),
thingGroupNames = javaType.thingGroupNames().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy