interface ContainerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnConfiguredModelAlgorithm.ContainerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnConfiguredModelAlgorithm_ContainerConfigProperty |
Java | software.amazon.awscdk.services.cleanroomsml.CfnConfiguredModelAlgorithm.ContainerConfigProperty |
Python | aws_cdk.aws_cleanroomsml.CfnConfiguredModelAlgorithm.ContainerConfigProperty |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnConfiguredModelAlgorithm » ContainerConfigProperty |
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 containerConfigProperty: cleanroomsml.CfnConfiguredModelAlgorithm.ContainerConfigProperty = {
imageUri: 'imageUri',
// the properties below are optional
arguments: ['arguments'],
entrypoint: ['entrypoint'],
metricDefinitions: [{
name: 'name',
regex: 'regex',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | |
| arguments? | string[] | |
| entrypoint? | string[] | |
| metric | IResolvable | (IResolvable | Metric)[] |
imageUri
Type:
string
arguments?
Type:
string[]
(optional)
entrypoint?
Type:
string[]
(optional)
metricDefinitions?
Type:
IResolvable | (IResolvable | Metric)[]
(optional)

.NET
Go
Java
Python
TypeScript