// // Copyright Amazon.com Inc. or its affiliates. // All Rights Reserved. // // SPDX-License-Identifier: Apache-2.0 // import Foundation public struct AWSPinpointAnalytics { public struct Constants { public struct Event { public static let maximumNumberOfAttributes = 40 public static let maximumNumberOfMetrics = 40 public static let maximumKeyLength = 50 public static let maximumValueLength = 200 } } }