Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetModelVersionResult

import type { GetModelVersionResult } from "https://aws-api.deno.dev/v0.3/services/frauddetector.ts?docs=full";
interface GetModelVersionResult {
arn?: string | null;
externalEventsDetail?: ExternalEventsDetail | null;
ingestedEventsDetail?: IngestedEventsDetail | null;
modelId?: string | null;
modelType?: ModelTypeEnum | null;
modelVersionNumber?: string | null;
status?: string | null;
trainingDataSchema?: TrainingDataSchema | null;
trainingDataSource?: TrainingDataSourceEnum | null;
}

§Properties

§
arn?: string | null
[src]

The model version ARN.

§
externalEventsDetail?: ExternalEventsDetail | null
[src]

The details of the external events data used for training the model version. This will be populated if the trainingDataSource is EXTERNAL_EVENTS

§
ingestedEventsDetail?: IngestedEventsDetail | null
[src]

The details of the ingested events data used for training the model version. This will be populated if the trainingDataSource is INGESTED_EVENTS.

§
modelId?: string | null
[src]

The model ID.

§
modelType?: ModelTypeEnum | null
[src]

The model type.

§
modelVersionNumber?: string | null
[src]

The model version number.

§
status?: string | null
[src]

The model version status.

Possible values are:

  • TRAINING_IN_PROGRESS
    
  • TRAINING_COMPLETE
    
  • ACTIVATE_REQUESTED
    
  • ACTIVATE_IN_PROGRESS
    
  • ACTIVE
    
  • INACTIVATE_REQUESTED
    
  • INACTIVATE_IN_PROGRESS
    
  • INACTIVE
    
  • ERROR
    
§
trainingDataSchema?: TrainingDataSchema | null
[src]

The training data schema.

§
trainingDataSource?: TrainingDataSourceEnum | null
[src]

The training data source.