20 lines
470 B
Swift
20 lines
470 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol PredictionsIdentifyOperation: AmplifyOperation<
|
|
PredictionsIdentifyRequest,
|
|
IdentifyResult,
|
|
PredictionsError
|
|
> { }
|
|
|
|
public extension HubPayload.EventName.Predictions {
|
|
static let identifyLabels = "Predictions.identifyLabels"
|
|
static let identifyCelebrities = "Predictions.identifyCelebrities"
|
|
}
|