interface PrivacyConfigurationPoliciesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnConfiguredModelAlgorithmAssociation_PrivacyConfigurationPoliciesProperty |
Java | software.amazon.awscdk.services.cleanroomsml.CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty |
Python | aws_cdk.aws_cleanroomsml.CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnConfiguredModelAlgorithmAssociation » PrivacyConfigurationPoliciesProperty |
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 privacyConfigurationPoliciesProperty: cleanroomsml.CfnConfiguredModelAlgorithmAssociation.PrivacyConfigurationPoliciesProperty = {
trainedModelExports: {
filesToExport: ['filesToExport'],
maxSize: {
unit: 'unit',
value: 123,
},
},
trainedModelInferenceJobs: {
containerLogs: [{
allowedAccountIds: ['allowedAccountIds'],
// the properties below are optional
filterPattern: 'filterPattern',
logRedactionConfiguration: {
entitiesToRedact: ['entitiesToRedact'],
// the properties below are optional
customEntityConfig: {
customDataIdentifiers: ['customDataIdentifiers'],
},
},
logType: 'logType',
}],
maxOutputSize: {
unit: 'unit',
value: 123,
},
},
trainedModels: {
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 |
|---|---|---|
| trained | IResolvable | Trained | |
| trained | IResolvable | Trained | |
| trained | IResolvable | Trained |
trainedModelExports?
Type:
IResolvable | Trained
(optional)
trainedModelInferenceJobs?
Type:
IResolvable | Trained
(optional)
trainedModels?
Type:
IResolvable | Trained
(optional)

.NET
Go
Java
Python
TypeScript