Interface CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredModelAlgorithmAssociation
@Stability(Stable)
public static interface CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty
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.cleanroomsml.*;
PrivacyConfigurationPoliciesProperty privacyConfigurationPoliciesProperty = PrivacyConfigurationPoliciesProperty.builder()
.trainedModelExports(TrainedModelExportsConfigurationPolicyProperty.builder()
.filesToExport(List.of("filesToExport"))
.maxSize(TrainedModelExportsMaxSizeProperty.builder()
.unit("unit")
.value(123)
.build())
.build())
.trainedModelInferenceJobs(TrainedModelInferenceJobsConfigurationPolicyProperty.builder()
.containerLogs(List.of(LogsConfigurationPolicyProperty.builder()
.allowedAccountIds(List.of("allowedAccountIds"))
// the properties below are optional
.filterPattern("filterPattern")
.logRedactionConfiguration(LogRedactionConfigurationProperty.builder()
.entitiesToRedact(List.of("entitiesToRedact"))
// the properties below are optional
.customEntityConfig(CustomEntityConfigProperty.builder()
.customDataIdentifiers(List.of("customDataIdentifiers"))
.build())
.build())
.logType("logType")
.build()))
.maxOutputSize(TrainedModelInferenceMaxOutputSizeProperty.builder()
.unit("unit")
.value(123)
.build())
.build())
.trainedModels(TrainedModelsConfigurationPolicyProperty.builder()
.containerLogs(List.of(LogsConfigurationPolicyProperty.builder()
.allowedAccountIds(List.of("allowedAccountIds"))
// the properties below are optional
.filterPattern("filterPattern")
.logRedactionConfiguration(LogRedactionConfigurationProperty.builder()
.entitiesToRedact(List.of("entitiesToRedact"))
// the properties below are optional
.customEntityConfig(CustomEntityConfigProperty.builder()
.customDataIdentifiers(List.of("customDataIdentifiers"))
.build())
.build())
.logType("logType")
.build()))
.containerMetrics(MetricsConfigurationPolicyProperty.builder()
.noiseLevel("noiseLevel")
.build())
.maxArtifactSize(TrainedModelArtifactMaxSizeProperty.builder()
.unit("unit")
.value(123)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.TrainedModelExportsConfigurationPolicyPropertydefault ObjectReturns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.TrainedModelInferenceJobsConfigurationPolicyPropertydefault ObjectReturns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicyPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTrainedModelExports
Returns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.TrainedModelExportsConfigurationPolicyProperty- See Also:
-
getTrainedModelInferenceJobs
Returns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.TrainedModelInferenceJobsConfigurationPolicyProperty- See Also:
-
getTrainedModels
Returns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicyProperty- See Also:
-
builder
@Stability(Stable) static CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty.Builder builder()
-