aws-sdk-appsync 1.121.0 → 1.123.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f9c38798f908b8f69c0aeab63c66c36c07ebc3758b3590c858017b1d7fa628b
4
- data.tar.gz: ceb4844cb43f9612744520ea449d0236b9291d9b0a6901733a86ee5b413ee6ca
3
+ metadata.gz: 69ad5e69f6b4808b1a8500cdf8068029ad365c73698aef45cd3acc3b0ce88059
4
+ data.tar.gz: 2feaca40952e9451039e4958b3f9481bcf2e9302e6dc90f1ef851dafc6cc8496
5
5
  SHA512:
6
- metadata.gz: ff099e5f3903e51463a43ea83dfc2649a2ab0a3d7cf96a89d49af905ba4d17235bbe7eb46980b999cf893751f0289b3cc0c1b2fc31a19259994e53bfb53c9314
7
- data.tar.gz: 497993a58453967ca4c9dcfee2974ab4065fd003ccb3321d322a4d3e3396e3e568f4275e5d170b32bea18a3de60b8810880a71f3d7b6ea1df3cbca6b5fb8537c
6
+ metadata.gz: b88c1f2eaf307f3df8115e3a8aa27531d99009360a7498f2197559bfb51c753557cede71ef1c108667c858c9d70dc76dd51a8477e528120dd9723515c80cc359
7
+ data.tar.gz: 1a697e6759c23ccbbd6a5b0f8a2bdcda7c9094f371eb462748d2e2801d896f11c463dbffe8dfa61131cbc498658e475cfc418065b7f21d501dd2074ba3029d1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.123.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.122.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.121.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.121.0
1
+ 1.123.0
@@ -199,7 +199,7 @@ module Aws::AppSync
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::AppSync
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -5115,7 +5113,7 @@ module Aws::AppSync
5115
5113
  tracer: tracer
5116
5114
  )
5117
5115
  context[:gem_name] = 'aws-sdk-appsync'
5118
- context[:gem_version] = '1.121.0'
5116
+ context[:gem_version] = '1.123.0'
5119
5117
  Seahorse::Client::Request.new(handlers, context)
5120
5118
  end
5121
5119
 
@@ -54,7 +54,7 @@ module Aws::AppSync
54
54
  autoload :EndpointProvider, 'aws-sdk-appsync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appsync/endpoints'
56
56
 
57
- GEM_VERSION = '1.121.0'
57
+ GEM_VERSION = '1.123.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -128,48 +128,7 @@ module Aws
128
128
  name: ::String,
129
129
  ?owner_contact: ::String,
130
130
  ?tags: Hash[::String, ::String],
131
- event_config: {
132
- auth_providers: Array[
133
- {
134
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
135
- cognito_config: {
136
- user_pool_id: ::String,
137
- aws_region: ::String,
138
- app_id_client_regex: ::String?
139
- }?,
140
- open_id_connect_config: {
141
- issuer: ::String,
142
- client_id: ::String?,
143
- iat_ttl: ::Integer?,
144
- auth_ttl: ::Integer?
145
- }?,
146
- lambda_authorizer_config: {
147
- authorizer_result_ttl_in_seconds: ::Integer?,
148
- authorizer_uri: ::String,
149
- identity_validation_expression: ::String?
150
- }?
151
- },
152
- ],
153
- connection_auth_modes: Array[
154
- {
155
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
156
- },
157
- ],
158
- default_publish_auth_modes: Array[
159
- {
160
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
161
- },
162
- ],
163
- default_subscribe_auth_modes: Array[
164
- {
165
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
166
- },
167
- ],
168
- log_config: {
169
- log_level: ("NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG"),
170
- cloud_watch_logs_role_arn: ::String
171
- }?
172
- }
131
+ event_config: Params::event_config
173
132
  ) -> _CreateApiResponseSuccess
174
133
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiResponseSuccess
175
134
 
@@ -212,35 +171,16 @@ module Aws
212
171
  ?subscribe_auth_modes: Array[
213
172
  {
214
173
  auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
215
- },
174
+ }
216
175
  ],
217
176
  ?publish_auth_modes: Array[
218
177
  {
219
178
  auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
220
- },
179
+ }
221
180
  ],
222
181
  ?code_handlers: ::String,
223
182
  ?tags: Hash[::String, ::String],
