interface CfnDLPSettingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDLPSettingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDLPSettingMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDLPSettingMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDLPSettingMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDLPSettingMixinProps |
Properties for CfnDLPSettingPropsMixin.
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/cfn-property-mixins';
const cfnDLPSettingMixinProps: quicksight.CfnDLPSettingMixinProps = {
awsAccountId: 'awsAccountId',
dlpSettingId: 'dlpSettingId',
enabled: false,
name: 'name',
providerConfig: {
microsoftPurview: {
credentials: {
secretArn: 'secretArn',
},
labelActionMappings: [{
action: 'action',
labelId: 'labelId',
labelName: 'labelName',
}],
unmappedAction: 'unmappedAction',
},
},
providerOutageAction: 'providerOutageAction',
providerType: 'providerType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | |
| dlp | string | |
| enabled? | boolean | IResolvable | |
| name? | string | |
| provider | IResolvable | Provider | |
| provider | string | |
| provider | string | |
| tags? | Cfn[] |
awsAccountId?
Type:
string
(optional)
dlpSettingId?
Type:
string
(optional)
enabled?
Type:
boolean | IResolvable
(optional, default: false)
name?
Type:
string
(optional)
providerConfig?
Type:
IResolvable | Provider
(optional)
providerOutageAction?
Type:
string
(optional)
providerType?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript