Interface CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredModelAlgorithmAssociation
@Stability(Stable)
public static interface CfnConfiguredModelAlgorithmAssociation.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.services.cleanroomsml.*;
LogsConfigurationPolicyProperty logsConfigurationPolicyProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault ObjectReturns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.LogRedactionConfigurationPropertydefault StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedAccountIds
- See Also:
-
getFilterPattern
- See Also:
-
getLogRedactionConfiguration
Returns union: eitherIResolvableorCfnConfiguredModelAlgorithmAssociation.LogRedactionConfigurationProperty- See Also:
-
getLogType
- See Also:
-
builder
@Stability(Stable) static CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty.Builder builder()
-