Interface CfnDataAutomationProject.SensitiveDataConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataAutomationProject.SensitiveDataConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataAutomationProject
@Stability(Stable)
public static interface CfnDataAutomationProject.SensitiveDataConfigurationProperty
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.bedrock.*;
SensitiveDataConfigurationProperty sensitiveDataConfigurationProperty = SensitiveDataConfigurationProperty.builder()
.detectionMode("detectionMode")
.detectionScope(List.of("detectionScope"))
.piiEntitiesConfiguration(PIIEntitiesConfigurationProperty.builder()
.piiEntityTypes(List.of("piiEntityTypes"))
.redactionMaskMode("redactionMaskMode")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataAutomationProject.SensitiveDataConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault ObjectReturns union: eitherIResolvableorCfnDataAutomationProject.PIIEntitiesConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDetectionMode
- See Also:
-
getDetectionScope
- See Also:
-
getPiiEntitiesConfiguration
Returns union: eitherIResolvableorCfnDataAutomationProject.PIIEntitiesConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationProject.SensitiveDataConfigurationProperty.Builder builder()
-