// // Copyright Amazon.com Inc. or its affiliates. // All Rights Reserved. // // SPDX-License-Identifier: Apache-2.0 // public struct AWSIAMConfiguration { public let region: String public init(region: String) { self.region = region } }