Module Values.DescribeRulesetResponseSource

Retrieves detailed information about the ruleset.

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

    The name of the ruleset.

    *)
  2. description : RulesetDescription.t option;
    (*

    The description of the ruleset.

    *)
  3. targetArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.

    *)
  4. rules : RuleList.t option;
    (*

    A list of rules that are defined with the ruleset. A rule includes one or more checks to be validated on a DataBrew dataset.

    *)
  5. createDate : Date.t option;
    (*

    The date and time that the ruleset was created.

    *)
  6. createdBy : CreatedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who created the ruleset.

    *)
  7. lastModifiedBy : LastModifiedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who last modified the ruleset.

    *)
  8. lastModifiedDate : Date.t option;
    (*

    The modification date and time of the ruleset.

    *)
  9. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the ruleset.

    *)
  10. tags : TagMap.t option;
    (*

    Metadata tags that have been applied to the ruleset.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?description:??? -> ?targetArn:??? -> ?rules:??? -> ?createDate:??? -> ?createdBy:??? -> ?lastModifiedBy:??? -> ?lastModifiedDate:??? -> ?resourceArn:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Disabled.t | `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list | `Map of ([> `String of ValueReference.t ] * [> `String of ConditionValue.t ]) list | `String of RuleName.t | `Structure of (string * [> `Double of ThresholdValue.t | `Enum of string ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of RulesetName.t | `Timestamp of Date.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