interface CfnConfiguredModelAlgorithmProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnConfiguredModelAlgorithmProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnConfiguredModelAlgorithmProps |
Java | software.amazon.awscdk.services.cleanroomsml.CfnConfiguredModelAlgorithmProps |
Python | aws_cdk.aws_cleanroomsml.CfnConfiguredModelAlgorithmProps |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnConfiguredModelAlgorithmProps |
Properties for defining a CfnConfiguredModelAlgorithm.
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 cfnConfiguredModelAlgorithmProps: cleanroomsml.CfnConfiguredModelAlgorithmProps = {
name: 'name',
roleArn: 'roleArn',
// the properties below are optional
description: 'description',
inferenceContainerConfig: {
imageUri: 'imageUri',
},
kmsKeyArn: 'kmsKeyArn',
tags: [{
key: 'key',
value: 'value',
}],
trainingContainerConfig: {
imageUri: 'imageUri',
// the properties below are optional
arguments: ['arguments'],
entrypoint: ['entrypoint'],
metricDefinitions: [{
name: 'name',
regex: 'regex',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| role | string | |
| description? | string | |
| inference | IResolvable | Inference | |
| kms | string | |
| tags? | Cfn[] | An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm. |
| training | IResolvable | Container |
name
Type:
string
roleArn
Type:
string
description?
Type:
string
(optional)
inferenceContainerConfig?
Type:
IResolvable | Inference
(optional)
kmsKeyArn?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)
An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm.
trainingContainerConfig?
Type:
IResolvable | Container
(optional)

.NET
Go
Java
Python
TypeScript