import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource schema for AWS::DataBrew::Ruleset. */ export declare class Ruleset extends pulumi.CustomResource { /** * Get an existing Ruleset resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Ruleset; /** * Returns true if the given object is an instance of Ruleset. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Ruleset; /** * Description of the Ruleset */ readonly description: pulumi.Output; /** * Name of the Ruleset */ readonly name: pulumi.Output; /** * List of the data quality rules in the ruleset */ readonly rules: pulumi.Output; /** * An array of key-value pairs to apply to this resource. * * For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . */ readonly tags: pulumi.Output; /** * Arn of the target resource (dataset) to apply the ruleset to */ readonly targetArn: pulumi.Output; /** * Create a Ruleset resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: RulesetArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Ruleset resource. */ export interface RulesetArgs { /** * Description of the Ruleset */ description?: pulumi.Input; /** * Name of the Ruleset */ name?: pulumi.Input; /** * List of the data quality rules in the ruleset */ rules: pulumi.Input[]>; /** * An array of key-value pairs to apply to this resource. * * For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . */ tags?: pulumi.Input[]>; /** * Arn of the target resource (dataset) to apply the ruleset to */ targetArn: pulumi.Input; }