Interface CfnDLPSetting.MicrosoftPurviewProviderConfigProperty

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

@Stability(Stable) public static interface CfnDLPSetting.MicrosoftPurviewProviderConfigProperty 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.*;
 MicrosoftPurviewProviderConfigProperty microsoftPurviewProviderConfigProperty = MicrosoftPurviewProviderConfigProperty.builder()
         .credentials(MicrosoftPurviewCredentialsProperty.builder()
                 .secretArn("secretArn")
                 .build())
         .labelActionMappings(List.of(LabelActionMappingProperty.builder()
                 .action("action")
                 .labelId("labelId")
                 .labelName("labelName")
                 .build()))
         .unmappedAction("unmappedAction")
         .build();
 

See Also: