19 lines
351 B
Swift
19 lines
351 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension AuthAWSCognitoCredentials {
|
|
|
|
func doesExpire(in seconds: TimeInterval = 0) -> Bool {
|
|
|
|
let currentTime = Date(timeIntervalSinceNow: seconds)
|
|
return currentTime > expiration
|
|
}
|
|
|
|
}
|