19 lines
452 B
Swift
19 lines
452 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct AWSAuthUpdateUserAttributesOptions {
|
|
|
|
/// A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.
|
|
public let metadata: [String: String]?
|
|
|
|
public init(metadata: [String: String]? = nil) {
|
|
self.metadata = metadata
|
|
}
|
|
}
|