Module Values.RuleConfigurationPropertySource

Represents information about a rule configuration property.

Sourcetype nonrec t = {
  1. name : RuleConfigurationKey.t option;
    (*

    The name of the rule configuration property.

    *)
  2. required : Boolean.t option;
    (*

    Whether the configuration property is a required value.

    *)
  3. key : Boolean.t option;
    (*

    Whether the configuration property is a key.

    *)
  4. 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.

    *)
  5. 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.

    *)
  6. description : Description.t option;
    (*

    The description of the action configuration property that is displayed to users.

    *)
  7. type_ : RuleConfigurationPropertyType.t option;
    (*

    The type of the configuration property.

    *)
}
Sourceval make : ?name:??? -> ?required:??? -> ?key:??? -> ?secret:??? -> ?queryable:??? -> ?description:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of RuleConfigurationKey.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t