224
- ?handler_configs: {
225
- on_publish: {
226
- behavior: ("CODE" | "DIRECT"),
227
- integration: {
228
- data_source_name: ::String,
229
- lambda_config: {
230
- invoke_type: ("REQUEST_RESPONSE" | "EVENT")?
231
- }?
232
- }
233
- }?,
234
- on_subscribe: {
235
- behavior: ("CODE" | "DIRECT"),
236
- integration: {
237
- data_source_name: ::String,
238
- lambda_config: {
239
- invoke_type: ("REQUEST_RESPONSE" | "EVENT")?
240
- }?
241
- }
242
- }?
243
- }
183
+ ?handler_configs: Params::handler_configs
244
184
  ) -> _CreateChannelNamespaceResponseSuccess
245
185
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChannelNamespaceResponseSuccess
246
186
 
@@ -255,17 +195,7 @@ module Aws
255
195
  ?description: ::String,
256
196
  type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE" | "AMAZON_BEDROCK_RUNTIME"),
257
197
  ?service_role_arn: ::String,
258
- ?dynamodb_config: {
259
- table_name: ::String,
260
- aws_region: ::String,
261
- use_caller_credentials: bool?,
262
- delta_sync_config: {
263
- base_table_ttl: ::Integer?,
264
- delta_sync_table_name: ::String?,
265
- delta_sync_table_ttl: ::Integer?
266
- }?,
267
- versioned: bool?
268
- },
198
+ ?dynamodb_config: Params::dynamodb_data_source_config,
269
199
  ?lambda_config: {
270
200
  lambda_function_arn: ::String
271
201
  },
@@ -277,26 +207,8 @@ module Aws
277
207
  endpoint: ::String,
278
208
  aws_region: ::String
279
209
  },
280
- ?http_config: {
281
- endpoint: ::String?,
282
- authorization_config: {
283
- authorization_type: ("AWS_IAM"),
284
- aws_iam_config: {
285
- signing_region: ::String?,
286
- signing_service_name: ::String?
287
- }?
288
- }?
289
- },
290
- ?relational_database_config: {
291
- relational_database_source_type: ("RDS_HTTP_ENDPOINT")?,
292
- rds_http_endpoint_config: {
293
- aws_region: ::String?,
294
- db_cluster_identifier: ::String?,
295
- database_name: ::String?,
296
- schema: ::String?,
297
- aws_secret_store_arn: ::String?
298
- }?
299
- },
210
+ ?http_config: Params::http_data_source_config,
211
+ ?relational_database_config: Params::relational_database_data_source_config,
300
212
  ?event_bridge_config: {
301
213
  event_bus_arn: ::String
302
214
  },
@@ -373,25 +285,7 @@ module Aws
373
285
  },
374
286
  ?tags: Hash[::String, ::String],
375
287
  ?additional_authentication_providers: Array[
376
- {
377
- authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")?,
378
- open_id_connect_config: {
379
- issuer: ::String,
380
- client_id: ::String?,
381
- iat_ttl: ::Integer?,
382
- auth_ttl: ::Integer?
383
- }?,
384
- user_pool_config: {
385
- user_pool_id: ::String,
386
- aws_region: ::String,
387
- app_id_client_regex: ::String?
388
- }?,
389
- lambda_authorizer_config: {
390
- authorizer_result_ttl_in_seconds: ::Integer?,
391
- authorizer_uri: ::String,
392
- identity_validation_expression: ::String?
393
- }?
394
- },
288
+ Params::additional_authentication_provider
395
289
  ],
396
290
  ?xray_enabled: bool,
397
291
  ?lambda_authorizer_config: {
@@ -1048,48 +942,7 @@ module Aws
1048
942
  api_id: ::String,
1049
943
  name: ::String,
1050
944
  ?owner_contact: ::String,
1051
- event_config: {
1052
- auth_providers: Array[
1053
- {
1054
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
1055
- cognito_config: {
1056
- user_pool_id: ::String,
1057
- aws_region: ::String,
1058
- app_id_client_regex: ::String?
1059
- }?,
1060
- open_id_connect_config: {
1061
- issuer: ::String,
1062
- client_id: ::String?,
1063
- iat_ttl: ::Integer?,
1064
- auth_ttl: ::Integer?
1065
- }?,
1066
- lambda_authorizer_config: {
1067
- authorizer_result_ttl_in_seconds: ::Integer?,
1068
- authorizer_uri: ::String,
1069
- identity_validation_expression: ::String?
1070
- }?
1071
- },
1072
- ],
1073
- connection_auth_modes: Array[
1074
- {
1075
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
1076
- },
1077
- ],
1078
- default_publish_auth_modes: Array[
1079
- {
1080
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
1081
- },
1082
- ],
1083
- default_subscribe_auth_modes: Array[
1084
- {
1085
- auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
1086
- },
1087
- ],
1088
- log_config: {
1089
- log_level: ("NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG"),
1090
- cloud_watch_logs_role_arn: ::String
1091
- }?
1092
- }
945
+ event_config: Params::event_config
1093
946
  ) -> _UpdateApiResponseSuccess
