interface LogsConfigurationPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnConfiguredModelAlgorithmAssociation_LogsConfigurationPolicyProperty |
Java | software.amazon.awscdk.services.cleanroomsml.CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty |
Python | aws_cdk.aws_cleanroomsml.CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnConfiguredModelAlgorithmAssociation » LogsConfigurationPolicyProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanroomsml as cleanroomsml } from 'aws-cdk-lib';
const logsConfigurationPolicyProperty: cleanroomsml.CfnConfiguredModelAlgorithmAssociation.LogsConfigurationPolicyProperty = {
allowedAccountIds: ['allowedAccountIds'],
// the properties below are optional
filterPattern: 'filterPattern',
logRedactionConfiguration: {
entitiesToRedact: ['entitiesToRedact'],
// the properties below are optional
customEntityConfig: {
customDataIdentifiers: ['customDataIdentifiers'],
},
},
logType: 'logType',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | |
| filter | string | |
| log | IResolvable | Log | |
| log | string |
allowedAccountIds
Type:
string[]
filterPattern?
Type:
string
(optional)
logRedactionConfiguration?
Type:
IResolvable | Log
(optional)
logType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript