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