interface CfnConfiguredModelAlgorithmAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnConfiguredModelAlgorithmAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnConfiguredModelAlgorithmAssociationProps |
Java | software.amazon.awscdk.services.cleanroomsml.CfnConfiguredModelAlgorithmAssociationProps |
Python | aws_cdk.aws_cleanroomsml.CfnConfiguredModelAlgorithmAssociationProps |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnConfiguredModelAlgorithmAssociationProps |
Properties for defining a CfnConfiguredModelAlgorithmAssociation.
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 cfnConfiguredModelAlgorithmAssociationProps: cleanroomsml.CfnConfiguredModelAlgorithmAssociationProps = {
configuredModelAlgorithmArn: 'configuredModelAlgorithmArn',
membershipIdentifier: 'membershipIdentifier',
name: 'name',
// the properties below are optional
description: 'description',
privacyConfiguration: {
policies: {
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,
},
},
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configured | string | |
| membership | string | |
| name | string | |
| description? | string | |
| privacy | IResolvable | Privacy | |
| tags? | Cfn[] | An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm association. |
configuredModelAlgorithmArn
Type:
string
membershipIdentifier
Type:
string
name
Type:
string
description?
Type:
string
(optional)
privacyConfiguration?
Type:
IResolvable | Privacy
(optional)
tags?
Type:
Cfn[]
(optional)
An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm association.

.NET
Go
Java
Python
TypeScript