EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig constructor

const EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig({
  1. Input<String?>? errorTopic,
  2. Input<List<String>?>? includeInferenceResponseIns,
  3. Input<String?>? successTopic,
})

Creates a new EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig. errorTopic SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure. includeInferenceResponseIns SNS topics where you want the inference response to be included. Valid values are SUCCESS_NOTIFICATION_TOPIC and ERROR_NOTIFICATION_TOPIC. successTopic SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.

Implementation

const EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig({
  this.errorTopic,
  this.includeInferenceResponseIns,
  this.successTopic,
});