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

AsyncInferenceNotificationConfig

import type { AsyncInferenceNotificationConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Specifies the configuration for notifications of inference results for asynchronous inference.

interface AsyncInferenceNotificationConfig {
ErrorTopic?: string | null;
SuccessTopic?: string | null;
}

§Properties

§
ErrorTopic?: string | null
[src]

Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.

§
SuccessTopic?: string | null
[src]

Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.