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 @@
-
+
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