interface CfnRulesetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnRulesetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnRulesetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnRulesetMixinProps |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnRulesetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnRulesetMixinProps |
Properties for CfnRulesetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-ruleset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const cfnRulesetMixinProps: databrew_mixins.CfnRulesetMixinProps = {
description: 'description',
name: 'name',
rules: [{
checkExpression: 'checkExpression',
columnSelectors: [{
name: 'name',
regex: 'regex',
}],
disabled: false,
name: 'name',
substitutionMap: [{
value: 'value',
valueReference: 'valueReference',
}],
threshold: {
type: 'type',
unit: 'unit',
value: 123,
},
}],
tags: [{
key: 'key',
value: 'value',
}],
targetArn: 'targetArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the ruleset. |
| name? | string | The name of the ruleset. |
| rules? | IResolvable | (IResolvable | Rule)[] | Contains metadata about the ruleset. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| target | string | The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with. |
description?
Type:
string
(optional)
The description of the ruleset.
name?
Type:
string
(optional)
The name of the ruleset.
rules?
Type:
IResolvable | (IResolvable | Rule)[]
(optional)
Contains metadata about the ruleset.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
targetArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is associated with.

.NET
Go
Java
Python
TypeScript