The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of soto-smithy, reference 0.4.7 (fcbbf5), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 30 Apr 2025 09:40:35 UTC.

Swift 6 data race errors: 151

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme soto-smithy-Package -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/SingleValueTrait.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/StaticTrait.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Trait.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/TraitList.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/TraitList.swift:96:16: warning: static property 'possibleTraits' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var possibleTraits: [ShapeId: StaticTrait.Type] = [:]
               ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/TraitList.swift:96:16: note: convert 'possibleTraits' to a 'let' constant to make 'Sendable' shared state immutable
    static var possibleTraits: [ShapeId: StaticTrait.Type] = [:]
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/TraitList.swift:96:16: note: add '@MainActor' to make static property 'possibleTraits' part of global actor 'MainActor'
    static var possibleTraits: [ShapeId: StaticTrait.Type] = [:]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/TraitList.swift:96:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var possibleTraits: [ShapeId: StaticTrait.Type] = [:]
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ EndpointTraits.swift,\ HttpProtocolBindingTraits.swift,\ HttpProtocolComplianceTraits.swift,\ MqttProtocolBindingTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift:17:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#endpoint"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift:17:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#endpoint"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#endpoint"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#hostLabel"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#hostLabel"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/EndpointTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#hostLabel"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:17:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#http"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:17:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#http"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#http"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:26:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpError"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:26:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpError"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpError"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:37:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpHeader"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:37:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpHeader"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpHeader"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:56:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpLabel"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:56:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpLabel"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpLabel"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:72:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpPayload"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:72:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpPayload"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpPayload"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:85:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpPrefixHeaders"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:85:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpPrefixHeaders"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpPrefixHeaders"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:95:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpQuery"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:95:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpQuery"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpQuery"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:114:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpQueryParams"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:114:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpQueryParams"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpQueryParams"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:120:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#httpResponseCode"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:120:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#httpResponseCode"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:120:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#httpResponseCode"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:127:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.api#cors"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:127:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.api#cors"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolBindingTraits.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.api#cors"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift:18:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.test#httpRequestTests"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift:18:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.test#httpRequestTests"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.test#httpRequestTests"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift:59:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.test#httpResponseTests"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift:59:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.test#httpResponseTests"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/HttpProtocolComplianceTraits.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.test#httpResponseTests"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:17:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.mqtt#publish"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:17:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.mqtt#publish"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.mqtt#publish"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:27:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.mqtt#subscribe"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:27:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.mqtt#subscribe"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.mqtt#subscribe"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:37:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "smithy.mqtt#topicLabel"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: consider making struct 'ShapeId' conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:37:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "smithy.mqtt#topicLabel"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Traits/Types/MqttProtocolBindingTraits.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "smithy.mqtt#topicLabel"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling BasicSelectors.swift, DecodableSelector.swift, LogicalSelectors.swift, Selector.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling SingleValueTrait.swift, StaticTrait.swift, Trait.swift, TraitList.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling ProtocolTraits.swift, ResourceTraits.swift, RulesTraits.swift, StreamingTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Emitting module for SotoSmithy (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriver\ Compilation\ Requirements SotoSmithy normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SotoSmithy -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SotoSmithy-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy-Swift.h (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SotoSmithy-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftmodule (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftdoc (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.abi.json (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftsourceinfo (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriver SotoSmithyAWS normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SotoSmithyAWS -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SotoSmithyAWS (in target 'SotoSmithyAWS' from project 'soto-smithy')
EmitSwiftModule normal arm64 (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:19:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#apiKeySource"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:19:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#apiKeySource"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#apiKeySource"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:34:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#authorizers"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:34:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#authorizers"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#authorizers"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:57:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#authorizer"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:57:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#authorizer"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#authorizer"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:67:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#requestValidator"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:67:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#requestValidator"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#requestValidator"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:83:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#integration"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:83:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#integration"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#integration"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:128:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#mockIntegration"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:128:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#mockIntegration"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#mockIntegration"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:21:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.auth#sigv4"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:21:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.auth#sigv4"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.auth#sigv4"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.auth#unsignedPayload"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.auth#unsignedPayload"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.auth#unsignedPayload"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:34:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.auth#cognitoUserPools"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:34:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.auth#cognitoUserPools"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.auth#cognitoUserPools"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:19:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnResource"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:19:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnResource"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnResource"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnExcludeProperty"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnExcludeProperty"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnExcludeProperty"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:34:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnMutability"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:34:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnMutability"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnMutability"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:52:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnName"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:52:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnName"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnName"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:62:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnAdditionalIdentifier"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:62:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnAdditionalIdentifier"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnAdditionalIdentifier"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:71:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnDefaultValue"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:71:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnDefaultValue"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnDefaultValue"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:22:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#service"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:22:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#service"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#service"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:47:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#arn"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:47:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#arn"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#arn"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:64:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#arnReference"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:64:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#arnReference"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#arnReference"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:79:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#data"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:79:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#data"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#data"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:107:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#controlPlane"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:107:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#controlPlane"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#controlPlane"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:119:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#dataPlane"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:119:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#dataPlane"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:119:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#dataPlane"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:132:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscovery"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:132:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscovery"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:132:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscovery"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:141:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#clientDiscoveredEndpoint"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:141:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#clientDiscoveredEndpoint"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:141:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#clientDiscoveredEndpoint"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:149:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscoveryId"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:149:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscoveryId"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscoveryId"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:160:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#httpChecksum"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:160:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#httpChecksum"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:160:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#httpChecksum"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:190:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#tagEnabled"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:190:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#tagEnabled"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:190:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#tagEnabled"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:203:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#taggable"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:203:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#taggable"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:203:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#taggable"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#iamAction"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#iamAction"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#iamAction"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:40:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#actionName"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:40:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#actionName"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#actionName"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:50:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#actionPermissionDescription"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:50:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#actionPermissionDescription"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#actionPermissionDescription"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:60:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#conditionKeys"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:60:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#conditionKeys"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#conditionKeys"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:89:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#defineConditionKeys"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:89:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#defineConditionKeys"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:89:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#defineConditionKeys"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:108:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#serviceResolvedConditionKeys"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:108:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#serviceResolvedConditionKeys"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#serviceResolvedConditionKeys"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:118:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#conditionKeyValue"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:118:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#conditionKeyValue"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#conditionKeyValue"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:128:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#disableConditionKeyInference"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:128:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#disableConditionKeyInference"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#disableConditionKeyInference"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:136:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#requiredActions"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:136:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#requiredActions"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#requiredActions"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:153:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#supportedPrincipalTypes"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:153:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#supportedPrincipalTypes"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:153:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#supportedPrincipalTypes"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:165:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#iamResource"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:165:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#iamResource"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:165:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#iamResource"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:25:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#restJson1"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:25:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#restJson1"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#restJson1"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:31:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsJson1_1"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:31:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsJson1_1"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsJson1_1"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:37:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsJson1_0"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:37:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsJson1_0"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsJson1_0"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:43:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsQuery"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:43:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsQuery"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsQuery"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:50:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsQueryError"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:50:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsQueryError"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsQueryError"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:70:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsQueryCompatible"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:70:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsQueryCompatible"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsQueryCompatible"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:82:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#ec2Query"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:82:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#ec2Query"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#ec2Query"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:88:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#restXml"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:88:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#restXml"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#restXml"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:94:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#ec2QueryName"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:94:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#ec2QueryName"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#ec2QueryName"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:18:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.customizations#s3UnwrappedXmlOutput"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:18:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.customizations#s3UnwrappedXmlOutput"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.customizations#s3UnwrappedXmlOutput"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AwsS3Traits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:18:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.customizations#s3UnwrappedXmlOutput"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:18:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.customizations#s3UnwrappedXmlOutput"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsS3Traits.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.customizations#s3UnwrappedXmlOutput"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AwsAuthenticationTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:21:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.auth#sigv4"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:21:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.auth#sigv4"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.auth#sigv4"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.auth#unsignedPayload"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.auth#unsignedPayload"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.auth#unsignedPayload"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:34:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.auth#cognitoUserPools"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:34:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.auth#cognitoUserPools"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsAuthenticationTraits.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.auth#cognitoUserPools"
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AwsCloudFormationTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:19:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnResource"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:19:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnResource"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnResource"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnExcludeProperty"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnExcludeProperty"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnExcludeProperty"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:34:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnMutability"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:34:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnMutability"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnMutability"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:52:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnName"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:52:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnName"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnName"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:62:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnAdditionalIdentifier"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:62:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnAdditionalIdentifier"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnAdditionalIdentifier"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:71:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.cloudformation#cfnDefaultValue"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:71:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.cloudformation#cfnDefaultValue"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCloudFormationTraits.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.cloudformation#cfnDefaultValue"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ServiceShapes.swift, Shape.swift, SimpleShapes.swift, CustomTrait.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftCompile normal arm64 Compiling\ AwsIAMTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:28:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#iamAction"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:28:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#iamAction"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:28:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#iamAction"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:40:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#actionName"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:40:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#actionName"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#actionName"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:50:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#actionPermissionDescription"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:50:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#actionPermissionDescription"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#actionPermissionDescription"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:60:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#conditionKeys"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:60:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#conditionKeys"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#conditionKeys"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:89:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#defineConditionKeys"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:89:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#defineConditionKeys"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:89:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#defineConditionKeys"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:108:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#serviceResolvedConditionKeys"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:108:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#serviceResolvedConditionKeys"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#serviceResolvedConditionKeys"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:118:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#conditionKeyValue"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:118:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#conditionKeyValue"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#conditionKeyValue"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:128:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#disableConditionKeyInference"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:128:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#disableConditionKeyInference"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#disableConditionKeyInference"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:136:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#requiredActions"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:136:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#requiredActions"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#requiredActions"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:153:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#supportedPrincipalTypes"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:153:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#supportedPrincipalTypes"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:153:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#supportedPrincipalTypes"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:165:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.iam#iamResource"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:165:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.iam#iamResource"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsIAMTraits.swift:165:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.iam#iamResource"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SelectorParser.swift, AggregateShapes.swift, ApplyShape.swift, DecodableShape.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftCompile normal arm64 Compiling\ AwsProtocolTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:25:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#restJson1"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:25:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#restJson1"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#restJson1"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:31:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsJson1_1"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:31:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsJson1_1"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:31:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsJson1_1"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:37:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsJson1_0"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:37:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsJson1_0"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsJson1_0"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:43:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsQuery"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:43:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsQuery"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsQuery"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:50:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsQueryError"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:50:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsQueryError"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsQueryError"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:70:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#awsQueryCompatible"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:70:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#awsQueryCompatible"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#awsQueryCompatible"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:82:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#ec2Query"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:82:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#ec2Query"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#ec2Query"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:88:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#restXml"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:88:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#restXml"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#restXml"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:94:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#ec2QueryName"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:94:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#ec2QueryName"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsProtocolTraits.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#ec2QueryName"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SuppressTrait.swift, TypeRefinementTraits.swift, WaitersTraits.swift, XmlBindingTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftCompile normal arm64 Compiling\ Smithy.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Smithy.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Smithy.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AwsS3Traits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 Compiling\ AwsCoreTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:22:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#service"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:17:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:22:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#service"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#service"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:47:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#arn"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:47:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#arn"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#arn"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:64:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#arnReference"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:64:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#arnReference"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#arnReference"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:79:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#data"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:79:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#data"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#data"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:107:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#controlPlane"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:107:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#controlPlane"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#controlPlane"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:119:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#dataPlane"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:119:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#dataPlane"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:119:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#dataPlane"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:132:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscovery"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:132:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscovery"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:132:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscovery"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:141:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#clientDiscoveredEndpoint"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:141:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#clientDiscoveredEndpoint"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:141:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#clientDiscoveredEndpoint"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:149:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscoveryId"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:149:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscoveryId"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#clientEndpointDiscoveryId"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:160:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.protocols#httpChecksum"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:160:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.protocols#httpChecksum"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:160:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.protocols#httpChecksum"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:190:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#tagEnabled"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:190:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#tagEnabled"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:190:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#tagEnabled"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:203:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.api#taggable"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:203:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.api#taggable"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsCoreTraits.swift:203:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.api#taggable"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling AuthenticationTraits.swift, BehaviourTraits.swift, ConstraintTraits.swift, DocumentationTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftCompile normal arm64 Compiling\ AwsApiGatewayTraits.swift /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:19:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#apiKeySource"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SotoSmithy'
import SotoSmithy
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:19:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#apiKeySource"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#apiKeySource"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:34:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#authorizers"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:34:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#authorizers"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#authorizers"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:57:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#authorizer"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:57:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#authorizer"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#authorizer"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:67:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#requestValidator"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:67:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#requestValidator"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#requestValidator"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:83:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#integration"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:83:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#integration"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#integration"
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:128:23: warning: static property 'staticName' is not concurrency-safe because non-'Sendable' type 'ShapeId' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let staticName: ShapeId = "aws.apigateway#mockIntegration"
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithy/Core/ShapeId.swift:16:15: note: struct 'ShapeId' does not conform to the 'Sendable' protocol
public struct ShapeId: Equatable, Hashable, RawRepresentable {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:128:23: note: add '@MainActor' to make static property 'staticName' part of global actor 'MainActor'
    public static let staticName: ShapeId = "aws.apigateway#mockIntegration"
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SotoSmithyAWS/Traits/AwsApiGatewayTraits.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let staticName: ShapeId = "aws.apigateway#mockIntegration"
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling AwsAuthenticationTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling AwsCloudFormationTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling AwsProtocolTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Emitting module for SotoSmithyAWS (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriver\ Compilation\ Requirements SotoSmithyAWS normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SotoSmithyAWS -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SotoSmithyAWS-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-Swift.h (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/SotoSmithyAWS-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftmodule (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftdoc (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.abi.json (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftsourceinfo (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Smithy.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling AwsIAMTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling EndpointTraits.swift, HttpProtocolBindingTraits.swift, HttpProtocolComplianceTraits.swift, MqttProtocolBindingTraits.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling AwsCoreTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling AwsApiGatewayTraits.swift (in target 'SotoSmithyAWS' from project 'soto-smithy')
SwiftDriver\ Compilation SotoSmithyAWS normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SotoSmithyAWS -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Parser.swift, Smithy+Parse.swift, TokenParser.swift, Tokenizer.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriverJobDiscovery normal arm64 Compiling Document.swift, Errors.swift, Model.swift, ShapeId.swift, Smithy.swift (in target 'SotoSmithy' from project 'soto-smithy')
SwiftDriver\ Compilation SotoSmithy normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SotoSmithy -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.o normal (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.o
ExtractAppIntentsMetadata (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SotoSmithy --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.SotoSmithy --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/SotoSmithy.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/SotoSmithy.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithy.build/Objects-normal/arm64/SotoSmithy.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 02:40:33.946 appintentsmetadataprocessor[725:4068] Starting appintentsmetadataprocessor export
2025-04-30 02:40:33.986 appintentsmetadataprocessor[725:4068] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.o (in target 'SotoSmithy' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithy.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.o normal (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.o
ExtractAppIntentsMetadata (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SotoSmithyAWS --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.SotoSmithyAWS --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/SotoSmithyAWS.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/SotoSmithyAWS.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/soto-smithy.build/Debug/SotoSmithyAWS.build/Objects-normal/arm64/SotoSmithyAWS.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 02:40:34.044 appintentsmetadataprocessor[728:4085] Starting appintentsmetadataprocessor export
2025-04-30 02:40:34.077 appintentsmetadataprocessor[728:4085] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.o (in target 'SotoSmithyAWS' from project 'soto-smithy')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/SotoSmithyAWS.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:c63136239a798724e9639d667c7215c0cc14401d, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:c63136239a798724e9639d667c7215c0cc14401d, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:c63136239a798724e9639d667c7215c0cc14401d, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:c63136239a798724e9639d667c7215c0cc14401d, name:My Mac }
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "soto-smithy",
  "name" : "soto-smithy",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SotoSmithy",
      "targets" : [
        "SotoSmithy"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SotoSmithyAWS",
      "targets" : [
        "SotoSmithyAWS"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SotoSmithyTests",
      "module_type" : "SwiftTarget",
      "name" : "SotoSmithyTests",
      "path" : "Tests/SotoSmithyTests",
      "sources" : [
        "AWSTests.swift",
        "ModelTests.swift",
        "ParserTests.swift",
        "SelectorTests.swift",
        "ShapeIdTests.swift",
        "ShapeTests.swift",
        "TokenizerTests.swift",
        "TraitTests.swift"
      ],
      "target_dependencies" : [
        "SotoSmithy",
        "SotoSmithyAWS"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SotoSmithyAWS",
      "module_type" : "SwiftTarget",
      "name" : "SotoSmithyAWS",
      "path" : "Sources/SotoSmithyAWS",
      "product_memberships" : [
        "SotoSmithyAWS"
      ],
      "sources" : [
        "Smithy.swift",
        "Traits/AwsApiGatewayTraits.swift",
        "Traits/AwsAuthenticationTraits.swift",
        "Traits/AwsCloudFormationTraits.swift",
        "Traits/AwsCoreTraits.swift",
        "Traits/AwsIAMTraits.swift",
        "Traits/AwsProtocolTraits.swift",
        "Traits/AwsS3Traits.swift"
      ],
      "target_dependencies" : [
        "SotoSmithy"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SotoSmithy",
      "module_type" : "SwiftTarget",
      "name" : "SotoSmithy",
      "path" : "Sources/SotoSmithy",
      "product_memberships" : [
        "SotoSmithy",
        "SotoSmithyAWS"
      ],
      "sources" : [
        "Core/Document.swift",
        "Core/Errors.swift",
        "Core/Model.swift",
        "Core/ShapeId.swift",
        "Core/Smithy.swift",
        "Parser/Parser.swift",
        "Parser/Smithy+Parse.swift",
        "Parser/TokenParser.swift",
        "Parser/Tokenizer.swift",
        "Selectors/BasicSelectors.swift",
        "Selectors/DecodableSelector.swift",
        "Selectors/LogicalSelectors.swift",
        "Selectors/Selector.swift",
        "Selectors/SelectorParser.swift",
        "Shapes/AggregateShapes.swift",
        "Shapes/ApplyShape.swift",
        "Shapes/DecodableShape.swift",
        "Shapes/ServiceShapes.swift",
        "Shapes/Shape.swift",
        "Shapes/SimpleShapes.swift",
        "Traits/CustomTrait.swift",
        "Traits/SingleValueTrait.swift",
        "Traits/StaticTrait.swift",
        "Traits/Trait.swift",
        "Traits/TraitList.swift",
        "Traits/Types/AuthenticationTraits.swift",
        "Traits/Types/BehaviourTraits.swift",
        "Traits/Types/ConstraintTraits.swift",
        "Traits/Types/DocumentationTraits.swift",
        "Traits/Types/EndpointTraits.swift",
        "Traits/Types/HttpProtocolBindingTraits.swift",
        "Traits/Types/HttpProtocolComplianceTraits.swift",
        "Traits/Types/MqttProtocolBindingTraits.swift",
        "Traits/Types/ProtocolTraits.swift",
        "Traits/Types/ResourceTraits.swift",
        "Traits/Types/RulesTraits.swift",
        "Traits/Types/StreamingTraits.swift",
        "Traits/Types/SuppressTrait.swift",
        "Traits/Types/TypeRefinementTraits.swift",
        "Traits/Types/WaitersTraits.swift",
        "Traits/Types/XmlBindingTraits.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.