aws-sdk-appsync 1.70.0 → 1.72.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +130 -1
- data/lib/aws-sdk-appsync/client_api.rb +50 -0
- data/lib/aws-sdk-appsync/endpoints.rb +28 -0
- data/lib/aws-sdk-appsync/plugins/endpoints.rb +5 -0
- data/lib/aws-sdk-appsync/types.rb +80 -0
- data/lib/aws-sdk-appsync.rb +1 -1
- data/sig/client.rbs +1114 -0
- data/sig/errors.rbs +51 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1252 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1252 @@
|
|
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::AppSync
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AdditionalAuthenticationProvider
|
17
|
+
attr_accessor authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
|
18
|
+
attr_accessor open_id_connect_config: Types::OpenIDConnectConfig
|
19
|
+
attr_accessor user_pool_config: Types::CognitoUserPoolConfig
|
20
|
+
attr_accessor lambda_authorizer_config: Types::LambdaAuthorizerConfig
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class ApiAssociation
|
25
|
+
attr_accessor domain_name: ::String
|
26
|
+
attr_accessor api_id: ::String
|
27
|
+
attr_accessor association_status: ("PROCESSING" | "FAILED" | "SUCCESS")
|
28
|
+
attr_accessor deployment_detail: ::String
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class ApiCache
|
33
|
+
attr_accessor ttl: ::Integer
|
34
|
+
attr_accessor api_caching_behavior: ("FULL_REQUEST_CACHING" | "PER_RESOLVER_CACHING")
|
35
|
+
attr_accessor transit_encryption_enabled: bool
|
36
|
+
attr_accessor at_rest_encryption_enabled: bool
|
37
|
+
attr_accessor type: ("T2_SMALL" | "T2_MEDIUM" | "R4_LARGE" | "R4_XLARGE" | "R4_2XLARGE" | "R4_4XLARGE" | "R4_8XLARGE" | "SMALL" | "MEDIUM" | "LARGE" | "XLARGE" | "LARGE_2X" | "LARGE_4X" | "LARGE_8X" | "LARGE_12X")
|
38
|
+
attr_accessor status: ("AVAILABLE" | "CREATING" | "DELETING" | "MODIFYING" | "FAILED")
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class ApiKey
|
43
|
+
attr_accessor id: ::String
|
44
|
+
attr_accessor description: ::String
|
45
|
+
attr_accessor expires: ::Integer
|
46
|
+
attr_accessor deletes: ::Integer
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class ApiKeyLimitExceededException
|
51
|
+
attr_accessor message: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class ApiKeyValidityOutOfBoundsException
|
56
|
+
attr_accessor message: ::String
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class ApiLimitExceededException
|
61
|
+
attr_accessor message: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class AppSyncRuntime
|
66
|
+
attr_accessor name: ("APPSYNC_JS")
|
67
|
+
attr_accessor runtime_version: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class AssociateApiRequest
|
72
|
+
attr_accessor domain_name: ::String
|
73
|
+
attr_accessor api_id: ::String
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class AssociateApiResponse
|
78
|
+
attr_accessor api_association: Types::ApiAssociation
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class AssociateMergedGraphqlApiRequest
|
83
|
+
attr_accessor source_api_identifier: ::String
|
84
|
+
attr_accessor merged_api_identifier: ::String
|
85
|
+
attr_accessor description: ::String
|
86
|
+
attr_accessor source_api_association_config: Types::SourceApiAssociationConfig
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class AssociateMergedGraphqlApiResponse
|
91
|
+
attr_accessor source_api_association: Types::SourceApiAssociation
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class AssociateSourceGraphqlApiRequest
|
96
|
+
attr_accessor merged_api_identifier: ::String
|
97
|
+
attr_accessor source_api_identifier: ::String
|
98
|
+
attr_accessor description: ::String
|
99
|
+
attr_accessor source_api_association_config: Types::SourceApiAssociationConfig
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class AssociateSourceGraphqlApiResponse
|
104
|
+
attr_accessor source_api_association: Types::SourceApiAssociation
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class AuthorizationConfig
|
109
|
+
attr_accessor authorization_type: ("AWS_IAM")
|
110
|
+
attr_accessor aws_iam_config: Types::AwsIamConfig
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class AwsIamConfig
|
115
|
+
attr_accessor signing_region: ::String
|
116
|
+
attr_accessor signing_service_name: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class BadRequestDetail
|
121
|
+
attr_accessor code_errors: ::Array[Types::CodeError]
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class BadRequestException
|
126
|
+
attr_accessor message: ::String
|
127
|
+
attr_accessor reason: ("CODE_ERROR")
|
128
|
+
attr_accessor detail: Types::BadRequestDetail
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class CachingConfig
|
133
|
+
attr_accessor ttl: ::Integer
|
134
|
+
attr_accessor caching_keys: ::Array[::String]
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class CodeError
|
139
|
+
attr_accessor error_type: ::String
|
140
|
+
attr_accessor value: ::String
|
141
|
+
attr_accessor location: Types::CodeErrorLocation
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class CodeErrorLocation
|
146
|
+
attr_accessor line: ::Integer
|
147
|
+
attr_accessor column: ::Integer
|
148
|
+
attr_accessor span: ::Integer
|
149
|
+
SENSITIVE: []
|
150
|
+
end
|
151
|
+
|
152
|
+
class CognitoUserPoolConfig
|
153
|
+
attr_accessor user_pool_id: ::String
|
154
|
+
attr_accessor aws_region: ::String
|
155
|
+
attr_accessor app_id_client_regex: ::String
|
156
|
+
SENSITIVE: []
|
157
|
+
end
|
158
|
+
|
159
|
+
class ConcurrentModificationException
|
160
|
+
attr_accessor message: ::String
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CreateApiCacheRequest
|
165
|
+
attr_accessor api_id: ::String
|
166
|
+
attr_accessor ttl: ::Integer
|
167
|
+
attr_accessor transit_encryption_enabled: bool
|
168
|
+
attr_accessor at_rest_encryption_enabled: bool
|
169
|
+
attr_accessor api_caching_behavior: ("FULL_REQUEST_CACHING" | "PER_RESOLVER_CACHING")
|
170
|
+
attr_accessor type: ("T2_SMALL" | "T2_MEDIUM" | "R4_LARGE" | "R4_XLARGE" | "R4_2XLARGE" | "R4_4XLARGE" | "R4_8XLARGE" | "SMALL" | "MEDIUM" | "LARGE" | "XLARGE" | "LARGE_2X" | "LARGE_4X" | "LARGE_8X" | "LARGE_12X")
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class CreateApiCacheResponse
|
175
|
+
attr_accessor api_cache: Types::ApiCache
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreateApiKeyRequest
|
180
|
+
attr_accessor api_id: ::String
|
181
|
+
attr_accessor description: ::String
|
182
|
+
attr_accessor expires: ::Integer
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class CreateApiKeyResponse
|
187
|
+
attr_accessor api_key: Types::ApiKey
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class CreateDataSourceRequest
|
192
|
+
attr_accessor api_id: ::String
|
193
|
+
attr_accessor name: ::String
|
194
|
+
attr_accessor description: ::String
|
195
|
+
attr_accessor type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE")
|
196
|
+
attr_accessor service_role_arn: ::String
|
197
|
+
attr_accessor dynamodb_config: Types::DynamodbDataSourceConfig
|
198
|
+
attr_accessor lambda_config: Types::LambdaDataSourceConfig
|
199
|
+
attr_accessor elasticsearch_config: Types::ElasticsearchDataSourceConfig
|
200
|
+
attr_accessor open_search_service_config: Types::OpenSearchServiceDataSourceConfig
|
201
|
+
attr_accessor http_config: Types::HttpDataSourceConfig
|
202
|
+
attr_accessor relational_database_config: Types::RelationalDatabaseDataSourceConfig
|
203
|
+
attr_accessor event_bridge_config: Types::EventBridgeDataSourceConfig
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class CreateDataSourceResponse
|
208
|
+
attr_accessor data_source: Types::DataSource
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class CreateDomainNameRequest
|
213
|
+
attr_accessor domain_name: ::String
|
214
|
+
attr_accessor certificate_arn: ::String
|
215
|
+
attr_accessor description: ::String
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class CreateDomainNameResponse
|
220
|
+
attr_accessor domain_name_config: Types::DomainNameConfig
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateFunctionRequest
|
225
|
+
attr_accessor api_id: ::String
|
226
|
+
attr_accessor name: ::String
|
227
|
+
attr_accessor description: ::String
|
228
|
+
attr_accessor data_source_name: ::String
|
229
|
+
attr_accessor request_mapping_template: ::String
|
230
|
+
attr_accessor response_mapping_template: ::String
|
231
|
+
attr_accessor function_version: ::String
|
232
|
+
attr_accessor sync_config: Types::SyncConfig
|
233
|
+
attr_accessor max_batch_size: ::Integer
|
234
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
235
|
+
attr_accessor code: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class CreateFunctionResponse
|
240
|
+
attr_accessor function_configuration: Types::FunctionConfiguration
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class CreateGraphqlApiRequest
|
245
|
+
attr_accessor name: ::String
|
246
|
+
attr_accessor log_config: Types::LogConfig
|
247
|
+
attr_accessor authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
|
248
|
+
attr_accessor user_pool_config: Types::UserPoolConfig
|
249
|
+
attr_accessor open_id_connect_config: Types::OpenIDConnectConfig
|
250
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
251
|
+
attr_accessor additional_authentication_providers: ::Array[Types::AdditionalAuthenticationProvider]
|
252
|
+
attr_accessor xray_enabled: bool
|
253
|
+
attr_accessor lambda_authorizer_config: Types::LambdaAuthorizerConfig
|
254
|
+
attr_accessor visibility: ("GLOBAL" | "PRIVATE")
|
255
|
+
attr_accessor api_type: ("GRAPHQL" | "MERGED")
|
256
|
+
attr_accessor merged_api_execution_role_arn: ::String
|
257
|
+
attr_accessor owner_contact: ::String
|
258
|
+
attr_accessor introspection_config: ("ENABLED" | "DISABLED")
|
259
|
+
attr_accessor query_depth_limit: ::Integer
|
260
|
+
attr_accessor resolver_count_limit: ::Integer
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class CreateGraphqlApiResponse
|
265
|
+
attr_accessor graphql_api: Types::GraphqlApi
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class CreateResolverRequest
|
270
|
+
attr_accessor api_id: ::String
|
271
|
+
attr_accessor type_name: ::String
|
272
|
+
attr_accessor field_name: ::String
|
273
|
+
attr_accessor data_source_name: ::String
|
274
|
+
attr_accessor request_mapping_template: ::String
|
275
|
+
attr_accessor response_mapping_template: ::String
|
276
|
+
attr_accessor kind: ("UNIT" | "PIPELINE")
|
277
|
+
attr_accessor pipeline_config: Types::PipelineConfig
|
278
|
+
attr_accessor sync_config: Types::SyncConfig
|
279
|
+
attr_accessor caching_config: Types::CachingConfig
|
280
|
+
attr_accessor max_batch_size: ::Integer
|
281
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
282
|
+
attr_accessor code: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
286
|
+
class CreateResolverResponse
|
287
|
+
attr_accessor resolver: Types::Resolver
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class CreateTypeRequest
|
292
|
+
attr_accessor api_id: ::String
|
293
|
+
attr_accessor definition: ::String
|
294
|
+
attr_accessor format: ("SDL" | "JSON")
|
295
|
+
SENSITIVE: []
|
296
|
+
end
|
297
|
+
|
298
|
+
class CreateTypeResponse
|
299
|
+
attr_accessor type: Types::Type
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class DataSource
|
304
|
+
attr_accessor data_source_arn: ::String
|
305
|
+
attr_accessor name: ::String
|
306
|
+
attr_accessor description: ::String
|
307
|
+
attr_accessor type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE")
|
308
|
+
attr_accessor service_role_arn: ::String
|
309
|
+
attr_accessor dynamodb_config: Types::DynamodbDataSourceConfig
|
310
|
+
attr_accessor lambda_config: Types::LambdaDataSourceConfig
|
311
|
+
attr_accessor elasticsearch_config: Types::ElasticsearchDataSourceConfig
|
312
|
+
attr_accessor open_search_service_config: Types::OpenSearchServiceDataSourceConfig
|
313
|
+
attr_accessor http_config: Types::HttpDataSourceConfig
|
314
|
+
attr_accessor relational_database_config: Types::RelationalDatabaseDataSourceConfig
|
315
|
+
attr_accessor event_bridge_config: Types::EventBridgeDataSourceConfig
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class DataSourceIntrospectionModel
|
320
|
+
attr_accessor name: ::String
|
321
|
+
attr_accessor fields: ::Array[Types::DataSourceIntrospectionModelField]
|
322
|
+
attr_accessor primary_key: Types::DataSourceIntrospectionModelIndex
|
323
|
+
attr_accessor indexes: ::Array[Types::DataSourceIntrospectionModelIndex]
|
324
|
+
attr_accessor sdl: ::String
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class DataSourceIntrospectionModelField
|
329
|
+
attr_accessor name: ::String
|
330
|
+
attr_accessor type: Types::DataSourceIntrospectionModelFieldType
|
331
|
+
attr_accessor length: ::Integer
|
332
|
+
SENSITIVE: []
|
333
|
+
end
|
334
|
+
|
335
|
+
class DataSourceIntrospectionModelFieldType
|
336
|
+
attr_accessor kind: ::String
|
337
|
+
attr_accessor name: ::String
|
338
|
+
attr_accessor type: Types::DataSourceIntrospectionModelFieldType
|
339
|
+
attr_accessor values: ::Array[::String]
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class DataSourceIntrospectionModelIndex
|
344
|
+
attr_accessor name: ::String
|
345
|
+
attr_accessor fields: ::Array[::String]
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class DataSourceIntrospectionResult
|
350
|
+
attr_accessor models: ::Array[Types::DataSourceIntrospectionModel]
|
351
|
+
attr_accessor next_token: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class DeleteApiCacheRequest
|
356
|
+
attr_accessor api_id: ::String
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class DeleteApiCacheResponse < Aws::EmptyStructure
|
361
|
+
end
|
362
|
+
|
363
|
+
class DeleteApiKeyRequest
|
364
|
+
attr_accessor api_id: ::String
|
365
|
+
attr_accessor id: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class DeleteApiKeyResponse < Aws::EmptyStructure
|
370
|
+
end
|
371
|
+
|
372
|
+
class DeleteDataSourceRequest
|
373
|
+
attr_accessor api_id: ::String
|
374
|
+
attr_accessor name: ::String
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class DeleteDataSourceResponse < Aws::EmptyStructure
|
379
|
+
end
|
380
|
+
|
381
|
+
class DeleteDomainNameRequest
|
382
|
+
attr_accessor domain_name: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class DeleteDomainNameResponse < Aws::EmptyStructure
|
387
|
+
end
|
388
|
+
|
389
|
+
class DeleteFunctionRequest
|
390
|
+
attr_accessor api_id: ::String
|
391
|
+
attr_accessor function_id: ::String
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class DeleteFunctionResponse < Aws::EmptyStructure
|
396
|
+
end
|
397
|
+
|
398
|
+
class DeleteGraphqlApiRequest
|
399
|
+
attr_accessor api_id: ::String
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class DeleteGraphqlApiResponse < Aws::EmptyStructure
|
404
|
+
end
|
405
|
+
|
406
|
+
class DeleteResolverRequest
|
407
|
+
attr_accessor api_id: ::String
|
408
|
+
attr_accessor type_name: ::String
|
409
|
+
attr_accessor field_name: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class DeleteResolverResponse < Aws::EmptyStructure
|
414
|
+
end
|
415
|
+
|
416
|
+
class DeleteTypeRequest
|
417
|
+
attr_accessor api_id: ::String
|
418
|
+
attr_accessor type_name: ::String
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class DeleteTypeResponse < Aws::EmptyStructure
|
423
|
+
end
|
424
|
+
|
425
|
+
class DeltaSyncConfig
|
426
|
+
attr_accessor base_table_ttl: ::Integer
|
427
|
+
attr_accessor delta_sync_table_name: ::String
|
428
|
+
attr_accessor delta_sync_table_ttl: ::Integer
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class DisassociateApiRequest
|
433
|
+
attr_accessor domain_name: ::String
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class DisassociateApiResponse < Aws::EmptyStructure
|
438
|
+
end
|
439
|
+
|
440
|
+
class DisassociateMergedGraphqlApiRequest
|
441
|
+
attr_accessor source_api_identifier: ::String
|
442
|
+
attr_accessor association_id: ::String
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DisassociateMergedGraphqlApiResponse
|
447
|
+
attr_accessor source_api_association_status: ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DisassociateSourceGraphqlApiRequest
|
452
|
+
attr_accessor merged_api_identifier: ::String
|
453
|
+
attr_accessor association_id: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class DisassociateSourceGraphqlApiResponse
|
458
|
+
attr_accessor source_api_association_status: ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class DomainNameConfig
|
463
|
+
attr_accessor domain_name: ::String
|
464
|
+
attr_accessor description: ::String
|
465
|
+
attr_accessor certificate_arn: ::String
|
466
|
+
attr_accessor appsync_domain_name: ::String
|
467
|
+
attr_accessor hosted_zone_id: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class DynamodbDataSourceConfig
|
472
|
+
attr_accessor table_name: ::String
|
473
|
+
attr_accessor aws_region: ::String
|
474
|
+
attr_accessor use_caller_credentials: bool
|
475
|
+
attr_accessor delta_sync_config: Types::DeltaSyncConfig
|
476
|
+
attr_accessor versioned: bool
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class ElasticsearchDataSourceConfig
|
481
|
+
attr_accessor endpoint: ::String
|
482
|
+
attr_accessor aws_region: ::String
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class ErrorDetail
|
487
|
+
attr_accessor message: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class EvaluateCodeErrorDetail
|
492
|
+
attr_accessor message: ::String
|
493
|
+
attr_accessor code_errors: ::Array[Types::CodeError]
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class EvaluateCodeRequest
|
498
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
499
|
+
attr_accessor code: ::String
|
500
|
+
attr_accessor context: ::String
|
501
|
+
attr_accessor function: ::String
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class EvaluateCodeResponse
|
506
|
+
attr_accessor evaluation_result: ::String
|
507
|
+
attr_accessor error: Types::EvaluateCodeErrorDetail
|
508
|
+
attr_accessor logs: ::Array[::String]
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class EvaluateMappingTemplateRequest
|
513
|
+
attr_accessor template: ::String
|
514
|
+
attr_accessor context: ::String
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class EvaluateMappingTemplateResponse
|
519
|
+
attr_accessor evaluation_result: ::String
|
520
|
+
attr_accessor error: Types::ErrorDetail
|
521
|
+
attr_accessor logs: ::Array[::String]
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class EventBridgeDataSourceConfig
|
526
|
+
attr_accessor event_bus_arn: ::String
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class FlushApiCacheRequest
|
531
|
+
attr_accessor api_id: ::String
|
532
|
+
SENSITIVE: []
|
533
|
+
end
|
534
|
+
|
535
|
+
class FlushApiCacheResponse < Aws::EmptyStructure
|
536
|
+
end
|
537
|
+
|
538
|
+
class FunctionConfiguration
|
539
|
+
attr_accessor function_id: ::String
|
540
|
+
attr_accessor function_arn: ::String
|
541
|
+
attr_accessor name: ::String
|
542
|
+
attr_accessor description: ::String
|
543
|
+
attr_accessor data_source_name: ::String
|
544
|
+
attr_accessor request_mapping_template: ::String
|
545
|
+
attr_accessor response_mapping_template: ::String
|
546
|
+
attr_accessor function_version: ::String
|
547
|
+
attr_accessor sync_config: Types::SyncConfig
|
548
|
+
attr_accessor max_batch_size: ::Integer
|
549
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
550
|
+
attr_accessor code: ::String
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class GetApiAssociationRequest
|
555
|
+
attr_accessor domain_name: ::String
|
556
|
+
SENSITIVE: []
|
557
|
+
end
|
558
|
+
|
559
|
+
class GetApiAssociationResponse
|
560
|
+
attr_accessor api_association: Types::ApiAssociation
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class GetApiCacheRequest
|
565
|
+
attr_accessor api_id: ::String
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class GetApiCacheResponse
|
570
|
+
attr_accessor api_cache: Types::ApiCache
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class GetDataSourceIntrospectionRequest
|
575
|
+
attr_accessor introspection_id: ::String
|
576
|
+
attr_accessor include_models_sdl: bool
|
577
|
+
attr_accessor next_token: ::String
|
578
|
+
attr_accessor max_results: ::Integer
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class GetDataSourceIntrospectionResponse
|
583
|
+
attr_accessor introspection_id: ::String
|
584
|
+
attr_accessor introspection_status: ("PROCESSING" | "FAILED" | "SUCCESS")
|
585
|
+
attr_accessor introspection_status_detail: ::String
|
586
|
+
attr_accessor introspection_result: Types::DataSourceIntrospectionResult
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class GetDataSourceRequest
|
591
|
+
attr_accessor api_id: ::String
|
592
|
+
attr_accessor name: ::String
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class GetDataSourceResponse
|
597
|
+
attr_accessor data_source: Types::DataSource
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class GetDomainNameRequest
|
602
|
+
attr_accessor domain_name: ::String
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class GetDomainNameResponse
|
607
|
+
attr_accessor domain_name_config: Types::DomainNameConfig
|
608
|
+
SENSITIVE: []
|
609
|
+
end
|
610
|
+
|
611
|
+
class GetFunctionRequest
|
612
|
+
attr_accessor api_id: ::String
|
613
|
+
attr_accessor function_id: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class GetFunctionResponse
|
618
|
+
attr_accessor function_configuration: Types::FunctionConfiguration
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class GetGraphqlApiEnvironmentVariablesRequest
|
623
|
+
attr_accessor api_id: ::String
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class GetGraphqlApiEnvironmentVariablesResponse
|
628
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class GetGraphqlApiRequest
|
633
|
+
attr_accessor api_id: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class GetGraphqlApiResponse
|
638
|
+
attr_accessor graphql_api: Types::GraphqlApi
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class GetIntrospectionSchemaRequest
|
643
|
+
attr_accessor api_id: ::String
|
644
|
+
attr_accessor format: ("SDL" | "JSON")
|
645
|
+
attr_accessor include_directives: bool
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class GetIntrospectionSchemaResponse
|
650
|
+
attr_accessor schema: ::String
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class GetResolverRequest
|
655
|
+
attr_accessor api_id: ::String
|
656
|
+
attr_accessor type_name: ::String
|
657
|
+
attr_accessor field_name: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class GetResolverResponse
|
662
|
+
attr_accessor resolver: Types::Resolver
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class GetSchemaCreationStatusRequest
|
667
|
+
attr_accessor api_id: ::String
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class GetSchemaCreationStatusResponse
|
672
|
+
attr_accessor status: ("PROCESSING" | "ACTIVE" | "DELETING" | "FAILED" | "SUCCESS" | "NOT_APPLICABLE")
|
673
|
+
attr_accessor details: ::String
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class GetSourceApiAssociationRequest
|
678
|
+
attr_accessor merged_api_identifier: ::String
|
679
|
+
attr_accessor association_id: ::String
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class GetSourceApiAssociationResponse
|
684
|
+
attr_accessor source_api_association: Types::SourceApiAssociation
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class GetTypeRequest
|
689
|
+
attr_accessor api_id: ::String
|
690
|
+
attr_accessor type_name: ::String
|
691
|
+
attr_accessor format: ("SDL" | "JSON")
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class GetTypeResponse
|
696
|
+
attr_accessor type: Types::Type
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class GraphQLSchemaException
|
701
|
+
attr_accessor message: ::String
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class GraphqlApi
|
706
|
+
attr_accessor name: ::String
|
707
|
+
attr_accessor api_id: ::String
|
708
|
+
attr_accessor authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
|
709
|
+
attr_accessor log_config: Types::LogConfig
|
710
|
+
attr_accessor user_pool_config: Types::UserPoolConfig
|
711
|
+
attr_accessor open_id_connect_config: Types::OpenIDConnectConfig
|
712
|
+
attr_accessor arn: ::String
|
713
|
+
attr_accessor uris: ::Hash[::String, ::String]
|
714
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
715
|
+
attr_accessor additional_authentication_providers: ::Array[Types::AdditionalAuthenticationProvider]
|
716
|
+
attr_accessor xray_enabled: bool
|
717
|
+
attr_accessor waf_web_acl_arn: ::String
|
718
|
+
attr_accessor lambda_authorizer_config: Types::LambdaAuthorizerConfig
|
719
|
+
attr_accessor dns: ::Hash[::String, ::String]
|
720
|
+
attr_accessor visibility: ("GLOBAL" | "PRIVATE")
|
721
|
+
attr_accessor api_type: ("GRAPHQL" | "MERGED")
|
722
|
+
attr_accessor merged_api_execution_role_arn: ::String
|
723
|
+
attr_accessor owner: ::String
|
724
|
+
attr_accessor owner_contact: ::String
|
725
|
+
attr_accessor introspection_config: ("ENABLED" | "DISABLED")
|
726
|
+
attr_accessor query_depth_limit: ::Integer
|
727
|
+
attr_accessor resolver_count_limit: ::Integer
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class HttpDataSourceConfig
|
732
|
+
attr_accessor endpoint: ::String
|
733
|
+
attr_accessor authorization_config: Types::AuthorizationConfig
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class InternalFailureException
|
738
|
+
attr_accessor message: ::String
|
739
|
+
SENSITIVE: []
|
740
|
+
end
|
741
|
+
|
742
|
+
class LambdaAuthorizerConfig
|
743
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
744
|
+
attr_accessor authorizer_uri: ::String
|
745
|
+
attr_accessor identity_validation_expression: ::String
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class LambdaConflictHandlerConfig
|
750
|
+
attr_accessor lambda_conflict_handler_arn: ::String
|
751
|
+
SENSITIVE: []
|
752
|
+
end
|
753
|
+
|
754
|
+
class LambdaDataSourceConfig
|
755
|
+
attr_accessor lambda_function_arn: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class LimitExceededException
|
760
|
+
attr_accessor message: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class ListApiKeysRequest
|
765
|
+
attr_accessor api_id: ::String
|
766
|
+
attr_accessor next_token: ::String
|
767
|
+
attr_accessor max_results: ::Integer
|
768
|
+
SENSITIVE: []
|
769
|
+
end
|
770
|
+
|
771
|
+
class ListApiKeysResponse
|
772
|
+
attr_accessor api_keys: ::Array[Types::ApiKey]
|
773
|
+
attr_accessor next_token: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class ListDataSourcesRequest
|
778
|
+
attr_accessor api_id: ::String
|
779
|
+
attr_accessor next_token: ::String
|
780
|
+
attr_accessor max_results: ::Integer
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class ListDataSourcesResponse
|
785
|
+
attr_accessor data_sources: ::Array[Types::DataSource]
|
786
|
+
attr_accessor next_token: ::String
|
787
|
+
SENSITIVE: []
|
788
|
+
end
|
789
|
+
|
790
|
+
class ListDomainNamesRequest
|
791
|
+
attr_accessor next_token: ::String
|
792
|
+
attr_accessor max_results: ::Integer
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class ListDomainNamesResponse
|
797
|
+
attr_accessor domain_name_configs: ::Array[Types::DomainNameConfig]
|
798
|
+
attr_accessor next_token: ::String
|
799
|
+
SENSITIVE: []
|
800
|
+
end
|
801
|
+
|
802
|
+
class ListFunctionsRequest
|
803
|
+
attr_accessor api_id: ::String
|
804
|
+
attr_accessor next_token: ::String
|
805
|
+
attr_accessor max_results: ::Integer
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class ListFunctionsResponse
|
810
|
+
attr_accessor functions: ::Array[Types::FunctionConfiguration]
|
811
|
+
attr_accessor next_token: ::String
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class ListGraphqlApisRequest
|
816
|
+
attr_accessor next_token: ::String
|
817
|
+
attr_accessor max_results: ::Integer
|
818
|
+
attr_accessor api_type: ("GRAPHQL" | "MERGED")
|
819
|
+
attr_accessor owner: ("CURRENT_ACCOUNT" | "OTHER_ACCOUNTS")
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class ListGraphqlApisResponse
|
824
|
+
attr_accessor graphql_apis: ::Array[Types::GraphqlApi]
|
825
|
+
attr_accessor next_token: ::String
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class ListResolversByFunctionRequest
|
830
|
+
attr_accessor api_id: ::String
|
831
|
+
attr_accessor function_id: ::String
|
832
|
+
attr_accessor next_token: ::String
|
833
|
+
attr_accessor max_results: ::Integer
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class ListResolversByFunctionResponse
|
838
|
+
attr_accessor resolvers: ::Array[Types::Resolver]
|
839
|
+
attr_accessor next_token: ::String
|
840
|
+
SENSITIVE: []
|
841
|
+
end
|
842
|
+
|
843
|
+
class ListResolversRequest
|
844
|
+
attr_accessor api_id: ::String
|
845
|
+
attr_accessor type_name: ::String
|
846
|
+
attr_accessor next_token: ::String
|
847
|
+
attr_accessor max_results: ::Integer
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class ListResolversResponse
|
852
|
+
attr_accessor resolvers: ::Array[Types::Resolver]
|
853
|
+
attr_accessor next_token: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class ListSourceApiAssociationsRequest
|
858
|
+
attr_accessor api_id: ::String
|
859
|
+
attr_accessor next_token: ::String
|
860
|
+
attr_accessor max_results: ::Integer
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class ListSourceApiAssociationsResponse
|
865
|
+
attr_accessor source_api_association_summaries: ::Array[Types::SourceApiAssociationSummary]
|
866
|
+
attr_accessor next_token: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class ListTagsForResourceRequest
|
871
|
+
attr_accessor resource_arn: ::String
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class ListTagsForResourceResponse
|
876
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
877
|
+
SENSITIVE: []
|
878
|
+
end
|
879
|
+
|
880
|
+
class ListTypesByAssociationRequest
|
881
|
+
attr_accessor merged_api_identifier: ::String
|
882
|
+
attr_accessor association_id: ::String
|
883
|
+
attr_accessor format: ("SDL" | "JSON")
|
884
|
+
attr_accessor next_token: ::String
|
885
|
+
attr_accessor max_results: ::Integer
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class ListTypesByAssociationResponse
|
890
|
+
attr_accessor types: ::Array[Types::Type]
|
891
|
+
attr_accessor next_token: ::String
|
892
|
+
SENSITIVE: []
|
893
|
+
end
|
894
|
+
|
895
|
+
class ListTypesRequest
|
896
|
+
attr_accessor api_id: ::String
|
897
|
+
attr_accessor format: ("SDL" | "JSON")
|
898
|
+
attr_accessor next_token: ::String
|
899
|
+
attr_accessor max_results: ::Integer
|
900
|
+
SENSITIVE: []
|
901
|
+
end
|
902
|
+
|
903
|
+
class ListTypesResponse
|
904
|
+
attr_accessor types: ::Array[Types::Type]
|
905
|
+
attr_accessor next_token: ::String
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class LogConfig
|
910
|
+
attr_accessor field_log_level: ("NONE" | "ERROR" | "ALL")
|
911
|
+
attr_accessor cloud_watch_logs_role_arn: ::String
|
912
|
+
attr_accessor exclude_verbose_content: bool
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class NotFoundException
|
917
|
+
attr_accessor message: ::String
|
918
|
+
SENSITIVE: []
|
919
|
+
end
|
920
|
+
|
921
|
+
class OpenIDConnectConfig
|
922
|
+
attr_accessor issuer: ::String
|
923
|
+
attr_accessor client_id: ::String
|
924
|
+
attr_accessor iat_ttl: ::Integer
|
925
|
+
attr_accessor auth_ttl: ::Integer
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class OpenSearchServiceDataSourceConfig
|
930
|
+
attr_accessor endpoint: ::String
|
931
|
+
attr_accessor aws_region: ::String
|
932
|
+
SENSITIVE: []
|
933
|
+
end
|
934
|
+
|
935
|
+
class PipelineConfig
|
936
|
+
attr_accessor functions: ::Array[::String]
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
940
|
+
class PutGraphqlApiEnvironmentVariablesRequest
|
941
|
+
attr_accessor api_id: ::String
|
942
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
943
|
+
SENSITIVE: []
|
944
|
+
end
|
945
|
+
|
946
|
+
class PutGraphqlApiEnvironmentVariablesResponse
|
947
|
+
attr_accessor environment_variables: ::Hash[::String, ::String]
|
948
|
+
SENSITIVE: []
|
949
|
+
end
|
950
|
+
|
951
|
+
class RdsDataApiConfig
|
952
|
+
attr_accessor resource_arn: ::String
|
953
|
+
attr_accessor secret_arn: ::String
|
954
|
+
attr_accessor database_name: ::String
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class RdsHttpEndpointConfig
|
959
|
+
attr_accessor aws_region: ::String
|
960
|
+
attr_accessor db_cluster_identifier: ::String
|
961
|
+
attr_accessor database_name: ::String
|
962
|
+
attr_accessor schema: ::String
|
963
|
+
attr_accessor aws_secret_store_arn: ::String
|
964
|
+
SENSITIVE: []
|
965
|
+
end
|
966
|
+
|
967
|
+
class RelationalDatabaseDataSourceConfig
|
968
|
+
attr_accessor relational_database_source_type: ("RDS_HTTP_ENDPOINT")
|
969
|
+
attr_accessor rds_http_endpoint_config: Types::RdsHttpEndpointConfig
|
970
|
+
SENSITIVE: []
|
971
|
+
end
|
972
|
+
|
973
|
+
class Resolver
|
974
|
+
attr_accessor type_name: ::String
|
975
|
+
attr_accessor field_name: ::String
|
976
|
+
attr_accessor data_source_name: ::String
|
977
|
+
attr_accessor resolver_arn: ::String
|
978
|
+
attr_accessor request_mapping_template: ::String
|
979
|
+
attr_accessor response_mapping_template: ::String
|
980
|
+
attr_accessor kind: ("UNIT" | "PIPELINE")
|
981
|
+
attr_accessor pipeline_config: Types::PipelineConfig
|
982
|
+
attr_accessor sync_config: Types::SyncConfig
|
983
|
+
attr_accessor caching_config: Types::CachingConfig
|
984
|
+
attr_accessor max_batch_size: ::Integer
|
985
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
986
|
+
attr_accessor code: ::String
|
987
|
+
SENSITIVE: []
|
988
|
+
end
|
989
|
+
|
990
|
+
class SourceApiAssociation
|
991
|
+
attr_accessor association_id: ::String
|
992
|
+
attr_accessor association_arn: ::String
|
993
|
+
attr_accessor source_api_id: ::String
|
994
|
+
attr_accessor source_api_arn: ::String
|
995
|
+
attr_accessor merged_api_arn: ::String
|
996
|
+
attr_accessor merged_api_id: ::String
|
997
|
+
attr_accessor description: ::String
|
998
|
+
attr_accessor source_api_association_config: Types::SourceApiAssociationConfig
|
999
|
+
attr_accessor source_api_association_status: ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
|
1000
|
+
attr_accessor source_api_association_status_detail: ::String
|
1001
|
+
attr_accessor last_successful_merge_date: ::Time
|
1002
|
+
SENSITIVE: []
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class SourceApiAssociationConfig
|
1006
|
+
attr_accessor merge_type: ("MANUAL_MERGE" | "AUTO_MERGE")
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class SourceApiAssociationSummary
|
1011
|
+
attr_accessor association_id: ::String
|
1012
|
+
attr_accessor association_arn: ::String
|
1013
|
+
attr_accessor source_api_id: ::String
|
1014
|
+
attr_accessor source_api_arn: ::String
|
1015
|
+
attr_accessor merged_api_id: ::String
|
1016
|
+
attr_accessor merged_api_arn: ::String
|
1017
|
+
attr_accessor description: ::String
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class StartDataSourceIntrospectionRequest
|
1022
|
+
attr_accessor rds_data_api_config: Types::RdsDataApiConfig
|
1023
|
+
SENSITIVE: []
|
1024
|
+
end
|
1025
|
+
|
1026
|
+
class StartDataSourceIntrospectionResponse
|
1027
|
+
attr_accessor introspection_id: ::String
|
1028
|
+
attr_accessor introspection_status: ("PROCESSING" | "FAILED" | "SUCCESS")
|
1029
|
+
attr_accessor introspection_status_detail: ::String
|
1030
|
+
SENSITIVE: []
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class StartSchemaCreationRequest
|
1034
|
+
attr_accessor api_id: ::String
|
1035
|
+
attr_accessor definition: ::String
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class StartSchemaCreationResponse
|
1040
|
+
attr_accessor status: ("PROCESSING" | "ACTIVE" | "DELETING" | "FAILED" | "SUCCESS" | "NOT_APPLICABLE")
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class StartSchemaMergeRequest
|
1045
|
+
attr_accessor association_id: ::String
|
1046
|
+
attr_accessor merged_api_identifier: ::String
|
1047
|
+
SENSITIVE: []
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
class StartSchemaMergeResponse
|
1051
|
+
attr_accessor source_api_association_status: ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
|
1052
|
+
SENSITIVE: []
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
class SyncConfig
|
1056
|
+
attr_accessor conflict_handler: ("OPTIMISTIC_CONCURRENCY" | "LAMBDA" | "AUTOMERGE" | "NONE")
|
1057
|
+
attr_accessor conflict_detection: ("VERSION" | "NONE")
|
1058
|
+
attr_accessor lambda_conflict_handler_config: Types::LambdaConflictHandlerConfig
|
1059
|
+
SENSITIVE: []
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
class TagResourceRequest
|
1063
|
+
attr_accessor resource_arn: ::String
|
1064
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1065
|
+
SENSITIVE: []
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
class Type
|
1072
|
+
attr_accessor name: ::String
|
1073
|
+
attr_accessor description: ::String
|
1074
|
+
attr_accessor arn: ::String
|
1075
|
+
attr_accessor definition: ::String
|
1076
|
+
attr_accessor format: ("SDL" | "JSON")
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class UnauthorizedException
|
1081
|
+
attr_accessor message: ::String
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class UntagResourceRequest
|
1086
|
+
attr_accessor resource_arn: ::String
|
1087
|
+
attr_accessor tag_keys: ::Array[::String]
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class UpdateApiCacheRequest
|
1095
|
+
attr_accessor api_id: ::String
|
1096
|
+
attr_accessor ttl: ::Integer
|
1097
|
+
attr_accessor api_caching_behavior: ("FULL_REQUEST_CACHING" | "PER_RESOLVER_CACHING")
|
1098
|
+
attr_accessor type: ("T2_SMALL" | "T2_MEDIUM" | "R4_LARGE" | "R4_XLARGE" | "R4_2XLARGE" | "R4_4XLARGE" | "R4_8XLARGE" | "SMALL" | "MEDIUM" | "LARGE" | "XLARGE" | "LARGE_2X" | "LARGE_4X" | "LARGE_8X" | "LARGE_12X")
|
1099
|
+
SENSITIVE: []
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class UpdateApiCacheResponse
|
1103
|
+
attr_accessor api_cache: Types::ApiCache
|
1104
|
+
SENSITIVE: []
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class UpdateApiKeyRequest
|
1108
|
+
attr_accessor api_id: ::String
|
1109
|
+
attr_accessor id: ::String
|
1110
|
+
attr_accessor description: ::String
|
1111
|
+
attr_accessor expires: ::Integer
|
1112
|
+
SENSITIVE: []
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class UpdateApiKeyResponse
|
1116
|
+
attr_accessor api_key: Types::ApiKey
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class UpdateDataSourceRequest
|
1121
|
+
attr_accessor api_id: ::String
|
1122
|
+
attr_accessor name: ::String
|
1123
|
+
attr_accessor description: ::String
|
1124
|
+
attr_accessor type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE")
|
1125
|
+
attr_accessor service_role_arn: ::String
|
1126
|
+
attr_accessor dynamodb_config: Types::DynamodbDataSourceConfig
|
1127
|
+
attr_accessor lambda_config: Types::LambdaDataSourceConfig
|
1128
|
+
attr_accessor elasticsearch_config: Types::ElasticsearchDataSourceConfig
|
1129
|
+
attr_accessor open_search_service_config: Types::OpenSearchServiceDataSourceConfig
|
1130
|
+
attr_accessor http_config: Types::HttpDataSourceConfig
|
1131
|
+
attr_accessor relational_database_config: Types::RelationalDatabaseDataSourceConfig
|
1132
|
+
attr_accessor event_bridge_config: Types::EventBridgeDataSourceConfig
|
1133
|
+
SENSITIVE: []
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class UpdateDataSourceResponse
|
1137
|
+
attr_accessor data_source: Types::DataSource
|
1138
|
+
SENSITIVE: []
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class UpdateDomainNameRequest
|
1142
|
+
attr_accessor domain_name: ::String
|
1143
|
+
attr_accessor description: ::String
|
1144
|
+
SENSITIVE: []
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class UpdateDomainNameResponse
|
1148
|
+
attr_accessor domain_name_config: Types::DomainNameConfig
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class UpdateFunctionRequest
|
1153
|
+
attr_accessor api_id: ::String
|
1154
|
+
attr_accessor name: ::String
|
1155
|
+
attr_accessor description: ::String
|
1156
|
+
attr_accessor function_id: ::String
|
1157
|
+
attr_accessor data_source_name: ::String
|
1158
|
+
attr_accessor request_mapping_template: ::String
|
1159
|
+
attr_accessor response_mapping_template: ::String
|
1160
|
+
attr_accessor function_version: ::String
|
1161
|
+
attr_accessor sync_config: Types::SyncConfig
|
1162
|
+
attr_accessor max_batch_size: ::Integer
|
1163
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
1164
|
+
attr_accessor code: ::String
|
1165
|
+
SENSITIVE: []
|
1166
|
+
end
|
1167
|
+
|
1168
|
+
class UpdateFunctionResponse
|
1169
|
+
attr_accessor function_configuration: Types::FunctionConfiguration
|
1170
|
+
SENSITIVE: []
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class UpdateGraphqlApiRequest
|
1174
|
+
attr_accessor api_id: ::String
|
1175
|
+
attr_accessor name: ::String
|
1176
|
+
attr_accessor log_config: Types::LogConfig
|
1177
|
+
attr_accessor authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
|
1178
|
+
attr_accessor user_pool_config: Types::UserPoolConfig
|
1179
|
+
attr_accessor open_id_connect_config: Types::OpenIDConnectConfig
|
1180
|
+
attr_accessor additional_authentication_providers: ::Array[Types::AdditionalAuthenticationProvider]
|
1181
|
+
attr_accessor xray_enabled: bool
|
1182
|
+
attr_accessor lambda_authorizer_config: Types::LambdaAuthorizerConfig
|
1183
|
+
attr_accessor merged_api_execution_role_arn: ::String
|
1184
|
+
attr_accessor owner_contact: ::String
|
1185
|
+
attr_accessor introspection_config: ("ENABLED" | "DISABLED")
|
1186
|
+
attr_accessor query_depth_limit: ::Integer
|
1187
|
+
attr_accessor resolver_count_limit: ::Integer
|
1188
|
+
SENSITIVE: []
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
class UpdateGraphqlApiResponse
|
1192
|
+
attr_accessor graphql_api: Types::GraphqlApi
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class UpdateResolverRequest
|
1197
|
+
attr_accessor api_id: ::String
|
1198
|
+
attr_accessor type_name: ::String
|
1199
|
+
attr_accessor field_name: ::String
|
1200
|
+
attr_accessor data_source_name: ::String
|
1201
|
+
attr_accessor request_mapping_template: ::String
|
1202
|
+
attr_accessor response_mapping_template: ::String
|
1203
|
+
attr_accessor kind: ("UNIT" | "PIPELINE")
|
1204
|
+
attr_accessor pipeline_config: Types::PipelineConfig
|
1205
|
+
attr_accessor sync_config: Types::SyncConfig
|
1206
|
+
attr_accessor caching_config: Types::CachingConfig
|
1207
|
+
attr_accessor max_batch_size: ::Integer
|
1208
|
+
attr_accessor runtime: Types::AppSyncRuntime
|
1209
|
+
attr_accessor code: ::String
|
1210
|
+
SENSITIVE: []
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
class UpdateResolverResponse
|
1214
|
+
attr_accessor resolver: Types::Resolver
|
1215
|
+
SENSITIVE: []
|
1216
|
+
end
|
1217
|
+
|
1218
|
+
class UpdateSourceApiAssociationRequest
|
1219
|
+
attr_accessor association_id: ::String
|
1220
|
+
attr_accessor merged_api_identifier: ::String
|
1221
|
+
attr_accessor description: ::String
|
1222
|
+
attr_accessor source_api_association_config: Types::SourceApiAssociationConfig
|
1223
|
+
SENSITIVE: []
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
class UpdateSourceApiAssociationResponse
|
1227
|
+
attr_accessor source_api_association: Types::SourceApiAssociation
|
1228
|
+
SENSITIVE: []
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class UpdateTypeRequest
|
1232
|
+
attr_accessor api_id: ::String
|
1233
|
+
attr_accessor type_name: ::String
|
1234
|
+
attr_accessor definition: ::String
|
1235
|
+
attr_accessor format: ("SDL" | "JSON")
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class UpdateTypeResponse
|
1240
|
+
attr_accessor type: Types::Type
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class UserPoolConfig
|
1245
|
+
attr_accessor user_pool_id: ::String
|
1246
|
+
attr_accessor aws_region: ::String
|
1247
|
+
attr_accessor default_action: ("ALLOW" | "DENY")
|
1248
|
+
attr_accessor app_id_client_regex: ::String
|
1249
|
+
SENSITIVE: []
|
1250
|
+
end
|
1251
|
+
end
|
1252
|
+
end
|