interface TrainedModelsConfigurationPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicyProperty |
Java | software.amazon.awscdk.services.cleanroomsml.CfnConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicyProperty |
Python | aws_cdk.aws_cleanroomsml.CfnConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicyProperty |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnConfiguredModelAlgorithmAssociation » TrainedModelsConfigurationPolicyProperty |
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 trainedModelsConfigurationPolicyProperty: cleanroomsml.CfnConfiguredModelAlgorithmAssociation.TrainedModelsConfigurationPolicyProperty = {
containerLogs: [{
allowedAccountIds: ['allowedAccountIds'],
// the properties below are optional
filterPattern: 'filterPattern',
logRedactionConfiguration: {
entitiesToRedact: ['entitiesToRedact'],
// the properties below are optional
customEntityConfig: {
customDataIdentifiers: ['customDataIdentifiers'],
},
},
logType: 'logType',
}],
containerMetrics: {
noiseLevel: 'noiseLevel',
},
maxArtifactSize: {
unit: 'unit',
value: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| container | IResolvable | (IResolvable | Logs)[] | |
| container | IResolvable | Metrics | |
| max | IResolvable | Trained |
containerLogs?
Type:
IResolvable | (IResolvable | Logs)[]
(optional)
containerMetrics?
Type:
IResolvable | Metrics
(optional)
maxArtifactSize?
Type:
IResolvable | Trained
(optional)

.NET
Go
Java
Python
TypeScript