aws-sdk-appsync 1.121.0 → 1.122.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +1 -1
- data/lib/aws-sdk-appsync.rb +1 -1
- data/sig/client.rbs +16 -228
- data/sig/params.rbs +127 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b7b82921904d0bfb90757e945c29fd370479efe24a1824b6f7113a14dec92c4
|
|
4
|
+
data.tar.gz: 7bd10fcc19b8f7408d3c9599cbaa311d5e06f10d225f1a2b32c415ea5879bf1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d35f26afd9dd82caa752c15e7de64c5b2da6fb8f06e4c9a314c98736ac20e137fbe8f8cadfb647074143873a7269e42205f96e33047063546085118f4afddc3c
|
|
7
|
+
data.tar.gz: 0501e290cb3e5b2e08415621c7e392a1b5eb0510a123189d3a1de05e935db82554522dabfd5d152227d53a9a80f1d909d751409e91766677f024a266b1e9fc3b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.122.0
|
data/lib/aws-sdk-appsync.rb
CHANGED
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
|
-
|
|
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
|
-
|
|
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.
|
|
4
|
+
version: 1.122.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -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
|