interface AlgorithmSpecification
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.ModelEvents.AWSAPICallViaCloudTrail.AlgorithmSpecification |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#ModelEvents_AWSAPICallViaCloudTrail_AlgorithmSpecification |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.ModelEvents.AWSAPICallViaCloudTrail.AlgorithmSpecification |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.ModelEvents.AWSAPICallViaCloudTrail.AlgorithmSpecification |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » events » ModelEvents » AWSAPICallViaCloudTrail » AlgorithmSpecification |
Type definition for AlgorithmSpecification.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as sagemaker_events } from '@aws-cdk/mixins-preview/aws-sagemaker';
const algorithmSpecification: sagemaker_events.ModelEvents.AWSAPICallViaCloudTrail.AlgorithmSpecification = {
trainingImage: ['trainingImage'],
trainingInputMode: ['trainingInputMode'],
};
Properties
| Name | Type | Description |
|---|---|---|
| training | string[] | trainingImage property. |
| training | string[] | trainingInputMode property. |
trainingImage?
Type:
string[]
(optional, default: Do not filter on this field)
trainingImage property.
Specify an array of string values to match this event if the actual value of trainingImage is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
trainingInputMode?
Type:
string[]
(optional, default: Do not filter on this field)
trainingInputMode property.
Specify an array of string values to match this event if the actual value of trainingInputMode is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript