Interface CfnConfiguredModelAlgorithmAssociationPropsMixin.LogsConfigurationPolicyProperty

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

@Stability(Stable) public static interface CfnConfiguredModelAlgorithmAssociationPropsMixin.LogsConfigurationPolicyProperty 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.cfnpropertymixins.services.cleanroomsml.*;
 LogsConfigurationPolicyProperty logsConfigurationPolicyProperty = LogsConfigurationPolicyProperty.builder()
         .allowedAccountIds(List.of("allowedAccountIds"))
         .filterPattern("filterPattern")
         .logRedactionConfiguration(LogRedactionConfigurationProperty.builder()
                 .customEntityConfig(CustomEntityConfigProperty.builder()
                         .customDataIdentifiers(List.of("customDataIdentifiers"))
                         .build())
                 .entitiesToRedact(List.of("entitiesToRedact"))
                 .build())
         .logType("logType")
         .build();
 

See Also: