Interface CfnDLPSettingProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDLPSettingProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:15.814Z") @Stability(Stable) public interface CfnDLPSettingProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 CfnDLPSettingProps cfnDLPSettingProps = CfnDLPSettingProps.builder()
         .dlpSettingId("dlpSettingId")
         .enabled(false)
         .name("name")
         .providerConfig(ProviderConfigProperty.builder()
                 .microsoftPurview(MicrosoftPurviewProviderConfigProperty.builder()
                         .credentials(MicrosoftPurviewCredentialsProperty.builder()
                                 .secretArn("secretArn")
                                 .build())
                         .labelActionMappings(List.of(LabelActionMappingProperty.builder()
                                 .action("action")
                                 .labelId("labelId")
                                 .labelName("labelName")
                                 .build()))
                         .unmappedAction("unmappedAction")
                         .build())
                 .build())
         .providerOutageAction("providerOutageAction")
         .providerType("providerType")
         // the properties below are optional
         .awsAccountId("awsAccountId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: