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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDLPSettingPropsstatic final classAn implementation forCfnDLPSettingProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDLPSettingProps.Builderbuilder()default StringReturns union: eitherBooleanorIResolvablegetName()Returns union: eitherIResolvableorCfnDLPSetting.ProviderConfigPropertygetTags()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDlpSettingId
- See Also:
-
getEnabled
- See Also:
-
getName
- See Also:
-
getProviderConfig
Returns union: eitherIResolvableorCfnDLPSetting.ProviderConfigProperty- See Also:
-
getProviderOutageAction
- See Also:
-
getProviderType
- See Also:
-
getAwsAccountId
- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnDLPSettingProps.BuilderofCfnDLPSettingProps
-