1094
947
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiResponseSuccess
1095
948
 
@@ -1131,34 +984,15 @@ module Aws
1131
984
  ?subscribe_auth_modes: Array[
1132
985
  {
1133
986
  auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
1134
- },
987
+ }
1135
988
  ],
1136
989
  ?publish_auth_modes: Array[
1137
990
  {
1138
991
  auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
1139
- },
992
+ }
1140
993
  ],
1141
994
  ?code_handlers: ::String,
1142
- ?handler_configs: {
1143
- on_publish: {
1144
- behavior: ("CODE" | "DIRECT"),
1145
- integration: {
1146
- data_source_name: ::String,
1147
- lambda_config: {
1148
- invoke_type: ("REQUEST_RESPONSE" | "EVENT")?
1149
- }?
1150
- }
1151
- }?,
1152
- on_subscribe: {
1153
- behavior: ("CODE" | "DIRECT"),
1154
- integration: {
1155
- data_source_name: ::String,
1156
- lambda_config: {
1157
- invoke_type: ("REQUEST_RESPONSE" | "EVENT")?
1158
- }?
1159
- }
1160
- }?
1161
- }
995
+ ?handler_configs: Params::handler_configs
1162
996
  ) -> _UpdateChannelNamespaceResponseSuccess
1163
997
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateChannelNamespaceResponseSuccess
1164
998
 
@@ -1173,17 +1007,7 @@ module Aws
1173
1007
  ?description: ::String,
1174
1008
  type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE" | "AMAZON_BEDROCK_RUNTIME"),
1175
1009
  ?service_role_arn: ::String,
1176
- ?dynamodb_config: {
1177
- table_name: ::String,
1178
- aws_region: ::String,
1179
- use_caller_credentials: bool?,
1180
- delta_sync_config: {
1181
- base_table_ttl: ::Integer?,
1182
- delta_sync_table_name: ::String?,
1183
- delta_sync_table_ttl: ::Integer?
1184
- }?,
1185
- versioned: bool?
1186
- },
1010
+ ?dynamodb_config: Params::dynamodb_data_source_config,
1187
1011
  ?lambda_config: {
1188
1012
  lambda_function_arn: ::String
1189
1013
  },
@@ -1195,26 +1019,8 @@ module Aws
1195
1019
  endpoint: ::String,
1196
1020
  aws_region: ::String
1197
1021
  },
1198
- ?http_config: {
1199
- endpoint: ::String?,
1200
- authorization_config: {
1201
- authorization_type: ("AWS_IAM"),
1202
- aws_iam_config: {
1203
- signing_region: ::String?,
1204
- signing_service_name: ::String?
1205
- }?
1206
- }?
1207
- },
1208
- ?relational_database_config: {
1209
- relational_database_source_type: ("RDS_HTTP_ENDPOINT")?,
1210
- rds_http_endpoint_config: {
1211
- aws_region: ::String?,
1212
- db_cluster_identifier: ::String?,
1213
- database_name: ::String?,
1214
- schema: ::String?,
1215
- aws_secret_store_arn: ::String?
1216
- }?
1217
- },
1022
+ ?http_config: Params::http_data_source_config,
1023
+ ?relational_database_config: Params::relational_database_data_source_config,
1218
1024
  ?event_bridge_config: {
1219
1025
  event_bus_arn: ::String
1220
1026
  },
@@ -1290,25 +1096,7 @@ module Aws
1290
1096
  auth_ttl: ::Integer?
1291
1097
  },
