Values.QueryParameterSourceThis structure defines a query parameter for a saved CloudWatch Logs Insights query definition. Query parameters are supported only for Logs Insights QL queries. They are placeholder variables that you can reference in a query string using the {{parameterName}} syntax. Each parameter can include a default value and a description.
type nonrec t = {name : QueryParameterName.t;The name of the query parameter. A query parameter name must start with a letter or underscore, and contain only letters, digits, and underscores.
*)defaultValue : QueryParameterDefaultValue.t option;The default value to use for this query parameter if no value is supplied at execution time.
*)description : QueryParameterDescription.t option;A description of the query parameter that explains its purpose or expected values.
*)}