19 lines
482 B
Swift
19 lines
482 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
public protocol AuthUpdateUserAttributesOperation: AmplifyOperation<
|
|
AuthUpdateUserAttributesRequest,
|
|
[AuthUserAttributeKey: AuthUpdateAttributeResult],
|
|
AuthError
|
|
> {}
|
|
|
|
public extension HubPayload.EventName.Auth {
|
|
|
|
/// eventName for HubPayloads emitted by this operation
|
|
static let updateUserAttributesAPI = "Auth.updateUserAttributesAPI"
|
|
}
|