1292
1098
  ?additional_authentication_providers: Array[
1293
- {
1294
- authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")?,
1295
- open_id_connect_config: {
1296
- issuer: ::String,
1297
- client_id: ::String?,
1298
- iat_ttl: ::Integer?,
1299
- auth_ttl: ::Integer?
1300
- }?,
1301
- user_pool_config: {
1302
- user_pool_id: ::String,
1303
- aws_region: ::String,
1304
- app_id_client_regex: ::String?
1305
- }?,
1306
- lambda_authorizer_config: {
1307
- authorizer_result_ttl_in_seconds: ::Integer?,
1308
- authorizer_uri: ::String,
1309
- identity_validation_expression: ::String?
1310
- }?
1311
- },
1099
+ Params::additional_authentication_provider
1312
1100
  ],
1313
1101
  ?xray_enabled: bool,
1314
1102
  ?lambda_authorizer_config: {
data/sig/params.rbs ADDED
@@ -0,0 +1,127 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module AppSync
10
+ module Params
11
+ type event_config = {
12
+ auth_providers: Array[
13
+ Params::auth_provider
14
+ ],
15
+ connection_auth_modes: Array[
16
+ {
17
+ auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
18
+ }
19
+ ],
20
+ default_publish_auth_modes: Array[
21
+ {
22
+ auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
23
+ }
24
+ ],
25
+ default_subscribe_auth_modes: Array[
26
+ {
27
+ auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
28
+ }
29
+ ],
30
+ log_config: {
31
+ log_level: ("NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG"),
32
+ cloud_watch_logs_role_arn: ::String
33
+ }?
34
+ }
35
+
36
+ type auth_provider = {
37
+ auth_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
38
+ cognito_config: {
39
+ user_pool_id: ::String,
40
+ aws_region: ::String,
41
+ app_id_client_regex: ::String?
42
+ }?,
43
+ open_id_connect_config: {
44
+ issuer: ::String,
45
+ client_id: ::String?,
46
+ iat_ttl: ::Integer?,
47
+ auth_ttl: ::Integer?
48
+ }?,
49
+ lambda_authorizer_config: {
50
+ authorizer_result_ttl_in_seconds: ::Integer?,
51
+ authorizer_uri: ::String,
52
+ identity_validation_expression: ::String?
53
+ }?
54
+ }
55
+
56
+ type handler_config = {
57
+ behavior: ("CODE" | "DIRECT"),
58
+ integration: {
59
+ data_source_name: ::String,
60
+ lambda_config: {
61
+ invoke_type: ("REQUEST_RESPONSE" | "EVENT")?
62
+ }?
63
+ }
64
+ }
65
+
66
+ type handler_configs = {
67
+ on_publish: Params::handler_config?,
68
+ on_subscribe: Params::handler_config?
69
+ }
70
+
71
+ type dynamodb_data_source_config = {
72
+ table_name: ::String,
73
+ aws_region: ::String,
74
+ use_caller_credentials: bool?,
75
+ delta_sync_config: {
76
+ base_table_ttl: ::Integer?,
77
+ delta_sync_table_name: ::String?,
78
+ delta_sync_table_ttl: ::Integer?
79
+ }?,
80
+ versioned: bool?
81
+ }
82
+
83
+ type http_data_source_config = {
84
+ endpoint: ::String?,
85
+ authorization_config: {
86
+ authorization_type: ("AWS_IAM"),
87
+ aws_iam_config: {
88
+ signing_region: ::String?,
89
+ signing_service_name: ::String?
90
+ }?
91
+ }?
92
+ }
93
+
94
+ type relational_database_data_source_config = {
95
+ relational_database_source_type: ("RDS_HTTP_ENDPOINT")?,
96
+ rds_http_endpoint_config: {
97
+ aws_region: ::String?,
98
+ db_cluster_identifier: ::String?,
99
+ database_name: ::String?,
100
+ schema: ::String?,
101
+ aws_secret_store_arn: ::String?
102
+ }?
103
+ }
104
+
105
+ type additional_authentication_provider = {
106
+ authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")?,
107
+ open_id_connect_config: {
108
+ issuer: ::String,
109
+ client_id: ::String?,
110
+ iat_ttl: ::Integer?,
111
+ auth_ttl: ::Integer?
112
+ }?,
113
+ user_pool_config: {
114
+ user_pool_id: ::String,
115
+ aws_region: ::String,
116
+ app_id_client_regex: ::String?
117
+ }?,
118
+ lambda_authorizer_config: {
119
+ authorizer_result_ttl_in_seconds: ::Integer?,
120
+ authorizer_uri: ::String,
121
+ identity_validation_expression: ::String?
122
+ }?
123
+ }
124
+
125
+ end
126
+ end
127
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.121.0
4
+ version: 1.123.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-appsync/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs