16 lines
393 B
Swift
16 lines
393 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol PredictionsSpeechToTextOperation: AmplifyOperation<PredictionsSpeechToTextRequest,
|
|
SpeechToTextResult, PredictionsError> { }
|
|
|
|
public extension HubPayload.EventName.Predictions {
|
|
static let speechToText = "Predictions.speechToText"
|
|
}
|