Modifying Properties Args
data class ModifyingPropertiesArgs(val activeValue: Output<String>? = null, val name: Output<String>? = null, val pendingValue: Output<String>? = null, val valueType: Output<PropertyValueTypeEnumValueArgs>? = null) : ConvertibleToJava<ModifyingPropertiesArgs>
Definition of ModifyingProperties
Constructors
Link copied to clipboard
constructor(activeValue: Output<String>? = null, name: Output<String>? = null, pendingValue: Output<String>? = null, valueType: Output<PropertyValueTypeEnumValueArgs>? = null)
Properties
Link copied to clipboard
The current value of the domain property that is being modified.
Link copied to clipboard
The value that the property that is currently being modified will eventually have.
Link copied to clipboard
The type of value that is currently being modified. Properties can have two types:
-
PLAIN_TEXT
: Contain direct values such as '1', 'True', or 'c5.large.search'. -
STRINGIFIED_JSON
: Contain content in JSON format, such as {'Enabled':'True'}'.