amplify-swift/AmplifyPlugins/Auth/Sources/AWSCognitoAuthPlugin/Models/Options/AWSAuthResendSignUpCodeOpti...

19 lines
396 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Foundation
public struct AWSAuthResendSignUpCodeOptions {
/// A map of custom key-value pairs that you can provide as input
public let metadata: [String: String]?
public init(metadata: [String: String]? = nil) {
self.metadata = metadata
}
}