17 lines
347 B
Swift
17 lines
347 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import AWSPluginsCore
|
|
|
|
extension AWSCognitoAuthPlugin: AuthInvalidateCredentialBehavior {
|
|
|
|
public func invalidateCachedTemporaryCredentials() {
|
|
authorizationProvider.invalidateCachedTemporaryCredentials()
|
|
}
|
|
|
|
}
|