UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

39 lines (38 loc) 1.17 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::DataBrew::Ruleset. */ export declare function getRuleset(args: GetRulesetArgs, opts?: pulumi.InvokeOptions): Promise<GetRulesetResult>; export interface GetRulesetArgs { /** * Name of the Ruleset */ name: string; } export interface GetRulesetResult { /** * Description of the Ruleset */ readonly description?: string; /** * List of the data quality rules in the ruleset */ readonly rules?: outputs.databrew.RulesetRule[]; /** * 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?: outputs.Tag[]; } /** * Resource schema for AWS::DataBrew::Ruleset. */ export declare function getRulesetOutput(args: GetRulesetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRulesetResult>; export interface GetRulesetOutputArgs { /** * Name of the Ruleset */ name: pulumi.Input<string>; }