interface ContainerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRoomsML.CfnConfiguredModelAlgorithmPropsMixin.ContainerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanroomsml#CfnConfiguredModelAlgorithmPropsMixin_ContainerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanroomsml.CfnConfiguredModelAlgorithmPropsMixin.ContainerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanroomsml.CfnConfiguredModelAlgorithmPropsMixin.ContainerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanroomsml » CfnConfiguredModelAlgorithmPropsMixin » 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/cfn-property-mixins';
const containerConfigProperty: cleanroomsml.CfnConfiguredModelAlgorithmPropsMixin.ContainerConfigProperty = {
arguments: ['arguments'],
entrypoint: ['entrypoint'],
imageUri: 'imageUri',
metricDefinitions: [{
name: 'name',
regex: 'regex',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| arguments? | string[] | |
| entrypoint? | string[] | |
| image | string | |
| metric | IResolvable | (IResolvable | Metric)[] |
arguments?
Type:
string[]
(optional)
entrypoint?
Type:
string[]
(optional)
imageUri?
Type:
string
(optional)
metricDefinitions?
Type:
IResolvable | (IResolvable | Metric)[]
(optional)

.NET
Go
Java
Python
TypeScript