Module Values_1.CreateDataQualityRulesetRequestSource

A request to create a data quality ruleset.

Sourcetype nonrec t = {
  1. name : Values_0.NameString.t;
    (*

    A unique name for the data quality ruleset.

    *)
  2. description : Values_0.DescriptionString.t option;
    (*

    A description of the data quality ruleset.

    *)
  3. ruleset : DataQualityRulesetString.t;
    (*

    A Data Quality Definition Language (DQDL) ruleset. For more information, see the Glue developer guide.

    *)
  4. tags : TagsMap.t option;
    (*

    A list of tags applied to the data quality ruleset.

    *)
  5. targetTable : DataQualityTargetTable.t option;
    (*

    A target table associated with the data quality ruleset.

    *)
  6. dataQualitySecurityConfiguration : Values_0.NameString.t option;
    (*

    The name of the security configuration created with the data quality encryption option.

    *)
  7. clientToken : Values_0.HashString.t option;
    (*

    Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?targetTable:??? -> ?dataQualitySecurityConfiguration:??? -> ?clientToken:??? -> name:Values_0.NameString.t -> ruleset:DataQualityRulesetString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Values_0.NameString.t | `Structure of (string * [> `String of Values_0.NameString.t ]) list ]) 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