Interface CfnDLPSetting.ProviderConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDLPSetting.ProviderConfigProperty.Jsii$Proxy
Enclosing class:
CfnDLPSetting

@Stability(Stable) public static interface CfnDLPSetting.ProviderConfigProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 ProviderConfigProperty providerConfigProperty = 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();
 

See Also: