Values.RuleConfigurationPropertySourceRepresents information about a rule configuration property.
type nonrec t = {name : RuleConfigurationKey.t option;The name of the rule configuration property.
*)required : Boolean.t option;Whether the configuration property is a required value.
*)key : Boolean.t option;Whether the configuration property is a key.
*)secret : Boolean.t option;Whether the configuration property is secret. When updating a pipeline, passing * * * * * without changing any other values of the action preserves the previous value of the secret.
*)queryable : Boolean.t option;Indicates whether the property can be queried. If you create a pipeline with a condition and rule, and that rule contains a queryable property, the value for that configuration property is subject to other restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.
*)description : Description.t option;The description of the action configuration property that is displayed to users.
*)type_ : RuleConfigurationPropertyType.t option;The type of the configuration property.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of RuleConfigurationKey.t ])
list ]