17 lines
527 B
Swift
17 lines
527 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Amplify
|
|
|
|
protocol AuthAttributeResendConfirmationCodeTask: AmplifyAuthTask where Request == AuthAttributeResendConfirmationCodeRequest, Success == AuthCodeDeliveryDetails, Failure == AuthError {}
|
|
|
|
public extension HubPayload.EventName.Auth {
|
|
|
|
/// eventName for HubPayloads emitted by this operation
|
|
static let attributeResendConfirmationCodeAPI = "Auth.attributeResendConfirmationCodeAPI"
|
|
}
|