interface CfnDLPSettingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDLPSettingProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDLPSettingProps |
Java | software.amazon.awscdk.services.quicksight.CfnDLPSettingProps |
Python | aws_cdk.aws_quicksight.CfnDLPSettingProps |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDLPSettingProps |
Properties for defining a CfnDLPSetting.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const cfnDLPSettingProps: quicksight.CfnDLPSettingProps = {
dlpSettingId: 'dlpSettingId',
enabled: false,
name: 'name',
providerConfig: {
microsoftPurview: {
credentials: {
secretArn: 'secretArn',
},
labelActionMappings: [{
action: 'action',
labelId: 'labelId',
labelName: 'labelName',
}],
unmappedAction: 'unmappedAction',
},
},
providerOutageAction: 'providerOutageAction',
providerType: 'providerType',
// the properties below are optional
awsAccountId: 'awsAccountId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dlp | string | |
| enabled | boolean | IResolvable | |
| name | string | |
| provider | IResolvable | Provider | |
| provider | string | |
| provider | string | |
| aws | string | |
| tags? | Cfn[] |
dlpSettingId
Type:
string
enabled
Type:
boolean | IResolvable
name
Type:
string
providerConfig
Type:
IResolvable | Provider
providerOutageAction
Type:
string
providerType
Type:
string
awsAccountId?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript