18 lines
298 B
Swift
18 lines
298 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import AWSPluginsCore
|
|
import Foundation
|
|
|
|
public struct FederateToIdentityPoolResult {
|
|
|
|
public let credentials: AWSTemporaryCredentials
|
|
|
|
public let identityId: String
|
|
|
|
}
|