RemediationConfigurationParameter

data class RemediationConfigurationParameter(val name: String, val resourceValue: String? = null, val staticValue: String? = null, val staticValues: List<String>? = null)

Constructors

Link copied to clipboard
constructor(name: String, resourceValue: String? = null, staticValue: String? = null, staticValues: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Name of the attribute.

Link copied to clipboard
val resourceValue: String? = null

Value is dynamic and changes at run-time.

Link copied to clipboard
val staticValue: String? = null

Value is static and does not change at run-time.

Link copied to clipboard
val staticValues: List<String>? = null

List of static values.