Try AWS Native preview for resources not in the classic version.
aws.glue.DataQualityRuleset
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a Glue Data Quality Ruleset Resource. You can refer to the Glue Developer Guide for a full explanation of the Glue Data Quality Ruleset functionality
Example Usage
Basic
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Glue.DataQualityRuleset("example", new()
{
Ruleset = "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewDataQualityRuleset(ctx, "example", &glue.DataQualityRulesetArgs{
Ruleset: pulumi.String("Rules = [Completeness \"colA\" between 0.4 and 0.8]"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.DataQualityRuleset;
import com.pulumi.aws.glue.DataQualityRulesetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DataQualityRuleset("example", DataQualityRulesetArgs.builder()
.ruleset("Rules = [Completeness \"colA\" between 0.4 and 0.8]")
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.glue.DataQualityRuleset("example", ruleset="Rules = [Completeness \"colA\" between 0.4 and 0.8]")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.DataQualityRuleset("example", {ruleset: "Rules = [Completeness \"colA\" between 0.4 and 0.8]"});
resources:
example:
type: aws:glue:DataQualityRuleset
properties:
ruleset: Rules = [Completeness "colA" between 0.4 and 0.8]
With description
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Glue.DataQualityRuleset("example", new()
{
Description = "example",
Ruleset = "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewDataQualityRuleset(ctx, "example", &glue.DataQualityRulesetArgs{
Description: pulumi.String("example"),
Ruleset: pulumi.String("Rules = [Completeness \"colA\" between 0.4 and 0.8]"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.DataQualityRuleset;
import com.pulumi.aws.glue.DataQualityRulesetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DataQualityRuleset("example", DataQualityRulesetArgs.builder()
.description("example")
.ruleset("Rules = [Completeness \"colA\" between 0.4 and 0.8]")
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.glue.DataQualityRuleset("example",
description="example",
ruleset="Rules = [Completeness \"colA\" between 0.4 and 0.8]")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.DataQualityRuleset("example", {
description: "example",
ruleset: "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
});
resources:
example:
type: aws:glue:DataQualityRuleset
properties:
description: example
ruleset: Rules = [Completeness "colA" between 0.4 and 0.8]
With tags
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Glue.DataQualityRuleset("example", new()
{
Ruleset = "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
Tags =
{
{ "hello", "world" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewDataQualityRuleset(ctx, "example", &glue.DataQualityRulesetArgs{
Ruleset: pulumi.String("Rules = [Completeness \"colA\" between 0.4 and 0.8]"),
Tags: pulumi.StringMap{
"hello": pulumi.String("world"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.DataQualityRuleset;
import com.pulumi.aws.glue.DataQualityRulesetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DataQualityRuleset("example", DataQualityRulesetArgs.builder()
.ruleset("Rules = [Completeness \"colA\" between 0.4 and 0.8]")
.tags(Map.of("hello", "world"))
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.glue.DataQualityRuleset("example",
ruleset="Rules = [Completeness \"colA\" between 0.4 and 0.8]",
tags={
"hello": "world",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.DataQualityRuleset("example", {
ruleset: "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
tags: {
hello: "world",
},
});
resources:
example:
type: aws:glue:DataQualityRuleset
properties:
ruleset: Rules = [Completeness "colA" between 0.4 and 0.8]
tags:
hello: world
With target_table
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Glue.DataQualityRuleset("example", new()
{
Ruleset = "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
TargetTable = new Aws.Glue.Inputs.DataQualityRulesetTargetTableArgs
{
DatabaseName = aws_glue_catalog_database.Example.Name,
TableName = aws_glue_catalog_table.Example.Name,
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/glue"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := glue.NewDataQualityRuleset(ctx, "example", &glue.DataQualityRulesetArgs{
Ruleset: pulumi.String("Rules = [Completeness \"colA\" between 0.4 and 0.8]"),
TargetTable: &glue.DataQualityRulesetTargetTableArgs{
DatabaseName: pulumi.Any(aws_glue_catalog_database.Example.Name),
TableName: pulumi.Any(aws_glue_catalog_table.Example.Name),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.glue.DataQualityRuleset;
import com.pulumi.aws.glue.DataQualityRulesetArgs;
import com.pulumi.aws.glue.inputs.DataQualityRulesetTargetTableArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DataQualityRuleset("example", DataQualityRulesetArgs.builder()
.ruleset("Rules = [Completeness \"colA\" between 0.4 and 0.8]")
.targetTable(DataQualityRulesetTargetTableArgs.builder()
.databaseName(aws_glue_catalog_database.example().name())
.tableName(aws_glue_catalog_table.example().name())
.build())
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.glue.DataQualityRuleset("example",
ruleset="Rules = [Completeness \"colA\" between 0.4 and 0.8]",
target_table=aws.glue.DataQualityRulesetTargetTableArgs(
database_name=aws_glue_catalog_database["example"]["name"],
table_name=aws_glue_catalog_table["example"]["name"],
))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.glue.DataQualityRuleset("example", {
ruleset: "Rules = [Completeness \"colA\" between 0.4 and 0.8]",
targetTable: {
databaseName: aws_glue_catalog_database.example.name,
tableName: aws_glue_catalog_table.example.name,
},
});
resources:
example:
type: aws:glue:DataQualityRuleset
properties:
ruleset: Rules = [Completeness "colA" between 0.4 and 0.8]
targetTable:
databaseName: ${aws_glue_catalog_database.example.name}
tableName: ${aws_glue_catalog_table.example.name}
Create DataQualityRuleset Resource
new DataQualityRuleset(name: string, args: DataQualityRulesetArgs, opts?: CustomResourceOptions);
@overload
def DataQualityRuleset(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
name: Optional[str] = None,
ruleset: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
target_table: Optional[DataQualityRulesetTargetTableArgs] = None)
@overload
def DataQualityRuleset(resource_name: str,
args: DataQualityRulesetArgs,
opts: Optional[ResourceOptions] = None)
func NewDataQualityRuleset(ctx *Context, name string, args DataQualityRulesetArgs, opts ...ResourceOption) (*DataQualityRuleset, error)
public DataQualityRuleset(string name, DataQualityRulesetArgs args, CustomResourceOptions? opts = null)
public DataQualityRuleset(String name, DataQualityRulesetArgs args)
public DataQualityRuleset(String name, DataQualityRulesetArgs args, CustomResourceOptions options)
type: aws:glue:DataQualityRuleset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataQualityRulesetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DataQualityRulesetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DataQualityRulesetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataQualityRulesetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataQualityRulesetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DataQualityRuleset Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DataQualityRuleset resource accepts the following input properties:
- Ruleset string
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- Description string
Description of the data quality ruleset.
- Name string
Name of the data quality ruleset.
- Dictionary<string, string>
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Target
Table DataQuality Ruleset Target Table A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- Ruleset string
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- Description string
Description of the data quality ruleset.
- Name string
Name of the data quality ruleset.
- map[string]string
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Target
Table DataQuality Ruleset Target Table Args A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- ruleset String
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- description String
Description of the data quality ruleset.
- name String
Name of the data quality ruleset.
- Map<String,String>
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- target
Table DataQuality Ruleset Target Table A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- ruleset string
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- description string
Description of the data quality ruleset.
- name string
Name of the data quality ruleset.
- {[key: string]: string}
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- target
Table DataQuality Ruleset Target Table A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- ruleset str
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- description str
Description of the data quality ruleset.
- name str
Name of the data quality ruleset.
- Mapping[str, str]
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- target_
table DataQuality Ruleset Target Table Args A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- ruleset String
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- description String
Description of the data quality ruleset.
- name String
Name of the data quality ruleset.
- Map<String>
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- target
Table Property Map A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataQualityRuleset resource produces the following output properties:
- Arn string
ARN of the Glue Data Quality Ruleset.
- Created
On string The time and date that this data quality ruleset was created.
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified stringOn The time and date that this data quality ruleset was created.
- Recommendation
Run stringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
ARN of the Glue Data Quality Ruleset.
- Created
On string The time and date that this data quality ruleset was created.
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified stringOn The time and date that this data quality ruleset was created.
- Recommendation
Run stringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
ARN of the Glue Data Quality Ruleset.
- created
On String The time and date that this data quality ruleset was created.
- id String
The provider-assigned unique ID for this managed resource.
- last
Modified StringOn The time and date that this data quality ruleset was created.
- recommendation
Run StringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
ARN of the Glue Data Quality Ruleset.
- created
On string The time and date that this data quality ruleset was created.
- id string
The provider-assigned unique ID for this managed resource.
- last
Modified stringOn The time and date that this data quality ruleset was created.
- recommendation
Run stringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
ARN of the Glue Data Quality Ruleset.
- created_
on str The time and date that this data quality ruleset was created.
- id str
The provider-assigned unique ID for this managed resource.
- last_
modified_ stron The time and date that this data quality ruleset was created.
- recommendation_
run_ strid When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
ARN of the Glue Data Quality Ruleset.
- created
On String The time and date that this data quality ruleset was created.
- id String
The provider-assigned unique ID for this managed resource.
- last
Modified StringOn The time and date that this data quality ruleset was created.
- recommendation
Run StringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing DataQualityRuleset Resource
Get an existing DataQualityRuleset resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DataQualityRulesetState, opts?: CustomResourceOptions): DataQualityRuleset
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
created_on: Optional[str] = None,
description: Optional[str] = None,
last_modified_on: Optional[str] = None,
name: Optional[str] = None,
recommendation_run_id: Optional[str] = None,
ruleset: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
target_table: Optional[DataQualityRulesetTargetTableArgs] = None) -> DataQualityRuleset
func GetDataQualityRuleset(ctx *Context, name string, id IDInput, state *DataQualityRulesetState, opts ...ResourceOption) (*DataQualityRuleset, error)
public static DataQualityRuleset Get(string name, Input<string> id, DataQualityRulesetState? state, CustomResourceOptions? opts = null)
public static DataQualityRuleset get(String name, Output<String> id, DataQualityRulesetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
ARN of the Glue Data Quality Ruleset.
- Created
On string The time and date that this data quality ruleset was created.
- Description string
Description of the data quality ruleset.
- Last
Modified stringOn The time and date that this data quality ruleset was created.
- Name string
Name of the data quality ruleset.
- Recommendation
Run stringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- Ruleset string
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- Dictionary<string, string>
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- Target
Table DataQuality Ruleset Target Table A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- Arn string
ARN of the Glue Data Quality Ruleset.
- Created
On string The time and date that this data quality ruleset was created.
- Description string
Description of the data quality ruleset.
- Last
Modified stringOn The time and date that this data quality ruleset was created.
- Name string
Name of the data quality ruleset.
- Recommendation
Run stringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- Ruleset string
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- map[string]string
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- Target
Table DataQuality Ruleset Target Table Args A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- arn String
ARN of the Glue Data Quality Ruleset.
- created
On String The time and date that this data quality ruleset was created.
- description String
Description of the data quality ruleset.
- last
Modified StringOn The time and date that this data quality ruleset was created.
- name String
Name of the data quality ruleset.
- recommendation
Run StringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- ruleset String
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- Map<String,String>
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- target
Table DataQuality Ruleset Target Table A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- arn string
ARN of the Glue Data Quality Ruleset.
- created
On string The time and date that this data quality ruleset was created.
- description string
Description of the data quality ruleset.
- last
Modified stringOn The time and date that this data quality ruleset was created.
- name string
Name of the data quality ruleset.
- recommendation
Run stringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- ruleset string
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- {[key: string]: string}
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- target
Table DataQuality Ruleset Target Table A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- arn str
ARN of the Glue Data Quality Ruleset.
- created_
on str The time and date that this data quality ruleset was created.
- description str
Description of the data quality ruleset.
- last_
modified_ stron The time and date that this data quality ruleset was created.
- name str
Name of the data quality ruleset.
- recommendation_
run_ strid When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- ruleset str
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- Mapping[str, str]
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- target_
table DataQuality Ruleset Target Table Args A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
- arn String
ARN of the Glue Data Quality Ruleset.
- created
On String The time and date that this data quality ruleset was created.
- description String
Description of the data quality ruleset.
- last
Modified StringOn The time and date that this data quality ruleset was created.
- name String
Name of the data quality ruleset.
- recommendation
Run StringId When a ruleset was created from a recommendation run, this run ID is generated to link the two together.
- ruleset String
A Data Quality Definition Language (DQDL) ruleset. For more information, see the AWS Glue developer guide.
- Map<String>
Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.- target
Table Property Map A Configuration block specifying a target table associated with the data quality ruleset. See
target_table
below.
Supporting Types
DataQualityRulesetTargetTable, DataQualityRulesetTargetTableArgs
- Database
Name string Name of the database where the AWS Glue table exists.
- Table
Name string Name of the AWS Glue table.
- Catalog
Id string The catalog id where the AWS Glue table exists.
- Database
Name string Name of the database where the AWS Glue table exists.
- Table
Name string Name of the AWS Glue table.
- Catalog
Id string The catalog id where the AWS Glue table exists.
- database
Name String Name of the database where the AWS Glue table exists.
- table
Name String Name of the AWS Glue table.
- catalog
Id String The catalog id where the AWS Glue table exists.
- database
Name string Name of the database where the AWS Glue table exists.
- table
Name string Name of the AWS Glue table.
- catalog
Id string The catalog id where the AWS Glue table exists.
- database_
name str Name of the database where the AWS Glue table exists.
- table_
name str Name of the AWS Glue table.
- catalog_
id str The catalog id where the AWS Glue table exists.
- database
Name String Name of the database where the AWS Glue table exists.
- table
Name String Name of the AWS Glue table.
- catalog
Id String The catalog id where the AWS Glue table exists.
Import
Using pulumi import
, import Glue Data Quality Ruleset using the name
. For example:
$ pulumi import aws:glue/dataQualityRuleset:DataQualityRuleset example exampleName
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.