diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1e7e2ff..4158efe 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -10,6 +10,7 @@ jobs: run-codeql-linux: name: Run CodeQL on Linux runs-on: ubuntu-latest + container: swift:5.8 permissions: security-events: write diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index efc4b52..ecbfd8d 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -12,10 +12,10 @@ jobs: strategy: matrix: os: [ubuntu-22.04, ubuntu-20.04] - swift: ["5.8"] + swift: ["5.9"] runs-on: ${{ matrix.os }} steps: - - uses: swift-actions/setup-swift@v1.23.0 + - uses: swift-actions/setup-swift@v1.25.0 with: swift-version: ${{ matrix.swift }} - uses: actions/checkout@v2 @@ -28,10 +28,10 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - swift: ["5.7.3"] + swift: ["5.8.1", "5.7.3"] runs-on: ${{ matrix.os }} steps: - - uses: swift-actions/setup-swift@v1.23.0 + - uses: swift-actions/setup-swift@v1.25.0 with: swift-version: ${{ matrix.swift }} - uses: actions/checkout@v2 diff --git a/Package.resolved b/Package.resolved index 316438c..51095ab 100644 --- a/Package.resolved +++ b/Package.resolved @@ -15,8 +15,8 @@ "repositoryURL": "https://github.com/amzn/smoke-aws-support.git", "state": { "branch": null, - "revision": "276620e7599e94b680cfc2b1c2285e0016850860", - "version": "1.2.2" + "revision": "c46cd7e8b8f32d6629d57a8b2b58d6622bd898be", + "version": "1.7.0" } }, { @@ -24,8 +24,8 @@ "repositoryURL": "https://github.com/amzn/smoke-http.git", "state": { "branch": null, - "revision": "3ec0cea2402f4c16303a4378f62eae8a83d0ee12", - "version": "2.20.0" + "revision": "d37f4c40e3f00a880fc09b7927f8a2fbf4c5d018", + "version": "2.22.5" } }, { diff --git a/Package.swift b/Package.swift index 13edd63..8f8ab3d 100644 --- a/Package.swift +++ b/Package.swift @@ -144,7 +144,7 @@ let package = Package( .package(url: "https://github.com/apple/swift-metrics.git", "1.0.0"..<"3.0.0"), .package(url: "https://github.com/LiveUI/XMLCoding.git", from: "0.4.1"), .package(url: "https://github.com/amzn/smoke-http.git", from: "2.19.1"), - .package(url: "https://github.com/amzn/smoke-aws-support.git", from: "1.0.0"), + .package(url: "https://github.com/amzn/smoke-aws-support.git", from: "1.7.0"), .package(url: "https://github.com/apple/swift-crypto.git", from: "1.0.0"), ], targets: [ diff --git a/README.md b/README.md index 463b784..e9aae58 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Build - Main Branch -Swift 5.7 and 5.8 Tested +Swift 5.7, 5.8 and 5.9 Tested Ubuntu 20.04 and 22.04 Tested diff --git a/Sources/AppConfigClient/AWSAppConfigClient.swift b/Sources/AppConfigClient/AWSAppConfigClient.swift index 74e759e..2f299fb 100644 --- a/Sources/AppConfigClient/AWSAppConfigClient.swift +++ b/Sources/AppConfigClient/AWSAppConfigClient.swift @@ -3158,7 +3158,7 @@ public struct AWSAppConfigClient AppConfigModel.Application { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3194,7 +3194,7 @@ public struct AWSAppConfigClient AppConfigModel.ConfigurationProfile { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3230,7 +3230,7 @@ public struct AWSAppConfigClient AppConfigModel.DeploymentStrategy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3266,7 +3266,7 @@ public struct AWSAppConfigClient AppConfigModel.Environment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3302,7 +3302,7 @@ public struct AWSAppConfigClient AppConfigModel.Extension { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3338,7 +3338,7 @@ public struct AWSAppConfigClient AppConfigModel.ExtensionAssociation { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3374,7 +3374,7 @@ public struct AWSAppConfigClient AppConfigModel.HostedConfigurationVersion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3408,7 +3408,7 @@ public struct AWSAppConfigClient AppConfigModel.Application { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3684,7 +3684,7 @@ public struct AWSAppConfigClient AppConfigModel.Configuration { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3720,7 +3720,7 @@ public struct AWSAppConfigClient AppConfigModel.ConfigurationProfile { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3756,7 +3756,7 @@ public struct AWSAppConfigClient AppConfigModel.Deployment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3792,7 +3792,7 @@ public struct AWSAppConfigClient AppConfigModel.DeploymentStrategy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3828,7 +3828,7 @@ public struct AWSAppConfigClient AppConfigModel.Environment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3864,7 +3864,7 @@ public struct AWSAppConfigClient AppConfigModel.Extension { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3900,7 +3900,7 @@ public struct AWSAppConfigClient AppConfigModel.ExtensionAssociation { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3936,7 +3936,7 @@ public struct AWSAppConfigClient AppConfigModel.HostedConfigurationVersion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3972,7 +3972,7 @@ public struct AWSAppConfigClient AppConfigModel.Applications { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4008,7 +4008,7 @@ public struct AWSAppConfigClient AppConfigModel.ConfigurationProfiles { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4044,7 +4044,7 @@ public struct AWSAppConfigClient AppConfigModel.DeploymentStrategies { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4080,7 +4080,7 @@ public struct AWSAppConfigClient AppConfigModel.Deployments { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4116,7 +4116,7 @@ public struct AWSAppConfigClient AppConfigModel.Environments { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4152,7 +4152,7 @@ public struct AWSAppConfigClient AppConfigModel.ExtensionAssociations { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4188,7 +4188,7 @@ public struct AWSAppConfigClient AppConfigModel.Extensions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4224,7 +4224,7 @@ public struct AWSAppConfigClient AppConfigModel.HostedConfigurationVersions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4260,7 +4260,7 @@ public struct AWSAppConfigClient AppConfigModel.ResourceTags { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4296,7 +4296,7 @@ public struct AWSAppConfigClient AppConfigModel.Deployment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4332,7 +4332,7 @@ public struct AWSAppConfigClient AppConfigModel.Deployment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4366,7 +4366,7 @@ public struct AWSAppConfigClient AppConfigModel.Application { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4472,7 +4472,7 @@ public struct AWSAppConfigClient AppConfigModel.ConfigurationProfile { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4508,7 +4508,7 @@ public struct AWSAppConfigClient AppConfigModel.DeploymentStrategy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4544,7 +4544,7 @@ public struct AWSAppConfigClient AppConfigModel.Environment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4580,7 +4580,7 @@ public struct AWSAppConfigClient AppConfigModel.Extension { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4616,7 +4616,7 @@ public struct AWSAppConfigClient AppConfigModel.ExtensionAssociation { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4650,7 +4650,7 @@ public struct AWSAppConfigClient CloudWatchModel.DeleteAnomalyDetectorOutputForDeleteAnomalyDetector { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3198,7 +3198,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DeleteDashboardsOutputForDeleteDashboards { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3238,7 +3238,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DeleteInsightRulesOutputForDeleteInsightRules { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3278,7 +3278,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DeleteMetricStreamOutputForDeleteMetricStream { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3318,7 +3318,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DescribeAlarmHistoryOutputForDescribeAlarmHistory { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3358,7 +3358,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DescribeAlarmsOutputForDescribeAlarms { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3397,7 +3397,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DescribeAlarmsForMetricOutputForDescribeAlarmsForMetric { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3437,7 +3437,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DescribeAnomalyDetectorsOutputForDescribeAnomalyDetectors { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3477,7 +3477,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DescribeInsightRulesOutputForDescribeInsightRules { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3514,7 +3514,7 @@ public struct AWSCloudWatchClient CloudWatchModel.DisableInsightRulesOutputForDisableInsightRules { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3591,7 +3591,7 @@ public struct AWSCloudWatchClient CloudWatchModel.EnableInsightRulesOutputForEnableInsightRules { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3671,7 +3671,7 @@ public struct AWSCloudWatchClient CloudWatchModel.GetDashboardOutputForGetDashboard { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3711,7 +3711,7 @@ public struct AWSCloudWatchClient CloudWatchModel.GetInsightRuleReportOutputForGetInsightRuleReport { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3751,7 +3751,7 @@ public struct AWSCloudWatchClient CloudWatchModel.GetMetricDataOutputForGetMetricData { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3791,7 +3791,7 @@ public struct AWSCloudWatchClient CloudWatchModel.GetMetricStatisticsOutputForGetMetricStatistics { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3831,7 +3831,7 @@ public struct AWSCloudWatchClient CloudWatchModel.GetMetricStreamOutputForGetMetricStream { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3870,7 +3870,7 @@ public struct AWSCloudWatchClient CloudWatchModel.GetMetricWidgetImageOutputForGetMetricWidgetImage { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3910,7 +3910,7 @@ public struct AWSCloudWatchClient CloudWatchModel.ListDashboardsOutputForListDashboards { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3950,7 +3950,7 @@ public struct AWSCloudWatchClient CloudWatchModel.ListManagedInsightRulesOutputForListManagedInsightRules { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3990,7 +3990,7 @@ public struct AWSCloudWatchClient CloudWatchModel.ListMetricStreamsOutputForListMetricStreams { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4030,7 +4030,7 @@ public struct AWSCloudWatchClient CloudWatchModel.ListMetricsOutputForListMetrics { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4070,7 +4070,7 @@ public struct AWSCloudWatchClient CloudWatchModel.ListTagsForResourceOutputForListTagsForResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4110,7 +4110,7 @@ public struct AWSCloudWatchClient CloudWatchModel.PutAnomalyDetectorOutputForPutAnomalyDetector { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4148,7 +4148,7 @@ public struct AWSCloudWatchClient CloudWatchModel.PutDashboardOutputForPutDashboard { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4228,7 +4228,7 @@ public struct AWSCloudWatchClient CloudWatchModel.PutInsightRuleOutputForPutInsightRule { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4268,7 +4268,7 @@ public struct AWSCloudWatchClient CloudWatchModel.PutManagedInsightRulesOutputForPutManagedInsightRules { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4306,7 +4306,7 @@ public struct AWSCloudWatchClient CloudWatchModel.PutMetricStreamOutputForPutMetricStream { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4422,7 +4422,7 @@ public struct AWSCloudWatchClient CloudWatchModel.StartMetricStreamsOutputForStartMetricStreams { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4502,7 +4502,7 @@ public struct AWSCloudWatchClient CloudWatchModel.StopMetricStreamsOutputForStopMetricStreams { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4542,7 +4542,7 @@ public struct AWSCloudWatchClient CloudWatchModel.TagResourceOutputForTagResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4582,7 +4582,7 @@ public struct AWSCloudWatchClient CloudWatchModel.UntagResourceOutputForUntagResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/CloudformationClient/AWSCloudformationClient.swift b/Sources/CloudformationClient/AWSCloudformationClient.swift index c3b9a69..a70bd1f 100644 --- a/Sources/CloudformationClient/AWSCloudformationClient.swift +++ b/Sources/CloudformationClient/AWSCloudformationClient.swift @@ -5591,7 +5591,7 @@ public struct AWSCloudformationClient CloudformationModel.ActivateOrganizationsAccessOutputForActivateOrganizationsAccess { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5631,7 +5631,7 @@ public struct AWSCloudformationClient CloudformationModel.ActivateTypeOutputForActivateType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5671,7 +5671,7 @@ public struct AWSCloudformationClient CloudformationModel.BatchDescribeTypeConfigurationsOutputForBatchDescribeTypeConfigurations { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5709,7 +5709,7 @@ public struct AWSCloudformationClient CloudformationModel.ContinueUpdateRollbackOutputForContinueUpdateRollback { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5789,7 +5789,7 @@ public struct AWSCloudformationClient CloudformationModel.CreateChangeSetOutputForCreateChangeSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5829,7 +5829,7 @@ public struct AWSCloudformationClient CloudformationModel.CreateStackOutputForCreateStack { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5869,7 +5869,7 @@ public struct AWSCloudformationClient CloudformationModel.CreateStackInstancesOutputForCreateStackInstances { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5909,7 +5909,7 @@ public struct AWSCloudformationClient CloudformationModel.CreateStackSetOutputForCreateStackSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5949,7 +5949,7 @@ public struct AWSCloudformationClient CloudformationModel.DeactivateOrganizationsAccessOutputForDeactivateOrganizationsAccess { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5989,7 +5989,7 @@ public struct AWSCloudformationClient CloudformationModel.DeactivateTypeOutputForDeactivateType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6029,7 +6029,7 @@ public struct AWSCloudformationClient CloudformationModel.DeleteChangeSetOutputForDeleteChangeSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6067,7 +6067,7 @@ public struct AWSCloudformationClient CloudformationModel.DeleteStackInstancesOutputForDeleteStackInstances { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6147,7 +6147,7 @@ public struct AWSCloudformationClient CloudformationModel.DeleteStackSetOutputForDeleteStackSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6187,7 +6187,7 @@ public struct AWSCloudformationClient CloudformationModel.DeregisterTypeOutputForDeregisterType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6226,7 +6226,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeAccountLimitsOutputForDescribeAccountLimits { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6266,7 +6266,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeChangeSetOutputForDescribeChangeSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6306,7 +6306,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeChangeSetHooksOutputForDescribeChangeSetHooks { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6346,7 +6346,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeOrganizationsAccessOutputForDescribeOrganizationsAccess { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6386,7 +6386,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribePublisherOutputForDescribePublisher { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6425,7 +6425,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackDriftDetectionStatusOutputForDescribeStackDriftDetectionStatus { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6464,7 +6464,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackEventsOutputForDescribeStackEvents { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6504,7 +6504,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackInstanceOutputForDescribeStackInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6543,7 +6543,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackResourceOutputForDescribeStackResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6582,7 +6582,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackResourceDriftsOutputForDescribeStackResourceDrifts { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6621,7 +6621,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackResourcesOutputForDescribeStackResources { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6661,7 +6661,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackSetOutputForDescribeStackSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6701,7 +6701,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStackSetOperationOutputForDescribeStackSetOperation { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6740,7 +6740,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeStacksOutputForDescribeStacks { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6780,7 +6780,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeTypeOutputForDescribeType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6820,7 +6820,7 @@ public struct AWSCloudformationClient CloudformationModel.DescribeTypeRegistrationOutputForDescribeTypeRegistration { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6859,7 +6859,7 @@ public struct AWSCloudformationClient CloudformationModel.DetectStackDriftOutputForDetectStackDrift { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6898,7 +6898,7 @@ public struct AWSCloudformationClient CloudformationModel.DetectStackResourceDriftOutputForDetectStackResourceDrift { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6938,7 +6938,7 @@ public struct AWSCloudformationClient CloudformationModel.DetectStackSetDriftOutputForDetectStackSetDrift { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6977,7 +6977,7 @@ public struct AWSCloudformationClient CloudformationModel.EstimateTemplateCostOutputForEstimateTemplateCost { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7017,7 +7017,7 @@ public struct AWSCloudformationClient CloudformationModel.ExecuteChangeSetOutputForExecuteChangeSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7056,7 +7056,7 @@ public struct AWSCloudformationClient CloudformationModel.GetStackPolicyOutputForGetStackPolicy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7096,7 +7096,7 @@ public struct AWSCloudformationClient CloudformationModel.GetTemplateOutputForGetTemplate { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7136,7 +7136,7 @@ public struct AWSCloudformationClient CloudformationModel.GetTemplateSummaryOutputForGetTemplateSummary { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7176,7 +7176,7 @@ public struct AWSCloudformationClient CloudformationModel.ImportStacksToStackSetOutputForImportStacksToStackSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7215,7 +7215,7 @@ public struct AWSCloudformationClient CloudformationModel.ListChangeSetsOutputForListChangeSets { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7254,7 +7254,7 @@ public struct AWSCloudformationClient CloudformationModel.ListExportsOutputForListExports { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7293,7 +7293,7 @@ public struct AWSCloudformationClient CloudformationModel.ListImportsOutputForListImports { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7333,7 +7333,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStackInstanceResourceDriftsOutputForListStackInstanceResourceDrifts { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7373,7 +7373,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStackInstancesOutputForListStackInstances { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7412,7 +7412,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStackResourcesOutputForListStackResources { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7452,7 +7452,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStackSetOperationResultsOutputForListStackSetOperationResults { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7492,7 +7492,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStackSetOperationsOutputForListStackSetOperations { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7531,7 +7531,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStackSetsOutputForListStackSets { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7570,7 +7570,7 @@ public struct AWSCloudformationClient CloudformationModel.ListStacksOutputForListStacks { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7610,7 +7610,7 @@ public struct AWSCloudformationClient CloudformationModel.ListTypeRegistrationsOutputForListTypeRegistrations { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7650,7 +7650,7 @@ public struct AWSCloudformationClient CloudformationModel.ListTypeVersionsOutputForListTypeVersions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7690,7 +7690,7 @@ public struct AWSCloudformationClient CloudformationModel.ListTypesOutputForListTypes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7730,7 +7730,7 @@ public struct AWSCloudformationClient CloudformationModel.PublishTypeOutputForPublishType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7770,7 +7770,7 @@ public struct AWSCloudformationClient CloudformationModel.RecordHandlerProgressOutputForRecordHandlerProgress { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7810,7 +7810,7 @@ public struct AWSCloudformationClient CloudformationModel.RegisterPublisherOutputForRegisterPublisher { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7850,7 +7850,7 @@ public struct AWSCloudformationClient CloudformationModel.RegisterTypeOutputForRegisterType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7890,7 +7890,7 @@ public struct AWSCloudformationClient CloudformationModel.RollbackStackOutputForRollbackStack { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7927,7 +7927,7 @@ public struct AWSCloudformationClient CloudformationModel.SetTypeConfigurationOutputForSetTypeConfiguration { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8007,7 +8007,7 @@ public struct AWSCloudformationClient CloudformationModel.SetTypeDefaultVersionOutputForSetTypeDefaultVersion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8044,7 +8044,7 @@ public struct AWSCloudformationClient CloudformationModel.StopStackSetOperationOutputForStopStackSetOperation { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8124,7 +8124,7 @@ public struct AWSCloudformationClient CloudformationModel.TestTypeOutputForTestType { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8164,7 +8164,7 @@ public struct AWSCloudformationClient CloudformationModel.UpdateStackOutputForUpdateStack { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8204,7 +8204,7 @@ public struct AWSCloudformationClient CloudformationModel.UpdateStackInstancesOutputForUpdateStackInstances { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8244,7 +8244,7 @@ public struct AWSCloudformationClient CloudformationModel.UpdateStackSetOutputForUpdateStackSet { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8283,7 +8283,7 @@ public struct AWSCloudformationClient CloudformationModel.UpdateTerminationProtectionOutputForUpdateTerminationProtection { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8322,7 +8322,7 @@ public struct AWSCloudformationClient CloudformationModel.ValidateTemplateOutputForValidateTemplate { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/CodePipelineClient/AWSCodePipelineClient.swift b/Sources/CodePipelineClient/AWSCodePipelineClient.swift index 32353cf..1b3c7a9 100644 --- a/Sources/CodePipelineClient/AWSCodePipelineClient.swift +++ b/Sources/CodePipelineClient/AWSCodePipelineClient.swift @@ -2864,7 +2864,7 @@ public struct AWSCodePipelineClient CodePipelineModel.AcknowledgeJobOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2900,7 +2900,7 @@ public struct AWSCodePipelineClient CodePipelineModel.AcknowledgeThirdPartyJobOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2936,7 +2936,7 @@ public struct AWSCodePipelineClient CodePipelineModel.CreateCustomActionTypeOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2972,7 +2972,7 @@ public struct AWSCodePipelineClient CodePipelineModel.CreatePipelineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3006,7 +3006,7 @@ public struct AWSCodePipelineClient CodePipelineModel.DeleteWebhookOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3112,7 +3112,7 @@ public struct AWSCodePipelineClient CodePipelineModel.DeregisterWebhookWithThirdPartyOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3146,7 +3146,7 @@ public struct AWSCodePipelineClient CodePipelineModel.GetActionTypeOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3252,7 +3252,7 @@ public struct AWSCodePipelineClient CodePipelineModel.GetJobDetailsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3288,7 +3288,7 @@ public struct AWSCodePipelineClient CodePipelineModel.GetPipelineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3324,7 +3324,7 @@ public struct AWSCodePipelineClient CodePipelineModel.GetPipelineExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3360,7 +3360,7 @@ public struct AWSCodePipelineClient CodePipelineModel.GetPipelineStateOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3396,7 +3396,7 @@ public struct AWSCodePipelineClient CodePipelineModel.GetThirdPartyJobDetailsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3432,7 +3432,7 @@ public struct AWSCodePipelineClient CodePipelineModel.ListActionExecutionsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3468,7 +3468,7 @@ public struct AWSCodePipelineClient CodePipelineModel.ListActionTypesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3504,7 +3504,7 @@ public struct AWSCodePipelineClient CodePipelineModel.ListPipelineExecutionsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3540,7 +3540,7 @@ public struct AWSCodePipelineClient CodePipelineModel.ListPipelinesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3576,7 +3576,7 @@ public struct AWSCodePipelineClient CodePipelineModel.ListTagsForResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3612,7 +3612,7 @@ public struct AWSCodePipelineClient CodePipelineModel.ListWebhooksOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3648,7 +3648,7 @@ public struct AWSCodePipelineClient CodePipelineModel.PollForJobsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3684,7 +3684,7 @@ public struct AWSCodePipelineClient CodePipelineModel.PollForThirdPartyJobsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3720,7 +3720,7 @@ public struct AWSCodePipelineClient CodePipelineModel.PutActionRevisionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3756,7 +3756,7 @@ public struct AWSCodePipelineClient CodePipelineModel.PutApprovalResultOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3790,7 +3790,7 @@ public struct AWSCodePipelineClient CodePipelineModel.PutWebhookOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3964,7 +3964,7 @@ public struct AWSCodePipelineClient CodePipelineModel.RegisterWebhookWithThirdPartyOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4000,7 +4000,7 @@ public struct AWSCodePipelineClient CodePipelineModel.RetryStageExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4036,7 +4036,7 @@ public struct AWSCodePipelineClient CodePipelineModel.StartPipelineExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4072,7 +4072,7 @@ public struct AWSCodePipelineClient CodePipelineModel.StopPipelineExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4108,7 +4108,7 @@ public struct AWSCodePipelineClient CodePipelineModel.TagResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4144,7 +4144,7 @@ public struct AWSCodePipelineClient CodePipelineModel.UntagResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4178,7 +4178,7 @@ public struct AWSCodePipelineClient CodePipelineModel.UpdatePipelineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/DynamoDBClient/AWSDynamoDBClient.swift b/Sources/DynamoDBClient/AWSDynamoDBClient.swift index fea1f16..1c56f47 100644 --- a/Sources/DynamoDBClient/AWSDynamoDBClient.swift +++ b/Sources/DynamoDBClient/AWSDynamoDBClient.swift @@ -3882,7 +3882,7 @@ public struct AWSDynamoDBClient DynamoDBModel.BatchExecuteStatementOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3918,7 +3918,7 @@ public struct AWSDynamoDBClient DynamoDBModel.BatchGetItemOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3954,7 +3954,7 @@ public struct AWSDynamoDBClient DynamoDBModel.BatchWriteItemOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3990,7 +3990,7 @@ public struct AWSDynamoDBClient DynamoDBModel.CreateBackupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4026,7 +4026,7 @@ public struct AWSDynamoDBClient DynamoDBModel.CreateGlobalTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4062,7 +4062,7 @@ public struct AWSDynamoDBClient DynamoDBModel.CreateTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4098,7 +4098,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DeleteBackupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4134,7 +4134,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DeleteItemOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4170,7 +4170,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DeleteTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4206,7 +4206,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeBackupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4242,7 +4242,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeContinuousBackupsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4278,7 +4278,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeContributorInsightsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4313,7 +4313,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeEndpointsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4349,7 +4349,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeExportOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4385,7 +4385,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeGlobalTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4421,7 +4421,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeGlobalTableSettingsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4457,7 +4457,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeImportOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4493,7 +4493,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeKinesisStreamingDestinationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4529,7 +4529,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeLimitsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4565,7 +4565,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4601,7 +4601,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeTableReplicaAutoScalingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4637,7 +4637,7 @@ public struct AWSDynamoDBClient DynamoDBModel.DescribeTimeToLiveOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4673,7 +4673,7 @@ public struct AWSDynamoDBClient DynamoDBModel.KinesisStreamingDestinationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4709,7 +4709,7 @@ public struct AWSDynamoDBClient DynamoDBModel.KinesisStreamingDestinationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4745,7 +4745,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ExecuteStatementOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4781,7 +4781,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ExecuteTransactionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4817,7 +4817,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ExportTableToPointInTimeOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4853,7 +4853,7 @@ public struct AWSDynamoDBClient DynamoDBModel.GetItemOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4889,7 +4889,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ImportTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4925,7 +4925,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListBackupsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4961,7 +4961,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListContributorInsightsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4997,7 +4997,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListExportsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5033,7 +5033,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListGlobalTablesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5069,7 +5069,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListImportsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5105,7 +5105,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListTablesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5141,7 +5141,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ListTagsOfResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5177,7 +5177,7 @@ public struct AWSDynamoDBClient DynamoDBModel.PutItemOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5213,7 +5213,7 @@ public struct AWSDynamoDBClient DynamoDBModel.QueryOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5249,7 +5249,7 @@ public struct AWSDynamoDBClient DynamoDBModel.RestoreTableFromBackupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5285,7 +5285,7 @@ public struct AWSDynamoDBClient DynamoDBModel.RestoreTableToPointInTimeOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5321,7 +5321,7 @@ public struct AWSDynamoDBClient DynamoDBModel.ScanOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5355,7 +5355,7 @@ public struct AWSDynamoDBClient DynamoDBModel.TransactGetItemsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5427,7 +5427,7 @@ public struct AWSDynamoDBClient DynamoDBModel.TransactWriteItemsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5461,7 +5461,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateContinuousBackupsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5533,7 +5533,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateContributorInsightsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5569,7 +5569,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateGlobalTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5605,7 +5605,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateGlobalTableSettingsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5641,7 +5641,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateItemOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5677,7 +5677,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateTableOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5713,7 +5713,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateTableReplicaAutoScalingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5749,7 +5749,7 @@ public struct AWSDynamoDBClient DynamoDBModel.UpdateTimeToLiveOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/ECRClient/AWSECRClient.swift b/Sources/ECRClient/AWSECRClient.swift index b125ace..1ed60cc 100644 --- a/Sources/ECRClient/AWSECRClient.swift +++ b/Sources/ECRClient/AWSECRClient.swift @@ -3031,7 +3031,7 @@ public struct AWSECRClient ECRModel.BatchCheckLayerAvailabilityResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3067,7 +3067,7 @@ public struct AWSECRClient ECRModel.BatchDeleteImageResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3103,7 +3103,7 @@ public struct AWSECRClient ECRModel.BatchGetImageResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3139,7 +3139,7 @@ public struct AWSECRClient ECRModel.BatchGetRepositoryScanningConfigurationResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3175,7 +3175,7 @@ public struct AWSECRClient ECRModel.CompleteLayerUploadResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3211,7 +3211,7 @@ public struct AWSECRClient ECRModel.CreatePullThroughCacheRuleResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3247,7 +3247,7 @@ public struct AWSECRClient ECRModel.CreateRepositoryResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3283,7 +3283,7 @@ public struct AWSECRClient ECRModel.DeleteLifecyclePolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3319,7 +3319,7 @@ public struct AWSECRClient ECRModel.DeletePullThroughCacheRuleResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3355,7 +3355,7 @@ public struct AWSECRClient ECRModel.DeleteRegistryPolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3391,7 +3391,7 @@ public struct AWSECRClient ECRModel.DeleteRepositoryResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3427,7 +3427,7 @@ public struct AWSECRClient ECRModel.DeleteRepositoryPolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3463,7 +3463,7 @@ public struct AWSECRClient ECRModel.DescribeImageReplicationStatusResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3499,7 +3499,7 @@ public struct AWSECRClient ECRModel.DescribeImageScanFindingsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3535,7 +3535,7 @@ public struct AWSECRClient ECRModel.DescribeImagesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3571,7 +3571,7 @@ public struct AWSECRClient ECRModel.DescribePullThroughCacheRulesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3607,7 +3607,7 @@ public struct AWSECRClient ECRModel.DescribeRegistryResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3643,7 +3643,7 @@ public struct AWSECRClient ECRModel.DescribeRepositoriesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3679,7 +3679,7 @@ public struct AWSECRClient ECRModel.GetAuthorizationTokenResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3715,7 +3715,7 @@ public struct AWSECRClient ECRModel.GetDownloadUrlForLayerResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3751,7 +3751,7 @@ public struct AWSECRClient ECRModel.GetLifecyclePolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3787,7 +3787,7 @@ public struct AWSECRClient ECRModel.GetLifecyclePolicyPreviewResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3823,7 +3823,7 @@ public struct AWSECRClient ECRModel.GetRegistryPolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3859,7 +3859,7 @@ public struct AWSECRClient ECRModel.GetRegistryScanningConfigurationResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3895,7 +3895,7 @@ public struct AWSECRClient ECRModel.GetRepositoryPolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3931,7 +3931,7 @@ public struct AWSECRClient ECRModel.InitiateLayerUploadResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3967,7 +3967,7 @@ public struct AWSECRClient ECRModel.ListImagesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4003,7 +4003,7 @@ public struct AWSECRClient ECRModel.ListTagsForResourceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4039,7 +4039,7 @@ public struct AWSECRClient ECRModel.PutImageResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4075,7 +4075,7 @@ public struct AWSECRClient ECRModel.PutImageScanningConfigurationResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4111,7 +4111,7 @@ public struct AWSECRClient ECRModel.PutImageTagMutabilityResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4147,7 +4147,7 @@ public struct AWSECRClient ECRModel.PutLifecyclePolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4183,7 +4183,7 @@ public struct AWSECRClient ECRModel.PutRegistryPolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4219,7 +4219,7 @@ public struct AWSECRClient ECRModel.PutRegistryScanningConfigurationResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4255,7 +4255,7 @@ public struct AWSECRClient ECRModel.PutReplicationConfigurationResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4291,7 +4291,7 @@ public struct AWSECRClient ECRModel.SetRepositoryPolicyResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4327,7 +4327,7 @@ public struct AWSECRClient ECRModel.StartImageScanResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4363,7 +4363,7 @@ public struct AWSECRClient ECRModel.StartLifecyclePolicyPreviewResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4399,7 +4399,7 @@ public struct AWSECRClient ECRModel.TagResourceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4435,7 +4435,7 @@ public struct AWSECRClient ECRModel.UntagResourceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4471,7 +4471,7 @@ public struct AWSECRClient ECRModel.UploadLayerPartResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/ElasticComputeCloudClient/AWSElasticComputeCloudClient.swift b/Sources/ElasticComputeCloudClient/AWSElasticComputeCloudClient.swift index 8ac5c61..c56d740 100644 --- a/Sources/ElasticComputeCloudClient/AWSElasticComputeCloudClient.swift +++ b/Sources/ElasticComputeCloudClient/AWSElasticComputeCloudClient.swift @@ -45600,7 +45600,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptAddressTransferResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45639,7 +45639,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptReservedInstancesExchangeQuoteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45678,7 +45678,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptTransitGatewayMulticastDomainAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45717,7 +45717,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptTransitGatewayPeeringAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45756,7 +45756,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptTransitGatewayVpcAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45795,7 +45795,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptVpcEndpointConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45834,7 +45834,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AcceptVpcPeeringConnectionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45873,7 +45873,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AdvertiseByoipCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45912,7 +45912,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AllocateAddressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45951,7 +45951,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AllocateHostsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -45990,7 +45990,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AllocateIpamPoolCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46029,7 +46029,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ApplySecurityGroupsToClientVpnTargetNetworkResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46068,7 +46068,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssignIpv6AddressesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46107,7 +46107,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssignPrivateIpAddressesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46146,7 +46146,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssignPrivateNatGatewayAddressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46185,7 +46185,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateAddressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46224,7 +46224,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateClientVpnTargetNetworkResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46261,7 +46261,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateEnclaveCertificateIamRoleResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46339,7 +46339,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateIamInstanceProfileResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46378,7 +46378,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateInstanceEventWindowResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46417,7 +46417,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateIpamResourceDiscoveryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46456,7 +46456,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateNatGatewayAddressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46495,7 +46495,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46534,7 +46534,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateSubnetCidrBlockResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46573,7 +46573,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateTransitGatewayMulticastDomainResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46612,7 +46612,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateTransitGatewayPolicyTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46651,7 +46651,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateTransitGatewayRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46690,7 +46690,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateTrunkInterfaceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46729,7 +46729,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AssociateVpcCidrBlockResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46768,7 +46768,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AttachClassicLinkVpcResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46805,7 +46805,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AttachNetworkInterfaceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46883,7 +46883,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AttachVerifiedAccessTrustProviderResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46922,7 +46922,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.VolumeAttachment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -46961,7 +46961,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AttachVpnGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47000,7 +47000,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AuthorizeClientVpnIngressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47039,7 +47039,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AuthorizeSecurityGroupEgressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47078,7 +47078,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.AuthorizeSecurityGroupIngressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47117,7 +47117,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.BundleInstanceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47156,7 +47156,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelBundleTaskResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47195,7 +47195,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelCapacityReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47234,7 +47234,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelCapacityReservationFleetsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47271,7 +47271,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelImageLaunchPermissionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47386,7 +47386,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelImportTaskResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47425,7 +47425,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelReservedInstancesListingResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47464,7 +47464,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelSpotFleetRequestsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47503,7 +47503,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CancelSpotInstanceRequestsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47542,7 +47542,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ConfirmProductInstanceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47581,7 +47581,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CopyFpgaImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47620,7 +47620,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CopyImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47659,7 +47659,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CopySnapshotResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47698,7 +47698,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateCapacityReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47737,7 +47737,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateCapacityReservationFleetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47776,7 +47776,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateCarrierGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47815,7 +47815,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateClientVpnEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47854,7 +47854,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateClientVpnRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47893,7 +47893,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateCoipCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47932,7 +47932,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateCoipPoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -47971,7 +47971,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateCustomerGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48010,7 +48010,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateDefaultSubnetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48049,7 +48049,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateDefaultVpcResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48088,7 +48088,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateDhcpOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48127,7 +48127,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateEgressOnlyInternetGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48166,7 +48166,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateFleetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48205,7 +48205,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateFlowLogsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48244,7 +48244,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateFpgaImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48283,7 +48283,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48322,7 +48322,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateInstanceConnectEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48361,7 +48361,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateInstanceEventWindowResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48400,7 +48400,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateInstanceExportTaskResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48439,7 +48439,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateInternetGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48478,7 +48478,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateIpamResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48517,7 +48517,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateIpamPoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48556,7 +48556,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateIpamResourceDiscoveryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48595,7 +48595,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateIpamScopeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48634,7 +48634,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.KeyPair { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48673,7 +48673,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateLaunchTemplateResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48712,7 +48712,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateLaunchTemplateVersionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48751,7 +48751,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateLocalGatewayRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48790,7 +48790,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateLocalGatewayRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48829,7 +48829,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48868,7 +48868,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateLocalGatewayRouteTableVpcAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48907,7 +48907,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateManagedPrefixListResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48946,7 +48946,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateNatGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -48985,7 +48985,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateNetworkAclResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49022,7 +49022,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateNetworkInsightsAccessScopeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49100,7 +49100,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateNetworkInsightsPathResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49139,7 +49139,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateNetworkInterfaceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49178,7 +49178,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateNetworkInterfacePermissionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49217,7 +49217,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreatePlacementGroupResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49256,7 +49256,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreatePublicIpv4PoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49295,7 +49295,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateReplaceRootVolumeTaskResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49334,7 +49334,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateReservedInstancesListingResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49373,7 +49373,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateRestoreImageTaskResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49412,7 +49412,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49451,7 +49451,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49490,7 +49490,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateSecurityGroupResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49529,7 +49529,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.Snapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49568,7 +49568,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateSnapshotsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49607,7 +49607,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateSpotDatafeedSubscriptionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49646,7 +49646,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateStoreImageTaskResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49685,7 +49685,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateSubnetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49724,7 +49724,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateSubnetCidrReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49761,7 +49761,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTrafficMirrorFilterResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49839,7 +49839,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTrafficMirrorFilterRuleResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49878,7 +49878,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTrafficMirrorSessionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49917,7 +49917,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTrafficMirrorTargetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49956,7 +49956,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -49995,7 +49995,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayConnectResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50034,7 +50034,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayConnectPeerResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50073,7 +50073,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayMulticastDomainResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50112,7 +50112,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayPeeringAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50151,7 +50151,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayPolicyTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50190,7 +50190,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayPrefixListReferenceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50229,7 +50229,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50268,7 +50268,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50307,7 +50307,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayRouteTableAnnouncementResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50346,7 +50346,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateTransitGatewayVpcAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50385,7 +50385,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVerifiedAccessEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50424,7 +50424,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVerifiedAccessGroupResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50463,7 +50463,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVerifiedAccessInstanceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50502,7 +50502,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVerifiedAccessTrustProviderResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50541,7 +50541,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.Volume { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50580,7 +50580,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpcResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50619,7 +50619,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpcEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50658,7 +50658,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpcEndpointConnectionNotificationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50697,7 +50697,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpcEndpointServiceConfigurationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50736,7 +50736,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpcPeeringConnectionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50775,7 +50775,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpnConnectionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50812,7 +50812,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.CreateVpnGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50890,7 +50890,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteCarrierGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50929,7 +50929,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteClientVpnEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -50968,7 +50968,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteClientVpnRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51007,7 +51007,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteCoipCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51046,7 +51046,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteCoipPoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51083,7 +51083,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteEgressOnlyInternetGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51198,7 +51198,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteFleetsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51237,7 +51237,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteFlowLogsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51276,7 +51276,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteFpgaImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51315,7 +51315,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteInstanceConnectEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51354,7 +51354,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteInstanceEventWindowResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51391,7 +51391,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteIpamResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51469,7 +51469,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteIpamPoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51508,7 +51508,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteIpamResourceDiscoveryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51547,7 +51547,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteIpamScopeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51586,7 +51586,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteKeyPairResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51625,7 +51625,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteLaunchTemplateResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51664,7 +51664,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteLaunchTemplateVersionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51703,7 +51703,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteLocalGatewayRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51742,7 +51742,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteLocalGatewayRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51781,7 +51781,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51820,7 +51820,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteLocalGatewayRouteTableVpcAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51859,7 +51859,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteManagedPrefixListResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51898,7 +51898,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteNatGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -51935,7 +51935,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteNetworkInsightsAccessScopeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52050,7 +52050,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteNetworkInsightsAccessScopeAnalysisResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52089,7 +52089,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteNetworkInsightsAnalysisResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52128,7 +52128,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteNetworkInsightsPathResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52165,7 +52165,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteNetworkInterfacePermissionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52241,7 +52241,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeletePublicIpv4PoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52319,7 +52319,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteQueuedReservedInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52356,7 +52356,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteSubnetCidrReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52617,7 +52617,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTrafficMirrorFilterResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52695,7 +52695,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTrafficMirrorFilterRuleResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52734,7 +52734,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTrafficMirrorSessionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52773,7 +52773,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTrafficMirrorTargetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52812,7 +52812,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52851,7 +52851,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayConnectResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52890,7 +52890,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayConnectPeerResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52929,7 +52929,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayMulticastDomainResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -52968,7 +52968,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayPeeringAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53007,7 +53007,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayPolicyTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53046,7 +53046,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayPrefixListReferenceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53085,7 +53085,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53124,7 +53124,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53163,7 +53163,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayRouteTableAnnouncementResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53202,7 +53202,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteTransitGatewayVpcAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53241,7 +53241,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVerifiedAccessEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53280,7 +53280,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVerifiedAccessGroupResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53319,7 +53319,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVerifiedAccessInstanceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53358,7 +53358,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVerifiedAccessTrustProviderResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53395,7 +53395,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVpcEndpointConnectionNotificationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53510,7 +53510,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVpcEndpointServiceConfigurationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53549,7 +53549,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVpcEndpointsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53588,7 +53588,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeleteVpcPeeringConnectionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53625,7 +53625,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeprovisionByoipCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53777,7 +53777,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeprovisionIpamPoolCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53816,7 +53816,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeprovisionPublicIpv4PoolCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53853,7 +53853,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeregisterInstanceEventNotificationAttributesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53931,7 +53931,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeregisterTransitGatewayMulticastGroupMembersResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -53970,7 +53970,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DeregisterTransitGatewayMulticastGroupSourcesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54009,7 +54009,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAccountAttributesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54048,7 +54048,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAddressTransfersResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54087,7 +54087,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAddressesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54126,7 +54126,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAddressesAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54165,7 +54165,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAggregateIdFormatResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54204,7 +54204,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAvailabilityZonesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54243,7 +54243,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeAwsNetworkPerformanceMetricSubscriptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54282,7 +54282,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeBundleTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54321,7 +54321,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeByoipCidrsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54360,7 +54360,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeCapacityReservationFleetsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54399,7 +54399,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeCapacityReservationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54438,7 +54438,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeCarrierGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54477,7 +54477,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeClassicLinkInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54516,7 +54516,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeClientVpnAuthorizationRulesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54555,7 +54555,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeClientVpnConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54594,7 +54594,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeClientVpnEndpointsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54633,7 +54633,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeClientVpnRoutesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54672,7 +54672,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeClientVpnTargetNetworksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54711,7 +54711,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeCoipPoolsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54750,7 +54750,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeConversionTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54789,7 +54789,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeCustomerGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54828,7 +54828,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeDhcpOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54867,7 +54867,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeEgressOnlyInternetGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54906,7 +54906,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeElasticGpusResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54945,7 +54945,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeExportImageTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -54984,7 +54984,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeExportTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55023,7 +55023,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFastLaunchImagesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55062,7 +55062,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFastSnapshotRestoresResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55101,7 +55101,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFleetHistoryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55140,7 +55140,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFleetInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55179,7 +55179,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFleetsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55218,7 +55218,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFlowLogsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55257,7 +55257,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFpgaImageAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55296,7 +55296,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeFpgaImagesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55335,7 +55335,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeHostReservationOfferingsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55374,7 +55374,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeHostReservationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55413,7 +55413,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeHostsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55452,7 +55452,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIamInstanceProfileAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55491,7 +55491,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIdFormatResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55530,7 +55530,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIdentityIdFormatResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55569,7 +55569,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImageAttribute { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55608,7 +55608,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeImagesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55647,7 +55647,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeImportImageTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55686,7 +55686,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeImportSnapshotTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55725,7 +55725,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.InstanceAttribute { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55764,7 +55764,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceConnectEndpointsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55803,7 +55803,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceCreditSpecificationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55842,7 +55842,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceEventNotificationAttributesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55881,7 +55881,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceEventWindowsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55920,7 +55920,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceStatusResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55959,7 +55959,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceTypeOfferingsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -55998,7 +55998,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstanceTypesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56037,7 +56037,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56076,7 +56076,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeInternetGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56115,7 +56115,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIpamPoolsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56154,7 +56154,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIpamResourceDiscoveriesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56193,7 +56193,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIpamResourceDiscoveryAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56232,7 +56232,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIpamScopesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56271,7 +56271,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIpamsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56310,7 +56310,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeIpv6PoolsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56349,7 +56349,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeKeyPairsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56388,7 +56388,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLaunchTemplateVersionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56427,7 +56427,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLaunchTemplatesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56466,7 +56466,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56505,7 +56505,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLocalGatewayRouteTableVpcAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56544,7 +56544,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLocalGatewayRouteTablesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56583,7 +56583,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLocalGatewayVirtualInterfaceGroupsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56622,7 +56622,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLocalGatewayVirtualInterfacesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56661,7 +56661,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeLocalGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56700,7 +56700,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeManagedPrefixListsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56739,7 +56739,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeMovingAddressesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56778,7 +56778,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNatGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56817,7 +56817,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkAclsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56856,7 +56856,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInsightsAccessScopeAnalysesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56895,7 +56895,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInsightsAccessScopesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56934,7 +56934,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInsightsAnalysesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -56973,7 +56973,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInsightsPathsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57012,7 +57012,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInterfaceAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57051,7 +57051,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInterfacePermissionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57090,7 +57090,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeNetworkInterfacesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57129,7 +57129,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribePlacementGroupsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57168,7 +57168,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribePrefixListsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57207,7 +57207,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribePrincipalIdFormatResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57246,7 +57246,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribePublicIpv4PoolsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57285,7 +57285,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeRegionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57324,7 +57324,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeReplaceRootVolumeTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57363,7 +57363,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeReservedInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57402,7 +57402,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeReservedInstancesListingsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57441,7 +57441,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeReservedInstancesModificationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57480,7 +57480,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeReservedInstancesOfferingsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57519,7 +57519,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeRouteTablesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57558,7 +57558,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeScheduledInstanceAvailabilityResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57597,7 +57597,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeScheduledInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57636,7 +57636,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSecurityGroupReferencesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57675,7 +57675,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSecurityGroupRulesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57714,7 +57714,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSecurityGroupsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57753,7 +57753,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSnapshotAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57792,7 +57792,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSnapshotTierStatusResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57831,7 +57831,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSnapshotsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57870,7 +57870,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSpotDatafeedSubscriptionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57909,7 +57909,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSpotFleetInstancesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57948,7 +57948,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSpotFleetRequestHistoryResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -57987,7 +57987,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSpotFleetRequestsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58026,7 +58026,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSpotInstanceRequestsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58065,7 +58065,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSpotPriceHistoryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58104,7 +58104,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeStaleSecurityGroupsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58143,7 +58143,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeStoreImageTasksResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58182,7 +58182,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeSubnetsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58221,7 +58221,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTagsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58260,7 +58260,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTrafficMirrorFiltersResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58299,7 +58299,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTrafficMirrorSessionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58338,7 +58338,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTrafficMirrorTargetsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58377,7 +58377,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayAttachmentsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58416,7 +58416,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayConnectPeersResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58455,7 +58455,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayConnectsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58494,7 +58494,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayMulticastDomainsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58533,7 +58533,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayPeeringAttachmentsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58572,7 +58572,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayPolicyTablesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58611,7 +58611,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayRouteTableAnnouncementsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58650,7 +58650,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayRouteTablesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58689,7 +58689,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewayVpcAttachmentsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58728,7 +58728,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTransitGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58767,7 +58767,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeTrunkInterfaceAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58806,7 +58806,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVerifiedAccessEndpointsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58845,7 +58845,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVerifiedAccessGroupsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58884,7 +58884,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVerifiedAccessInstanceLoggingConfigurationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58923,7 +58923,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVerifiedAccessInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -58962,7 +58962,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVerifiedAccessTrustProvidersResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59001,7 +59001,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVolumeAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59040,7 +59040,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVolumeStatusResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59079,7 +59079,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVolumesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59118,7 +59118,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVolumesModificationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59157,7 +59157,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59196,7 +59196,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcClassicLinkResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59235,7 +59235,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcClassicLinkDnsSupportResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59274,7 +59274,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcEndpointConnectionNotificationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59313,7 +59313,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcEndpointConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59352,7 +59352,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcEndpointServiceConfigurationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59391,7 +59391,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcEndpointServicePermissionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59430,7 +59430,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcEndpointServicesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59469,7 +59469,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcEndpointsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59508,7 +59508,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcPeeringConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59547,7 +59547,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpcsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59586,7 +59586,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpnConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59625,7 +59625,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DescribeVpnGatewaysResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59664,7 +59664,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DetachClassicLinkVpcResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59701,7 +59701,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DetachVerifiedAccessTrustProviderResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59816,7 +59816,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.VolumeAttachment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59853,7 +59853,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableAddressTransferResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59931,7 +59931,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableAwsNetworkPerformanceMetricSubscriptionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -59970,7 +59970,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableEbsEncryptionByDefaultResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60009,7 +60009,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableFastLaunchResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60048,7 +60048,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableFastSnapshotRestoresResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60087,7 +60087,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60126,7 +60126,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableImageBlockPublicAccessResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60165,7 +60165,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableImageDeprecationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60204,7 +60204,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableIpamOrganizationAdminAccountResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60243,7 +60243,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableSerialConsoleAccessResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60282,7 +60282,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableTransitGatewayRouteTablePropagationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60319,7 +60319,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableVpcClassicLinkResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60397,7 +60397,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisableVpcClassicLinkDnsSupportResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60434,7 +60434,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateClientVpnTargetNetworkResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60512,7 +60512,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateEnclaveCertificateIamRoleResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60551,7 +60551,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateIamInstanceProfileResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60590,7 +60590,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateInstanceEventWindowResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60629,7 +60629,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateIpamResourceDiscoveryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60668,7 +60668,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateNatGatewayAddressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60705,7 +60705,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateSubnetCidrBlockResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60783,7 +60783,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateTransitGatewayMulticastDomainResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60822,7 +60822,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateTransitGatewayPolicyTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60861,7 +60861,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateTransitGatewayRouteTableResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60900,7 +60900,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateTrunkInterfaceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60939,7 +60939,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.DisassociateVpcCidrBlockResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -60978,7 +60978,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableAddressTransferResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61017,7 +61017,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableAwsNetworkPerformanceMetricSubscriptionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61056,7 +61056,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableEbsEncryptionByDefaultResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61095,7 +61095,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableFastLaunchResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61134,7 +61134,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableFastSnapshotRestoresResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61173,7 +61173,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61212,7 +61212,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableImageBlockPublicAccessResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61251,7 +61251,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableImageDeprecationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61290,7 +61290,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableIpamOrganizationAdminAccountResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61329,7 +61329,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableReachabilityAnalyzerOrganizationSharingResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61368,7 +61368,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableSerialConsoleAccessResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61407,7 +61407,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableTransitGatewayRouteTablePropagationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61444,7 +61444,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableVpcClassicLinkResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61559,7 +61559,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.EnableVpcClassicLinkDnsSupportResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61598,7 +61598,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ExportClientVpnClientCertificateRevocationListResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61637,7 +61637,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ExportClientVpnClientConfigurationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61676,7 +61676,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ExportImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61715,7 +61715,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ExportTransitGatewayRoutesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61754,7 +61754,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetAssociatedEnclaveCertificateIamRolesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61793,7 +61793,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetAssociatedIpv6PoolCidrsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61832,7 +61832,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetAwsNetworkPerformanceDataResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61871,7 +61871,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetCapacityReservationUsageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61910,7 +61910,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetCoipPoolUsageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61949,7 +61949,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetConsoleOutputResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -61988,7 +61988,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetConsoleScreenshotResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62027,7 +62027,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetDefaultCreditSpecificationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62066,7 +62066,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetEbsDefaultKmsKeyIdResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62105,7 +62105,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetEbsEncryptionByDefaultResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62144,7 +62144,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetFlowLogsIntegrationTemplateResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62183,7 +62183,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetGroupsForCapacityReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62222,7 +62222,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetHostReservationPurchasePreviewResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62261,7 +62261,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetImageBlockPublicAccessStateResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62300,7 +62300,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetInstanceTypesFromInstanceRequirementsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62339,7 +62339,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetInstanceUefiDataResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62378,7 +62378,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetIpamAddressHistoryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62417,7 +62417,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetIpamDiscoveredAccountsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62456,7 +62456,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetIpamDiscoveredResourceCidrsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62495,7 +62495,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetIpamPoolAllocationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62534,7 +62534,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetIpamPoolCidrsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62573,7 +62573,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetIpamResourceCidrsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62612,7 +62612,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetLaunchTemplateDataResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62651,7 +62651,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetManagedPrefixListAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62690,7 +62690,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetManagedPrefixListEntriesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62729,7 +62729,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetNetworkInsightsAccessScopeAnalysisFindingsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62768,7 +62768,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetNetworkInsightsAccessScopeContentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62807,7 +62807,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetPasswordDataResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62846,7 +62846,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetReservedInstancesExchangeQuoteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62885,7 +62885,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetSecurityGroupsForVpcResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62924,7 +62924,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetSerialConsoleAccessStatusResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -62963,7 +62963,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetSpotPlacementScoresResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63002,7 +63002,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetSubnetCidrReservationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63041,7 +63041,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayAttachmentPropagationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63080,7 +63080,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayMulticastDomainAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63119,7 +63119,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayPolicyTableAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63158,7 +63158,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayPolicyTableEntriesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63197,7 +63197,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayPrefixListReferencesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63236,7 +63236,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayRouteTableAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63275,7 +63275,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetTransitGatewayRouteTablePropagationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63314,7 +63314,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetVerifiedAccessEndpointPolicyResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63353,7 +63353,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetVerifiedAccessGroupPolicyResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63392,7 +63392,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetVpnConnectionDeviceSampleConfigurationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63431,7 +63431,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetVpnConnectionDeviceTypesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63470,7 +63470,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.GetVpnTunnelReplacementStatusResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63509,7 +63509,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImportClientVpnClientCertificateRevocationListResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63548,7 +63548,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImportImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63587,7 +63587,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImportInstanceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63626,7 +63626,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImportKeyPairResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63665,7 +63665,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImportSnapshotResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63704,7 +63704,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ImportVolumeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63743,7 +63743,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ListImagesInRecycleBinResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63782,7 +63782,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ListSnapshotsInRecycleBinResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63821,7 +63821,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyAddressAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63860,7 +63860,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyAvailabilityZoneGroupResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63899,7 +63899,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyCapacityReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63938,7 +63938,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyCapacityReservationFleetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -63977,7 +63977,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyClientVpnEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64016,7 +64016,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyDefaultCreditSpecificationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64055,7 +64055,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyEbsDefaultKmsKeyIdResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64094,7 +64094,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyFleetResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64133,7 +64133,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyFpgaImageAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64172,7 +64172,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyHostsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64209,7 +64209,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstanceCapacityReservationAttributesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64398,7 +64398,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstanceCreditSpecificationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64437,7 +64437,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstanceEventStartTimeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64476,7 +64476,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstanceEventWindowResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64515,7 +64515,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstanceMaintenanceOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64554,7 +64554,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstanceMetadataOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64593,7 +64593,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyInstancePlacementResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64632,7 +64632,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyIpamResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64671,7 +64671,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyIpamPoolResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64710,7 +64710,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyIpamResourceCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64749,7 +64749,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyIpamResourceDiscoveryResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64788,7 +64788,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyIpamScopeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64827,7 +64827,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyLaunchTemplateResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64866,7 +64866,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyLocalGatewayRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64905,7 +64905,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyManagedPrefixListResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -64942,7 +64942,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyPrivateDnsNameOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65020,7 +65020,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyReservedInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65059,7 +65059,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifySecurityGroupRulesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65096,7 +65096,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifySnapshotTierResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65174,7 +65174,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifySpotFleetRequestResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65211,7 +65211,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyTrafficMirrorFilterNetworkServicesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65289,7 +65289,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyTrafficMirrorFilterRuleResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65328,7 +65328,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyTrafficMirrorSessionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65367,7 +65367,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyTransitGatewayResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65406,7 +65406,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyTransitGatewayPrefixListReferenceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65445,7 +65445,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyTransitGatewayVpcAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65484,7 +65484,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65523,7 +65523,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessEndpointPolicyResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65562,7 +65562,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessGroupResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65601,7 +65601,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessGroupPolicyResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65640,7 +65640,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessInstanceResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65679,7 +65679,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessInstanceLoggingConfigurationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65718,7 +65718,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVerifiedAccessTrustProviderResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65757,7 +65757,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVolumeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65794,7 +65794,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcEndpointResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65909,7 +65909,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcEndpointConnectionNotificationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65948,7 +65948,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcEndpointServiceConfigurationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -65987,7 +65987,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcEndpointServicePayerResponsibilityResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66026,7 +66026,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcEndpointServicePermissionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66065,7 +66065,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcPeeringConnectionOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66104,7 +66104,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpcTenancyResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66143,7 +66143,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpnConnectionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66182,7 +66182,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpnConnectionOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66221,7 +66221,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpnTunnelCertificateResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66260,7 +66260,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ModifyVpnTunnelOptionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66299,7 +66299,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.MonitorInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66338,7 +66338,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.MoveAddressToVpcResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66377,7 +66377,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.MoveByoipCidrToIpamResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66416,7 +66416,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ProvisionByoipCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66455,7 +66455,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ProvisionIpamPoolCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66494,7 +66494,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ProvisionPublicIpv4PoolCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66533,7 +66533,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.PurchaseHostReservationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66572,7 +66572,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.PurchaseReservedInstancesOfferingResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66611,7 +66611,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.PurchaseScheduledInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66648,7 +66648,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RegisterImageResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66726,7 +66726,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RegisterInstanceEventNotificationAttributesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66765,7 +66765,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RegisterTransitGatewayMulticastGroupMembersResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66804,7 +66804,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RegisterTransitGatewayMulticastGroupSourcesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66843,7 +66843,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RejectTransitGatewayMulticastDomainAssociationsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66882,7 +66882,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RejectTransitGatewayPeeringAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66921,7 +66921,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RejectTransitGatewayVpcAttachmentResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66960,7 +66960,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RejectVpcEndpointConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -66999,7 +66999,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RejectVpcPeeringConnectionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67036,7 +67036,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReleaseHostsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67114,7 +67114,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReleaseIpamPoolAllocationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67153,7 +67153,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReplaceIamInstanceProfileAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67192,7 +67192,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReplaceNetworkAclAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67229,7 +67229,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReplaceRouteTableAssociationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67344,7 +67344,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReplaceTransitGatewayRouteResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67383,7 +67383,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ReplaceVpnTunnelResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67420,7 +67420,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RequestSpotFleetResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67498,7 +67498,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RequestSpotInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67537,7 +67537,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ResetAddressAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67576,7 +67576,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ResetEbsDefaultKmsKeyIdResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67615,7 +67615,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.ResetFpgaImageAttributeResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67652,7 +67652,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RestoreAddressToClassicResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67841,7 +67841,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RestoreImageFromRecycleBinResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67880,7 +67880,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RestoreManagedPrefixListVersionResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67919,7 +67919,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RestoreSnapshotFromRecycleBinResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67958,7 +67958,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RestoreSnapshotTierResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -67997,7 +67997,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RevokeClientVpnIngressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68036,7 +68036,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RevokeSecurityGroupEgressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68075,7 +68075,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RevokeSecurityGroupIngressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68114,7 +68114,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.Reservation { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68153,7 +68153,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.RunScheduledInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68192,7 +68192,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.SearchLocalGatewayRoutesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68231,7 +68231,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.SearchTransitGatewayMulticastGroupsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68270,7 +68270,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.SearchTransitGatewayRoutesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68307,7 +68307,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.StartInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68385,7 +68385,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.StartNetworkInsightsAccessScopeAnalysisResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68424,7 +68424,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.StartNetworkInsightsAnalysisResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68463,7 +68463,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.StartVpcEndpointServicePrivateDnsVerificationResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68502,7 +68502,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.StopInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68541,7 +68541,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.TerminateClientVpnConnectionsResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68580,7 +68580,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.TerminateInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68619,7 +68619,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.UnassignIpv6AddressesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68656,7 +68656,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.UnassignPrivateNatGatewayAddressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68734,7 +68734,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.UnmonitorInstancesResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68773,7 +68773,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.UpdateSecurityGroupRuleDescriptionsEgressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68812,7 +68812,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.UpdateSecurityGroupRuleDescriptionsIngressResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -68851,7 +68851,7 @@ public struct AWSElasticComputeCloudClient ElasticComputeCloudModel.WithdrawByoipCidrResult { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/ElasticContainerClient/AWSElasticContainerClient.swift b/Sources/ElasticContainerClient/AWSElasticContainerClient.swift index fe79b22..5cf0bf2 100644 --- a/Sources/ElasticContainerClient/AWSElasticContainerClient.swift +++ b/Sources/ElasticContainerClient/AWSElasticContainerClient.swift @@ -4100,7 +4100,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.CreateCapacityProviderResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4136,7 +4136,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.CreateClusterResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4172,7 +4172,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.CreateServiceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4208,7 +4208,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.CreateTaskSetResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4244,7 +4244,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteAccountSettingResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4280,7 +4280,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteAttributesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4316,7 +4316,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteCapacityProviderResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4352,7 +4352,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteClusterResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4388,7 +4388,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteServiceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4424,7 +4424,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteTaskDefinitionsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4460,7 +4460,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeleteTaskSetResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4496,7 +4496,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeregisterContainerInstanceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4532,7 +4532,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DeregisterTaskDefinitionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4568,7 +4568,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeCapacityProvidersResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4604,7 +4604,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeClustersResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4640,7 +4640,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeContainerInstancesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4676,7 +4676,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeServicesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4712,7 +4712,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeTaskDefinitionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4748,7 +4748,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeTaskSetsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4784,7 +4784,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DescribeTasksResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4820,7 +4820,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.DiscoverPollEndpointResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4856,7 +4856,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ExecuteCommandResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4892,7 +4892,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.GetTaskProtectionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4928,7 +4928,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListAccountSettingsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4964,7 +4964,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListAttributesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5000,7 +5000,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListClustersResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5036,7 +5036,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListContainerInstancesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5072,7 +5072,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListServicesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5108,7 +5108,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListServicesByNamespaceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5144,7 +5144,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListTagsForResourceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5180,7 +5180,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListTaskDefinitionFamiliesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5216,7 +5216,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListTaskDefinitionsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5252,7 +5252,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.ListTasksResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5288,7 +5288,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.PutAccountSettingResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5324,7 +5324,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.PutAccountSettingDefaultResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5360,7 +5360,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.PutAttributesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5396,7 +5396,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.PutClusterCapacityProvidersResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5432,7 +5432,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.RegisterContainerInstanceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5468,7 +5468,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.RegisterTaskDefinitionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5504,7 +5504,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.RunTaskResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5540,7 +5540,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.StartTaskResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5576,7 +5576,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.StopTaskResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5612,7 +5612,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.SubmitAttachmentStateChangesResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5648,7 +5648,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.SubmitContainerStateChangeResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5684,7 +5684,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.SubmitTaskStateChangeResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5720,7 +5720,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.TagResourceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5756,7 +5756,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UntagResourceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5792,7 +5792,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateCapacityProviderResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5828,7 +5828,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateClusterResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5864,7 +5864,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateClusterSettingsResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5900,7 +5900,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateContainerAgentResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5936,7 +5936,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateContainerInstancesStateResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5972,7 +5972,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateServiceResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6008,7 +6008,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateServicePrimaryTaskSetResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6044,7 +6044,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateTaskProtectionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6080,7 +6080,7 @@ public struct AWSElasticContainerClient ElasticContainerModel.UpdateTaskSetResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/RDSClient/AWSRDSClient.swift b/Sources/RDSClient/AWSRDSClient.swift index 0b68188..fd539ca 100644 --- a/Sources/RDSClient/AWSRDSClient.swift +++ b/Sources/RDSClient/AWSRDSClient.swift @@ -11343,7 +11343,7 @@ public struct AWSRDSClient RDSModel.AddSourceIdentifierToSubscriptionResultForAddSourceIdentifierToSubscription { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11459,7 +11459,7 @@ public struct AWSRDSClient RDSModel.ApplyPendingMaintenanceActionResultForApplyPendingMaintenanceAction { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11539,7 +11539,7 @@ public struct AWSRDSClient RDSModel.AuthorizeDBSecurityGroupIngressResultForAuthorizeDBSecurityGroupIngress { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11579,7 +11579,7 @@ public struct AWSRDSClient RDSModel.DBClusterBacktrackForBacktrackDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11619,7 +11619,7 @@ public struct AWSRDSClient RDSModel.ExportTaskForCancelExportTask { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11659,7 +11659,7 @@ public struct AWSRDSClient RDSModel.CopyDBClusterParameterGroupResultForCopyDBClusterParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11699,7 +11699,7 @@ public struct AWSRDSClient RDSModel.CopyDBClusterSnapshotResultForCopyDBClusterSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11739,7 +11739,7 @@ public struct AWSRDSClient RDSModel.CopyDBParameterGroupResultForCopyDBParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11779,7 +11779,7 @@ public struct AWSRDSClient RDSModel.CopyDBSnapshotResultForCopyDBSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11819,7 +11819,7 @@ public struct AWSRDSClient RDSModel.CopyOptionGroupResultForCopyOptionGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11859,7 +11859,7 @@ public struct AWSRDSClient RDSModel.CreateBlueGreenDeploymentResponseForCreateBlueGreenDeployment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11899,7 +11899,7 @@ public struct AWSRDSClient RDSModel.DBEngineVersionForCreateCustomDBEngineVersion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11939,7 +11939,7 @@ public struct AWSRDSClient RDSModel.CreateDBClusterResultForCreateDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -11979,7 +11979,7 @@ public struct AWSRDSClient RDSModel.DBClusterEndpointForCreateDBClusterEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12019,7 +12019,7 @@ public struct AWSRDSClient RDSModel.CreateDBClusterParameterGroupResultForCreateDBClusterParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12059,7 +12059,7 @@ public struct AWSRDSClient RDSModel.CreateDBClusterSnapshotResultForCreateDBClusterSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12099,7 +12099,7 @@ public struct AWSRDSClient RDSModel.CreateDBInstanceResultForCreateDBInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12139,7 +12139,7 @@ public struct AWSRDSClient RDSModel.CreateDBInstanceReadReplicaResultForCreateDBInstanceReadReplica { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12179,7 +12179,7 @@ public struct AWSRDSClient RDSModel.CreateDBParameterGroupResultForCreateDBParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12219,7 +12219,7 @@ public struct AWSRDSClient RDSModel.CreateDBProxyResponseForCreateDBProxy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12259,7 +12259,7 @@ public struct AWSRDSClient RDSModel.CreateDBProxyEndpointResponseForCreateDBProxyEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12299,7 +12299,7 @@ public struct AWSRDSClient RDSModel.CreateDBSecurityGroupResultForCreateDBSecurityGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12339,7 +12339,7 @@ public struct AWSRDSClient RDSModel.CreateDBSnapshotResultForCreateDBSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12379,7 +12379,7 @@ public struct AWSRDSClient RDSModel.CreateDBSubnetGroupResultForCreateDBSubnetGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12419,7 +12419,7 @@ public struct AWSRDSClient RDSModel.CreateEventSubscriptionResultForCreateEventSubscription { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12459,7 +12459,7 @@ public struct AWSRDSClient RDSModel.CreateGlobalClusterResultForCreateGlobalCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12499,7 +12499,7 @@ public struct AWSRDSClient RDSModel.CreateOptionGroupResultForCreateOptionGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12539,7 +12539,7 @@ public struct AWSRDSClient RDSModel.DeleteBlueGreenDeploymentResponseForDeleteBlueGreenDeployment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12579,7 +12579,7 @@ public struct AWSRDSClient RDSModel.DBEngineVersionForDeleteCustomDBEngineVersion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12619,7 +12619,7 @@ public struct AWSRDSClient RDSModel.DeleteDBClusterResultForDeleteDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12659,7 +12659,7 @@ public struct AWSRDSClient RDSModel.DeleteDBClusterAutomatedBackupResultForDeleteDBClusterAutomatedBackup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12699,7 +12699,7 @@ public struct AWSRDSClient RDSModel.DBClusterEndpointForDeleteDBClusterEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12737,7 +12737,7 @@ public struct AWSRDSClient RDSModel.DeleteDBClusterSnapshotResultForDeleteDBClusterSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12817,7 +12817,7 @@ public struct AWSRDSClient RDSModel.DeleteDBInstanceResultForDeleteDBInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12857,7 +12857,7 @@ public struct AWSRDSClient RDSModel.DeleteDBInstanceAutomatedBackupResultForDeleteDBInstanceAutomatedBackup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12895,7 +12895,7 @@ public struct AWSRDSClient RDSModel.DeleteDBProxyResponseForDeleteDBProxy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -12975,7 +12975,7 @@ public struct AWSRDSClient RDSModel.DeleteDBProxyEndpointResponseForDeleteDBProxyEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13013,7 +13013,7 @@ public struct AWSRDSClient RDSModel.DeleteDBSnapshotResultForDeleteDBSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13091,7 +13091,7 @@ public struct AWSRDSClient RDSModel.DeleteEventSubscriptionResultForDeleteEventSubscription { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13171,7 +13171,7 @@ public struct AWSRDSClient RDSModel.DeleteGlobalClusterResultForDeleteGlobalCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13209,7 +13209,7 @@ public struct AWSRDSClient RDSModel.DeregisterDBProxyTargetsResponseForDeregisterDBProxyTargets { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13288,7 +13288,7 @@ public struct AWSRDSClient RDSModel.AccountAttributesMessageForDescribeAccountAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13328,7 +13328,7 @@ public struct AWSRDSClient RDSModel.DescribeBlueGreenDeploymentsResponseForDescribeBlueGreenDeployments { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13368,7 +13368,7 @@ public struct AWSRDSClient RDSModel.CertificateMessageForDescribeCertificates { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13408,7 +13408,7 @@ public struct AWSRDSClient RDSModel.DBClusterAutomatedBackupMessageForDescribeDBClusterAutomatedBackups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13448,7 +13448,7 @@ public struct AWSRDSClient RDSModel.DBClusterBacktrackMessageForDescribeDBClusterBacktracks { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13488,7 +13488,7 @@ public struct AWSRDSClient RDSModel.DBClusterEndpointMessageForDescribeDBClusterEndpoints { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13528,7 +13528,7 @@ public struct AWSRDSClient RDSModel.DBClusterParameterGroupsMessageForDescribeDBClusterParameterGroups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13568,7 +13568,7 @@ public struct AWSRDSClient RDSModel.DBClusterParameterGroupDetailsForDescribeDBClusterParameters { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13608,7 +13608,7 @@ public struct AWSRDSClient RDSModel.DescribeDBClusterSnapshotAttributesResultForDescribeDBClusterSnapshotAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13648,7 +13648,7 @@ public struct AWSRDSClient RDSModel.DBClusterSnapshotMessageForDescribeDBClusterSnapshots { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13688,7 +13688,7 @@ public struct AWSRDSClient RDSModel.DBClusterMessageForDescribeDBClusters { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13727,7 +13727,7 @@ public struct AWSRDSClient RDSModel.DBEngineVersionMessageForDescribeDBEngineVersions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13767,7 +13767,7 @@ public struct AWSRDSClient RDSModel.DBInstanceAutomatedBackupMessageForDescribeDBInstanceAutomatedBackups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13807,7 +13807,7 @@ public struct AWSRDSClient RDSModel.DBInstanceMessageForDescribeDBInstances { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13847,7 +13847,7 @@ public struct AWSRDSClient RDSModel.DescribeDBLogFilesResponseForDescribeDBLogFiles { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13887,7 +13887,7 @@ public struct AWSRDSClient RDSModel.DBParameterGroupsMessageForDescribeDBParameterGroups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13927,7 +13927,7 @@ public struct AWSRDSClient RDSModel.DBParameterGroupDetailsForDescribeDBParameters { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -13967,7 +13967,7 @@ public struct AWSRDSClient RDSModel.DescribeDBProxiesResponseForDescribeDBProxies { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14007,7 +14007,7 @@ public struct AWSRDSClient RDSModel.DescribeDBProxyEndpointsResponseForDescribeDBProxyEndpoints { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14047,7 +14047,7 @@ public struct AWSRDSClient RDSModel.DescribeDBProxyTargetGroupsResponseForDescribeDBProxyTargetGroups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14087,7 +14087,7 @@ public struct AWSRDSClient RDSModel.DescribeDBProxyTargetsResponseForDescribeDBProxyTargets { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14127,7 +14127,7 @@ public struct AWSRDSClient RDSModel.DBSecurityGroupMessageForDescribeDBSecurityGroups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14167,7 +14167,7 @@ public struct AWSRDSClient RDSModel.DescribeDBSnapshotAttributesResultForDescribeDBSnapshotAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14207,7 +14207,7 @@ public struct AWSRDSClient RDSModel.DBSnapshotMessageForDescribeDBSnapshots { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14247,7 +14247,7 @@ public struct AWSRDSClient RDSModel.DBSubnetGroupMessageForDescribeDBSubnetGroups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14286,7 +14286,7 @@ public struct AWSRDSClient RDSModel.DescribeEngineDefaultClusterParametersResultForDescribeEngineDefaultClusterParameters { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14325,7 +14325,7 @@ public struct AWSRDSClient RDSModel.DescribeEngineDefaultParametersResultForDescribeEngineDefaultParameters { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14364,7 +14364,7 @@ public struct AWSRDSClient RDSModel.EventCategoriesMessageForDescribeEventCategories { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14404,7 +14404,7 @@ public struct AWSRDSClient RDSModel.EventSubscriptionsMessageForDescribeEventSubscriptions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14443,7 +14443,7 @@ public struct AWSRDSClient RDSModel.EventsMessageForDescribeEvents { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14483,7 +14483,7 @@ public struct AWSRDSClient RDSModel.ExportTasksMessageForDescribeExportTasks { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14523,7 +14523,7 @@ public struct AWSRDSClient RDSModel.GlobalClustersMessageForDescribeGlobalClusters { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14562,7 +14562,7 @@ public struct AWSRDSClient RDSModel.OptionGroupOptionsMessageForDescribeOptionGroupOptions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14602,7 +14602,7 @@ public struct AWSRDSClient RDSModel.OptionGroupsForDescribeOptionGroups { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14641,7 +14641,7 @@ public struct AWSRDSClient RDSModel.OrderableDBInstanceOptionsMessageForDescribeOrderableDBInstanceOptions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14681,7 +14681,7 @@ public struct AWSRDSClient RDSModel.PendingMaintenanceActionsMessageForDescribePendingMaintenanceActions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14721,7 +14721,7 @@ public struct AWSRDSClient RDSModel.ReservedDBInstanceMessageForDescribeReservedDBInstances { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14761,7 +14761,7 @@ public struct AWSRDSClient RDSModel.ReservedDBInstancesOfferingMessageForDescribeReservedDBInstancesOfferings { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14800,7 +14800,7 @@ public struct AWSRDSClient RDSModel.SourceRegionMessageForDescribeSourceRegions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14840,7 +14840,7 @@ public struct AWSRDSClient RDSModel.DescribeValidDBInstanceModificationsResultForDescribeValidDBInstanceModifications { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14880,7 +14880,7 @@ public struct AWSRDSClient RDSModel.DownloadDBLogFilePortionDetailsForDownloadDBLogFilePortion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14920,7 +14920,7 @@ public struct AWSRDSClient RDSModel.FailoverDBClusterResultForFailoverDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -14960,7 +14960,7 @@ public struct AWSRDSClient RDSModel.FailoverGlobalClusterResultForFailoverGlobalCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15000,7 +15000,7 @@ public struct AWSRDSClient RDSModel.TagListMessageForListTagsForResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15040,7 +15040,7 @@ public struct AWSRDSClient RDSModel.ModifyActivityStreamResponseForModifyActivityStream { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15080,7 +15080,7 @@ public struct AWSRDSClient RDSModel.ModifyCertificatesResultForModifyCertificates { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15120,7 +15120,7 @@ public struct AWSRDSClient RDSModel.DBClusterCapacityInfoForModifyCurrentDBClusterCapacity { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15160,7 +15160,7 @@ public struct AWSRDSClient RDSModel.DBEngineVersionForModifyCustomDBEngineVersion { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15200,7 +15200,7 @@ public struct AWSRDSClient RDSModel.ModifyDBClusterResultForModifyDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15240,7 +15240,7 @@ public struct AWSRDSClient RDSModel.DBClusterEndpointForModifyDBClusterEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15280,7 +15280,7 @@ public struct AWSRDSClient RDSModel.DBClusterParameterGroupNameMessageForModifyDBClusterParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15320,7 +15320,7 @@ public struct AWSRDSClient RDSModel.ModifyDBClusterSnapshotAttributeResultForModifyDBClusterSnapshotAttribute { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15360,7 +15360,7 @@ public struct AWSRDSClient RDSModel.ModifyDBInstanceResultForModifyDBInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15400,7 +15400,7 @@ public struct AWSRDSClient RDSModel.DBParameterGroupNameMessageForModifyDBParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15440,7 +15440,7 @@ public struct AWSRDSClient RDSModel.ModifyDBProxyResponseForModifyDBProxy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15480,7 +15480,7 @@ public struct AWSRDSClient RDSModel.ModifyDBProxyEndpointResponseForModifyDBProxyEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15520,7 +15520,7 @@ public struct AWSRDSClient RDSModel.ModifyDBProxyTargetGroupResponseForModifyDBProxyTargetGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15560,7 +15560,7 @@ public struct AWSRDSClient RDSModel.ModifyDBSnapshotResultForModifyDBSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15600,7 +15600,7 @@ public struct AWSRDSClient RDSModel.ModifyDBSnapshotAttributeResultForModifyDBSnapshotAttribute { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15640,7 +15640,7 @@ public struct AWSRDSClient RDSModel.ModifyDBSubnetGroupResultForModifyDBSubnetGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15680,7 +15680,7 @@ public struct AWSRDSClient RDSModel.ModifyEventSubscriptionResultForModifyEventSubscription { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15720,7 +15720,7 @@ public struct AWSRDSClient RDSModel.ModifyGlobalClusterResultForModifyGlobalCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15760,7 +15760,7 @@ public struct AWSRDSClient RDSModel.ModifyOptionGroupResultForModifyOptionGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15800,7 +15800,7 @@ public struct AWSRDSClient RDSModel.PromoteReadReplicaResultForPromoteReadReplica { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15840,7 +15840,7 @@ public struct AWSRDSClient RDSModel.PromoteReadReplicaDBClusterResultForPromoteReadReplicaDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15880,7 +15880,7 @@ public struct AWSRDSClient RDSModel.PurchaseReservedDBInstancesOfferingResultForPurchaseReservedDBInstancesOffering { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15920,7 +15920,7 @@ public struct AWSRDSClient RDSModel.RebootDBClusterResultForRebootDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -15960,7 +15960,7 @@ public struct AWSRDSClient RDSModel.RebootDBInstanceResultForRebootDBInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16000,7 +16000,7 @@ public struct AWSRDSClient RDSModel.RegisterDBProxyTargetsResponseForRegisterDBProxyTargets { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16040,7 +16040,7 @@ public struct AWSRDSClient RDSModel.RemoveFromGlobalClusterResultForRemoveFromGlobalCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16078,7 +16078,7 @@ public struct AWSRDSClient RDSModel.RemoveSourceIdentifierFromSubscriptionResultForRemoveSourceIdentifierFromSubscription { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16194,7 +16194,7 @@ public struct AWSRDSClient RDSModel.DBClusterParameterGroupNameMessageForResetDBClusterParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16274,7 +16274,7 @@ public struct AWSRDSClient RDSModel.DBParameterGroupNameMessageForResetDBParameterGroup { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16314,7 +16314,7 @@ public struct AWSRDSClient RDSModel.RestoreDBClusterFromS3ResultForRestoreDBClusterFromS3 { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16354,7 +16354,7 @@ public struct AWSRDSClient RDSModel.RestoreDBClusterFromSnapshotResultForRestoreDBClusterFromSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16394,7 +16394,7 @@ public struct AWSRDSClient RDSModel.RestoreDBClusterToPointInTimeResultForRestoreDBClusterToPointInTime { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16434,7 +16434,7 @@ public struct AWSRDSClient RDSModel.RestoreDBInstanceFromDBSnapshotResultForRestoreDBInstanceFromDBSnapshot { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16474,7 +16474,7 @@ public struct AWSRDSClient RDSModel.RestoreDBInstanceFromS3ResultForRestoreDBInstanceFromS3 { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16514,7 +16514,7 @@ public struct AWSRDSClient RDSModel.RestoreDBInstanceToPointInTimeResultForRestoreDBInstanceToPointInTime { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16554,7 +16554,7 @@ public struct AWSRDSClient RDSModel.RevokeDBSecurityGroupIngressResultForRevokeDBSecurityGroupIngress { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16594,7 +16594,7 @@ public struct AWSRDSClient RDSModel.StartActivityStreamResponseForStartActivityStream { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16634,7 +16634,7 @@ public struct AWSRDSClient RDSModel.StartDBClusterResultForStartDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16674,7 +16674,7 @@ public struct AWSRDSClient RDSModel.StartDBInstanceResultForStartDBInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16714,7 +16714,7 @@ public struct AWSRDSClient RDSModel.StartDBInstanceAutomatedBackupsReplicationResultForStartDBInstanceAutomatedBackupsReplication { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16754,7 +16754,7 @@ public struct AWSRDSClient RDSModel.ExportTaskForStartExportTask { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16794,7 +16794,7 @@ public struct AWSRDSClient RDSModel.StopActivityStreamResponseForStopActivityStream { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16834,7 +16834,7 @@ public struct AWSRDSClient RDSModel.StopDBClusterResultForStopDBCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16874,7 +16874,7 @@ public struct AWSRDSClient RDSModel.StopDBInstanceResultForStopDBInstance { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16914,7 +16914,7 @@ public struct AWSRDSClient RDSModel.StopDBInstanceAutomatedBackupsReplicationResultForStopDBInstanceAutomatedBackupsReplication { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16954,7 +16954,7 @@ public struct AWSRDSClient RDSModel.SwitchoverBlueGreenDeploymentResponseForSwitchoverBlueGreenDeployment { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -16994,7 +16994,7 @@ public struct AWSRDSClient RDSModel.SwitchoverGlobalClusterResultForSwitchoverGlobalCluster { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -17034,7 +17034,7 @@ public struct AWSRDSClient RDSModel.SwitchoverReadReplicaResultForSwitchoverReadReplica { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/RDSDataClient/AWSRDSDataClient.swift b/Sources/RDSDataClient/AWSRDSDataClient.swift index 24e5bf1..a30645b 100644 --- a/Sources/RDSDataClient/AWSRDSDataClient.swift +++ b/Sources/RDSDataClient/AWSRDSDataClient.swift @@ -581,7 +581,7 @@ public struct AWSRDSDataClient RDSDataModel.BatchExecuteStatementResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -617,7 +617,7 @@ public struct AWSRDSDataClient RDSDataModel.BeginTransactionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -653,7 +653,7 @@ public struct AWSRDSDataClient RDSDataModel.CommitTransactionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -689,7 +689,7 @@ public struct AWSRDSDataClient RDSDataModel.ExecuteSqlResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -725,7 +725,7 @@ public struct AWSRDSDataClient RDSDataModel.ExecuteStatementResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -761,7 +761,7 @@ public struct AWSRDSDataClient RDSDataModel.RollbackTransactionResponse { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/S3Client/AWSS3Client.swift b/Sources/S3Client/AWSS3Client.swift index a6b4c1a..6f8532a 100644 --- a/Sources/S3Client/AWSS3Client.swift +++ b/Sources/S3Client/AWSS3Client.swift @@ -6871,7 +6871,7 @@ public struct AWSS3Client S3Model.AbortMultipartUploadOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6907,7 +6907,7 @@ public struct AWSS3Client S3Model.CompleteMultipartUploadOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6944,7 +6944,7 @@ public struct AWSS3Client S3Model.CopyObjectOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -6981,7 +6981,7 @@ public struct AWSS3Client S3Model.CreateBucketOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7017,7 +7017,7 @@ public struct AWSS3Client S3Model.CreateMultipartUploadOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7051,7 +7051,7 @@ public struct AWSS3Client S3Model.DeleteObjectOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7531,7 +7531,7 @@ public struct AWSS3Client S3Model.DeleteObjectTaggingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7567,7 +7567,7 @@ public struct AWSS3Client S3Model.DeleteObjectsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7601,7 +7601,7 @@ public struct AWSS3Client S3Model.GetBucketAccelerateConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7673,7 +7673,7 @@ public struct AWSS3Client S3Model.GetBucketAclOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7709,7 +7709,7 @@ public struct AWSS3Client S3Model.GetBucketAnalyticsConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7745,7 +7745,7 @@ public struct AWSS3Client S3Model.GetBucketCorsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7781,7 +7781,7 @@ public struct AWSS3Client S3Model.GetBucketEncryptionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7817,7 +7817,7 @@ public struct AWSS3Client S3Model.GetBucketIntelligentTieringConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7853,7 +7853,7 @@ public struct AWSS3Client S3Model.GetBucketInventoryConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7889,7 +7889,7 @@ public struct AWSS3Client S3Model.GetBucketLifecycleOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7925,7 +7925,7 @@ public struct AWSS3Client S3Model.GetBucketLifecycleConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7961,7 +7961,7 @@ public struct AWSS3Client S3Model.GetBucketLocationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -7997,7 +7997,7 @@ public struct AWSS3Client S3Model.GetBucketLoggingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8033,7 +8033,7 @@ public struct AWSS3Client S3Model.GetBucketMetricsConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8069,7 +8069,7 @@ public struct AWSS3Client S3Model.NotificationConfigurationDeprecated { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8105,7 +8105,7 @@ public struct AWSS3Client S3Model.NotificationConfiguration { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8141,7 +8141,7 @@ public struct AWSS3Client S3Model.GetBucketOwnershipControlsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8177,7 +8177,7 @@ public struct AWSS3Client S3Model.GetBucketPolicyOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8213,7 +8213,7 @@ public struct AWSS3Client S3Model.GetBucketPolicyStatusOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8249,7 +8249,7 @@ public struct AWSS3Client S3Model.GetBucketReplicationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8285,7 +8285,7 @@ public struct AWSS3Client S3Model.GetBucketRequestPaymentOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8321,7 +8321,7 @@ public struct AWSS3Client S3Model.GetBucketTaggingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8357,7 +8357,7 @@ public struct AWSS3Client S3Model.GetBucketVersioningOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8393,7 +8393,7 @@ public struct AWSS3Client S3Model.GetBucketWebsiteOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8430,7 +8430,7 @@ public struct AWSS3Client S3Model.GetObjectOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8467,7 +8467,7 @@ public struct AWSS3Client S3Model.GetObjectAclOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8504,7 +8504,7 @@ public struct AWSS3Client S3Model.GetObjectAttributesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8540,7 +8540,7 @@ public struct AWSS3Client S3Model.GetObjectLegalHoldOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8576,7 +8576,7 @@ public struct AWSS3Client S3Model.GetObjectLockConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8612,7 +8612,7 @@ public struct AWSS3Client S3Model.GetObjectRetentionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8648,7 +8648,7 @@ public struct AWSS3Client S3Model.GetObjectTaggingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8684,7 +8684,7 @@ public struct AWSS3Client S3Model.GetObjectTorrentOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8720,7 +8720,7 @@ public struct AWSS3Client S3Model.GetPublicAccessBlockOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8755,7 +8755,7 @@ public struct AWSS3Client S3Model.HeadObjectOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8828,7 +8828,7 @@ public struct AWSS3Client S3Model.ListBucketAnalyticsConfigurationsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8864,7 +8864,7 @@ public struct AWSS3Client S3Model.ListBucketIntelligentTieringConfigurationsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8900,7 +8900,7 @@ public struct AWSS3Client S3Model.ListBucketInventoryConfigurationsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8936,7 +8936,7 @@ public struct AWSS3Client S3Model.ListBucketMetricsConfigurationsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -8968,7 +8968,7 @@ public struct AWSS3Client S3Model.ListBucketsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9004,7 +9004,7 @@ public struct AWSS3Client S3Model.ListMultipartUploadsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9040,7 +9040,7 @@ public struct AWSS3Client S3Model.ListObjectVersionsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9077,7 +9077,7 @@ public struct AWSS3Client S3Model.ListObjectsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9114,7 +9114,7 @@ public struct AWSS3Client S3Model.ListObjectsV2Output { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9150,7 +9150,7 @@ public struct AWSS3Client S3Model.ListPartsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9184,7 +9184,7 @@ public struct AWSS3Client S3Model.PutObjectOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9903,7 +9903,7 @@ public struct AWSS3Client S3Model.PutObjectAclOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9939,7 +9939,7 @@ public struct AWSS3Client S3Model.PutObjectLegalHoldOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -9975,7 +9975,7 @@ public struct AWSS3Client S3Model.PutObjectLockConfigurationOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10011,7 +10011,7 @@ public struct AWSS3Client S3Model.PutObjectRetentionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10047,7 +10047,7 @@ public struct AWSS3Client S3Model.PutObjectTaggingOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10081,7 +10081,7 @@ public struct AWSS3Client S3Model.RestoreObjectOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10154,7 +10154,7 @@ public struct AWSS3Client S3Model.SelectObjectContentOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10190,7 +10190,7 @@ public struct AWSS3Client S3Model.UploadPartOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10226,7 +10226,7 @@ public struct AWSS3Client S3Model.UploadPartCopyOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -10260,7 +10260,7 @@ public struct AWSS3Client SchedulerModel.CreateScheduleOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1038,7 +1038,7 @@ public struct AWSSchedulerClient SchedulerModel.CreateScheduleGroupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1074,7 +1074,7 @@ public struct AWSSchedulerClient SchedulerModel.DeleteScheduleOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1110,7 +1110,7 @@ public struct AWSSchedulerClient SchedulerModel.DeleteScheduleGroupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1146,7 +1146,7 @@ public struct AWSSchedulerClient SchedulerModel.GetScheduleOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1182,7 +1182,7 @@ public struct AWSSchedulerClient SchedulerModel.GetScheduleGroupOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1218,7 +1218,7 @@ public struct AWSSchedulerClient SchedulerModel.ListScheduleGroupsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1254,7 +1254,7 @@ public struct AWSSchedulerClient SchedulerModel.ListSchedulesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1290,7 +1290,7 @@ public struct AWSSchedulerClient SchedulerModel.ListTagsForResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1326,7 +1326,7 @@ public struct AWSSchedulerClient SchedulerModel.TagResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1362,7 +1362,7 @@ public struct AWSSchedulerClient SchedulerModel.UntagResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1398,7 +1398,7 @@ public struct AWSSchedulerClient SchedulerModel.UpdateScheduleOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/SecurityTokenClient/AWSSecurityTokenClient.swift b/Sources/SecurityTokenClient/AWSSecurityTokenClient.swift index 9589a06..9648df2 100644 --- a/Sources/SecurityTokenClient/AWSSecurityTokenClient.swift +++ b/Sources/SecurityTokenClient/AWSSecurityTokenClient.swift @@ -784,7 +784,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.AssumeRoleResponseForAssumeRole { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -824,7 +824,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.AssumeRoleWithSAMLResponseForAssumeRoleWithSAML { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -864,7 +864,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.AssumeRoleWithWebIdentityResponseForAssumeRoleWithWebIdentity { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -904,7 +904,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.DecodeAuthorizationMessageResponseForDecodeAuthorizationMessage { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -943,7 +943,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.GetAccessKeyInfoResponseForGetAccessKeyInfo { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -982,7 +982,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.GetCallerIdentityResponseForGetCallerIdentity { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1022,7 +1022,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.GetFederationTokenResponseForGetFederationToken { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -1062,7 +1062,7 @@ public struct AWSSecurityTokenClient SecurityTokenModel.GetSessionTokenResponseForGetSessionToken { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/SimpleNotificationClient/AWSSimpleNotificationClient.swift b/Sources/SimpleNotificationClient/AWSSimpleNotificationClient.swift index 531b51d..7f0fdae 100644 --- a/Sources/SimpleNotificationClient/AWSSimpleNotificationClient.swift +++ b/Sources/SimpleNotificationClient/AWSSimpleNotificationClient.swift @@ -3424,7 +3424,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.CheckIfPhoneNumberIsOptedOutResponseForCheckIfPhoneNumberIsOptedOut { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3504,7 +3504,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ConfirmSubscriptionResponseForConfirmSubscription { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3544,7 +3544,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.CreatePlatformApplicationResponseForCreatePlatformApplication { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3584,7 +3584,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.CreateEndpointResponseForCreatePlatformEndpoint { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3624,7 +3624,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.CreateSMSSandboxPhoneNumberResultForCreateSMSSandboxPhoneNumber { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3664,7 +3664,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.CreateTopicResponseForCreateTopic { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3702,7 +3702,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.DeleteSMSSandboxPhoneNumberResultForDeleteSMSSandboxPhoneNumber { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3818,7 +3818,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetDataProtectionPolicyResponseForGetDataProtectionPolicy { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3898,7 +3898,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetEndpointAttributesResponseForGetEndpointAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3938,7 +3938,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetPlatformApplicationAttributesResponseForGetPlatformApplicationAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3978,7 +3978,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetSMSAttributesResponseForGetSMSAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4018,7 +4018,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetSMSSandboxAccountStatusResultForGetSMSSandboxAccountStatus { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4058,7 +4058,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetSubscriptionAttributesResponseForGetSubscriptionAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4098,7 +4098,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.GetTopicAttributesResponseForGetTopicAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4138,7 +4138,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListEndpointsByPlatformApplicationResponseForListEndpointsByPlatformApplication { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4178,7 +4178,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListOriginationNumbersResultForListOriginationNumbers { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4218,7 +4218,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListPhoneNumbersOptedOutResponseForListPhoneNumbersOptedOut { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4258,7 +4258,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListPlatformApplicationsResponseForListPlatformApplications { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4298,7 +4298,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListSMSSandboxPhoneNumbersResultForListSMSSandboxPhoneNumbers { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4338,7 +4338,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListSubscriptionsResponseForListSubscriptions { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4378,7 +4378,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListSubscriptionsByTopicResponseForListSubscriptionsByTopic { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4418,7 +4418,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListTagsForResourceResponseForListTagsForResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4458,7 +4458,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.ListTopicsResponseForListTopics { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4498,7 +4498,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.OptInPhoneNumberResponseForOptInPhoneNumber { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4538,7 +4538,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.PublishResponseForPublish { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4578,7 +4578,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.PublishBatchResponseForPublishBatch { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4616,7 +4616,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.SetSMSAttributesResponseForSetSMSAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4808,7 +4808,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.SubscribeResponseForSubscribe { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4926,7 +4926,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.TagResourceResponseForTagResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -4964,7 +4964,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.UntagResourceResponseForUntagResource { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -5044,7 +5044,7 @@ public struct AWSSimpleNotificationClient SimpleNotificationModel.VerifySMSSandboxPhoneNumberResultForVerifySMSSandboxPhoneNumber { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/Sources/SimpleQueueClient/AWSSimpleQueueClient.swift b/Sources/SimpleQueueClient/AWSSimpleQueueClient.swift index c455a42..b842456 100644 --- a/Sources/SimpleQueueClient/AWSSimpleQueueClient.swift +++ b/Sources/SimpleQueueClient/AWSSimpleQueueClient.swift @@ -1953,7 +1953,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.CancelMessageMoveTaskResultForCancelMessageMoveTask { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2031,7 +2031,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.ChangeMessageVisibilityBatchResultForChangeMessageVisibilityBatch { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2111,7 +2111,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.CreateQueueResultForCreateQueue { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2149,7 +2149,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.DeleteMessageBatchResultForDeleteMessageBatch { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2226,7 +2226,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.GetQueueAttributesResultForGetQueueAttributes { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2306,7 +2306,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.GetQueueUrlResultForGetQueueUrl { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2346,7 +2346,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.ListDeadLetterSourceQueuesResultForListDeadLetterSourceQueues { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2386,7 +2386,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.ListMessageMoveTasksResultForListMessageMoveTasks { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2425,7 +2425,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.ListQueueTagsResultForListQueueTags { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2464,7 +2464,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.ListQueuesResultForListQueues { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2502,7 +2502,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.ReceiveMessageResultForReceiveMessage { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2579,7 +2579,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.SendMessageResultForSendMessage { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2659,7 +2659,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.SendMessageBatchResultForSendMessageBatch { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2697,7 +2697,7 @@ public struct AWSSimpleQueueClient SimpleQueueModel.StartMessageMoveTaskResultForStartMessageMoveTask { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2774,7 +2774,7 @@ public struct AWSSimpleQueueClient SimpleWorkflowModel.WorkflowExecutionCount { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2752,7 +2752,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.WorkflowExecutionCount { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2788,7 +2788,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.PendingTaskCount { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2824,7 +2824,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.PendingTaskCount { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2858,7 +2858,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.ActivityTypeDetail { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2998,7 +2998,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.DomainDetail { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3034,7 +3034,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.WorkflowExecutionDetail { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3070,7 +3070,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.WorkflowTypeDetail { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3106,7 +3106,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.History { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3142,7 +3142,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.ActivityTypeInfos { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3178,7 +3178,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.WorkflowExecutionInfos { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3214,7 +3214,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.DomainInfos { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3250,7 +3250,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.WorkflowExecutionInfos { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3286,7 +3286,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.ListTagsForResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3322,7 +3322,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.WorkflowTypeInfos { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3358,7 +3358,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.ActivityTask { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3394,7 +3394,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.DecisionTask { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3430,7 +3430,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.ActivityTaskStatus { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3464,7 +3464,7 @@ public struct AWSSimpleWorkflowClient SimpleWorkflowModel.Run { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3806,7 +3806,7 @@ public struct AWSSimpleWorkflowClient StepFunctionsModel.CreateActivityOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2596,7 +2596,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.CreateStateMachineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2632,7 +2632,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.CreateStateMachineAliasOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2668,7 +2668,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DeleteActivityOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2704,7 +2704,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DeleteStateMachineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2740,7 +2740,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DeleteStateMachineAliasOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2776,7 +2776,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DeleteStateMachineVersionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2812,7 +2812,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DescribeActivityOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2848,7 +2848,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DescribeExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2884,7 +2884,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DescribeMapRunOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2920,7 +2920,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DescribeStateMachineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2956,7 +2956,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DescribeStateMachineAliasOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -2992,7 +2992,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.DescribeStateMachineForExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3028,7 +3028,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.GetActivityTaskOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3064,7 +3064,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.GetExecutionHistoryOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3100,7 +3100,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListActivitiesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3136,7 +3136,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListExecutionsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3172,7 +3172,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListMapRunsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3208,7 +3208,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListStateMachineAliasesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3244,7 +3244,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListStateMachineVersionsOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3280,7 +3280,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListStateMachinesOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3316,7 +3316,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.ListTagsForResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3352,7 +3352,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.PublishStateMachineVersionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3388,7 +3388,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.SendTaskFailureOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3424,7 +3424,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.SendTaskHeartbeatOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3460,7 +3460,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.SendTaskSuccessOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3496,7 +3496,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.StartExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3532,7 +3532,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.StartSyncExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3568,7 +3568,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.StopExecutionOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3604,7 +3604,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.TagResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3640,7 +3640,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.UntagResourceOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3676,7 +3676,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.UpdateMapRunOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3712,7 +3712,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.UpdateStateMachineOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, @@ -3748,7 +3748,7 @@ public struct AWSStepFunctionsClient StepFunctionsModel.UpdateStateMachineAliasOutput { - let handlerDelegate = AWSClientInvocationDelegate( + let handlerDelegate = try await AWSClientInvocationDelegate.get( credentialsProvider: credentialsProvider, awsRegion: awsRegion, service: service, diff --git a/docs/Support_Policy.md b/docs/Support_Policy.md index b6501a1..656c54f 100644 --- a/docs/Support_Policy.md +++ b/docs/Support_Policy.md @@ -1,5 +1,5 @@ --- -date: 2023-04-17 10:00 +date: 2023-12-17 10:00 description: Support Policy for SmokeAWS. tags: support policy --- @@ -24,10 +24,10 @@ SmokeAWS has two mechanism for removing support for Swift Toolchain versions- Once support has been removed, testing via continuous integration may be removed and no guarantees will be given for compiling the package using this version of the toolchain. Following these rules, the support level for different Swift Toolchain versions are- -1. **Swift 5.5 and earlier**: No support. -2. **Swift 5.6**: Supported for SmokeAWS 2.x. Support to be removed after 30th of September, 2023. See https://github.com/amzn/smoke-aws/issues/130 for open compiler crash issue. -3. **Swift 5.7**: Supported for SmokeAWS 2.x. -4. **Swift 5.8**: Supported for SmokeAWS 2.x. +1. **Swift 5.6 and earlier**: No support. +2. **Swift 5.7**: Supported for SmokeAWS 2.x. Support to be removed after 18th of March, 2024. +3. **Swift 5.8**: Supported for SmokeAWS 2.x. +4. **Swift 5.9**: Supported for SmokeAWS 2.x. # Runtime Support