aws-sdk-appsync 1.69.0 → 1.71.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1231 @@
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 GetGraphqlApiRequest
623
+ attr_accessor api_id: ::String
624
+ SENSITIVE: []
625
+ end
626
+
627
+ class GetGraphqlApiResponse
628
+ attr_accessor graphql_api: Types::GraphqlApi
629
+ SENSITIVE: []
630
+ end
631
+
632
+ class GetIntrospectionSchemaRequest
633
+ attr_accessor api_id: ::String
634
+ attr_accessor format: ("SDL" | "JSON")
635
+ attr_accessor include_directives: bool
636
+ SENSITIVE: []
637
+ end
638
+
639
+ class GetIntrospectionSchemaResponse
640
+ attr_accessor schema: ::String
641
+ SENSITIVE: []
642
+ end
643
+
644
+ class GetResolverRequest
645
+ attr_accessor api_id: ::String
646
+ attr_accessor type_name: ::String
647
+ attr_accessor field_name: ::String
648
+ SENSITIVE: []
649
+ end
650
+
651
+ class GetResolverResponse
652
+ attr_accessor resolver: Types::Resolver
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class GetSchemaCreationStatusRequest
657
+ attr_accessor api_id: ::String
658
+ SENSITIVE: []
659
+ end
660
+
661
+ class GetSchemaCreationStatusResponse
662
+ attr_accessor status: ("PROCESSING" | "ACTIVE" | "DELETING" | "FAILED" | "SUCCESS" | "NOT_APPLICABLE")
663
+ attr_accessor details: ::String
664
+ SENSITIVE: []
665
+ end
666
+
667
+ class GetSourceApiAssociationRequest
668
+ attr_accessor merged_api_identifier: ::String
669
+ attr_accessor association_id: ::String
670
+ SENSITIVE: []
671
+ end
672
+
673
+ class GetSourceApiAssociationResponse
674
+ attr_accessor source_api_association: Types::SourceApiAssociation
675
+ SENSITIVE: []
676
+ end
677
+
678
+ class GetTypeRequest
679
+ attr_accessor api_id: ::String
680
+ attr_accessor type_name: ::String
681
+ attr_accessor format: ("SDL" | "JSON")
682
+ SENSITIVE: []
683
+ end
684
+
685
+ class GetTypeResponse
686
+ attr_accessor type: Types::Type
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class GraphQLSchemaException
691
+ attr_accessor message: ::String
692
+ SENSITIVE: []
693
+ end
694
+
695
+ class GraphqlApi
696
+ attr_accessor name: ::String
697
+ attr_accessor api_id: ::String
698
+ attr_accessor authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
699
+ attr_accessor log_config: Types::LogConfig
700
+ attr_accessor user_pool_config: Types::UserPoolConfig
701
+ attr_accessor open_id_connect_config: Types::OpenIDConnectConfig
702
+ attr_accessor arn: ::String
703
+ attr_accessor uris: ::Hash[::String, ::String]
704
+ attr_accessor tags: ::Hash[::String, ::String]
705
+ attr_accessor additional_authentication_providers: ::Array[Types::AdditionalAuthenticationProvider]
706
+ attr_accessor xray_enabled: bool
707
+ attr_accessor waf_web_acl_arn: ::String
708
+ attr_accessor lambda_authorizer_config: Types::LambdaAuthorizerConfig
709
+ attr_accessor dns: ::Hash[::String, ::String]
710
+ attr_accessor visibility: ("GLOBAL" | "PRIVATE")
711
+ attr_accessor api_type: ("GRAPHQL" | "MERGED")
712
+ attr_accessor merged_api_execution_role_arn: ::String
713
+ attr_accessor owner: ::String
714
+ attr_accessor owner_contact: ::String
715
+ attr_accessor introspection_config: ("ENABLED" | "DISABLED")
716
+ attr_accessor query_depth_limit: ::Integer
717
+ attr_accessor resolver_count_limit: ::Integer
718
+ SENSITIVE: []
719
+ end
720
+
721
+ class HttpDataSourceConfig
722
+ attr_accessor endpoint: ::String
723
+ attr_accessor authorization_config: Types::AuthorizationConfig
724
+ SENSITIVE: []
725
+ end
726
+
727
+ class InternalFailureException
728
+ attr_accessor message: ::String
729
+ SENSITIVE: []
730
+ end
731
+
732
+ class LambdaAuthorizerConfig
733
+ attr_accessor authorizer_result_ttl_in_seconds: ::Integer
734
+ attr_accessor authorizer_uri: ::String
735
+ attr_accessor identity_validation_expression: ::String
736
+ SENSITIVE: []
737
+ end
738
+
739
+ class LambdaConflictHandlerConfig
740
+ attr_accessor lambda_conflict_handler_arn: ::String
741
+ SENSITIVE: []
742
+ end
743
+
744
+ class LambdaDataSourceConfig
745
+ attr_accessor lambda_function_arn: ::String
746
+ SENSITIVE: []
747
+ end
748
+
749
+ class LimitExceededException
750
+ attr_accessor message: ::String
751
+ SENSITIVE: []
752
+ end
753
+
754
+ class ListApiKeysRequest
755
+ attr_accessor api_id: ::String
756
+ attr_accessor next_token: ::String
757
+ attr_accessor max_results: ::Integer
758
+ SENSITIVE: []
759
+ end
760
+
761
+ class ListApiKeysResponse
762
+ attr_accessor api_keys: ::Array[Types::ApiKey]
763
+ attr_accessor next_token: ::String
764
+ SENSITIVE: []
765
+ end
766
+
767
+ class ListDataSourcesRequest
768
+ attr_accessor api_id: ::String
769
+ attr_accessor next_token: ::String
770
+ attr_accessor max_results: ::Integer
771
+ SENSITIVE: []
772
+ end
773
+
774
+ class ListDataSourcesResponse
775
+ attr_accessor data_sources: ::Array[Types::DataSource]
776
+ attr_accessor next_token: ::String
777
+ SENSITIVE: []
778
+ end
779
+
780
+ class ListDomainNamesRequest
781
+ attr_accessor next_token: ::String
782
+ attr_accessor max_results: ::Integer
783
+ SENSITIVE: []
784
+ end
785
+
786
+ class ListDomainNamesResponse
787
+ attr_accessor domain_name_configs: ::Array[Types::DomainNameConfig]
788
+ attr_accessor next_token: ::String
789
+ SENSITIVE: []
790
+ end
791
+
792
+ class ListFunctionsRequest
793
+ attr_accessor api_id: ::String
794
+ attr_accessor next_token: ::String
795
+ attr_accessor max_results: ::Integer
796
+ SENSITIVE: []
797
+ end
798
+
799
+ class ListFunctionsResponse
800
+ attr_accessor functions: ::Array[Types::FunctionConfiguration]
801
+ attr_accessor next_token: ::String
802
+ SENSITIVE: []
803
+ end
804
+
805
+ class ListGraphqlApisRequest
806
+ attr_accessor next_token: ::String
807
+ attr_accessor max_results: ::Integer
808
+ attr_accessor api_type: ("GRAPHQL" | "MERGED")
809
+ attr_accessor owner: ("CURRENT_ACCOUNT" | "OTHER_ACCOUNTS")
810
+ SENSITIVE: []
811
+ end
812
+
813
+ class ListGraphqlApisResponse
814
+ attr_accessor graphql_apis: ::Array[Types::GraphqlApi]
815
+ attr_accessor next_token: ::String
816
+ SENSITIVE: []
817
+ end
818
+
819
+ class ListResolversByFunctionRequest
820
+ attr_accessor api_id: ::String
821
+ attr_accessor function_id: ::String
822
+ attr_accessor next_token: ::String
823
+ attr_accessor max_results: ::Integer
824
+ SENSITIVE: []
825
+ end
826
+
827
+ class ListResolversByFunctionResponse
828
+ attr_accessor resolvers: ::Array[Types::Resolver]
829
+ attr_accessor next_token: ::String
830
+ SENSITIVE: []
831
+ end
832
+
833
+ class ListResolversRequest
834
+ attr_accessor api_id: ::String
835
+ attr_accessor type_name: ::String
836
+ attr_accessor next_token: ::String
837
+ attr_accessor max_results: ::Integer
838
+ SENSITIVE: []
839
+ end
840
+
841
+ class ListResolversResponse
842
+ attr_accessor resolvers: ::Array[Types::Resolver]
843
+ attr_accessor next_token: ::String
844
+ SENSITIVE: []
845
+ end
846
+
847
+ class ListSourceApiAssociationsRequest
848
+ attr_accessor api_id: ::String
849
+ attr_accessor next_token: ::String
850
+ attr_accessor max_results: ::Integer
851
+ SENSITIVE: []
852
+ end
853
+
854
+ class ListSourceApiAssociationsResponse
855
+ attr_accessor source_api_association_summaries: ::Array[Types::SourceApiAssociationSummary]
856
+ attr_accessor next_token: ::String
857
+ SENSITIVE: []
858
+ end
859
+
860
+ class ListTagsForResourceRequest
861
+ attr_accessor resource_arn: ::String
862
+ SENSITIVE: []
863
+ end
864
+
865
+ class ListTagsForResourceResponse
866
+ attr_accessor tags: ::Hash[::String, ::String]
867
+ SENSITIVE: []
868
+ end
869
+
870
+ class ListTypesByAssociationRequest
871
+ attr_accessor merged_api_identifier: ::String
872
+ attr_accessor association_id: ::String
873
+ attr_accessor format: ("SDL" | "JSON")
874
+ attr_accessor next_token: ::String
875
+ attr_accessor max_results: ::Integer
876
+ SENSITIVE: []
877
+ end
878
+
879
+ class ListTypesByAssociationResponse
880
+ attr_accessor types: ::Array[Types::Type]
881
+ attr_accessor next_token: ::String
882
+ SENSITIVE: []
883
+ end
884
+
885
+ class ListTypesRequest
886
+ attr_accessor api_id: ::String
887
+ attr_accessor format: ("SDL" | "JSON")
888
+ attr_accessor next_token: ::String
889
+ attr_accessor max_results: ::Integer
890
+ SENSITIVE: []
891
+ end
892
+
893
+ class ListTypesResponse
894
+ attr_accessor types: ::Array[Types::Type]
895
+ attr_accessor next_token: ::String
896
+ SENSITIVE: []
897
+ end
898
+
899
+ class LogConfig
900
+ attr_accessor field_log_level: ("NONE" | "ERROR" | "ALL")
901
+ attr_accessor cloud_watch_logs_role_arn: ::String
902
+ attr_accessor exclude_verbose_content: bool
903
+ SENSITIVE: []
904
+ end
905
+
906
+ class NotFoundException
907
+ attr_accessor message: ::String
908
+ SENSITIVE: []
909
+ end
910
+
911
+ class OpenIDConnectConfig
912
+ attr_accessor issuer: ::String
913
+ attr_accessor client_id: ::String
914
+ attr_accessor iat_ttl: ::Integer
915
+ attr_accessor auth_ttl: ::Integer
916
+ SENSITIVE: []
917
+ end
918
+
919
+ class OpenSearchServiceDataSourceConfig
920
+ attr_accessor endpoint: ::String
921
+ attr_accessor aws_region: ::String
922
+ SENSITIVE: []
923
+ end
924
+
925
+ class PipelineConfig
926
+ attr_accessor functions: ::Array[::String]
927
+ SENSITIVE: []
928
+ end
929
+
930
+ class RdsDataApiConfig
931
+ attr_accessor resource_arn: ::String
932
+ attr_accessor secret_arn: ::String
933
+ attr_accessor database_name: ::String
934
+ SENSITIVE: []
935
+ end
936
+
937
+ class RdsHttpEndpointConfig
938
+ attr_accessor aws_region: ::String
939
+ attr_accessor db_cluster_identifier: ::String
940
+ attr_accessor database_name: ::String
941
+ attr_accessor schema: ::String
942
+ attr_accessor aws_secret_store_arn: ::String
943
+ SENSITIVE: []
944
+ end
945
+
946
+ class RelationalDatabaseDataSourceConfig
947
+ attr_accessor relational_database_source_type: ("RDS_HTTP_ENDPOINT")
948
+ attr_accessor rds_http_endpoint_config: Types::RdsHttpEndpointConfig
949
+ SENSITIVE: []
950
+ end
951
+
952
+ class Resolver
953
+ attr_accessor type_name: ::String
954
+ attr_accessor field_name: ::String
955
+ attr_accessor data_source_name: ::String
956
+ attr_accessor resolver_arn: ::String
957
+ attr_accessor request_mapping_template: ::String
958
+ attr_accessor response_mapping_template: ::String
959
+ attr_accessor kind: ("UNIT" | "PIPELINE")
960
+ attr_accessor pipeline_config: Types::PipelineConfig
961
+ attr_accessor sync_config: Types::SyncConfig
962
+ attr_accessor caching_config: Types::CachingConfig
963
+ attr_accessor max_batch_size: ::Integer
964
+ attr_accessor runtime: Types::AppSyncRuntime
965
+ attr_accessor code: ::String
966
+ SENSITIVE: []
967
+ end
968
+
969
+ class SourceApiAssociation
970
+ attr_accessor association_id: ::String
971
+ attr_accessor association_arn: ::String
972
+ attr_accessor source_api_id: ::String
973
+ attr_accessor source_api_arn: ::String
974
+ attr_accessor merged_api_arn: ::String
975
+ attr_accessor merged_api_id: ::String
976
+ attr_accessor description: ::String
977
+ attr_accessor source_api_association_config: Types::SourceApiAssociationConfig
978
+ 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")
979
+ attr_accessor source_api_association_status_detail: ::String
980
+ attr_accessor last_successful_merge_date: ::Time
981
+ SENSITIVE: []
982
+ end
983
+
984
+ class SourceApiAssociationConfig
985
+ attr_accessor merge_type: ("MANUAL_MERGE" | "AUTO_MERGE")
986
+ SENSITIVE: []
987
+ end
988
+
989
+ class SourceApiAssociationSummary
990
+ attr_accessor association_id: ::String
991
+ attr_accessor association_arn: ::String
992
+ attr_accessor source_api_id: ::String
993
+ attr_accessor source_api_arn: ::String
994
+ attr_accessor merged_api_id: ::String
995
+ attr_accessor merged_api_arn: ::String
996
+ attr_accessor description: ::String
997
+ SENSITIVE: []
998
+ end
999
+
1000
+ class StartDataSourceIntrospectionRequest
1001
+ attr_accessor rds_data_api_config: Types::RdsDataApiConfig
1002
+ SENSITIVE: []
1003
+ end
1004
+
1005
+ class StartDataSourceIntrospectionResponse
1006
+ attr_accessor introspection_id: ::String
1007
+ attr_accessor introspection_status: ("PROCESSING" | "FAILED" | "SUCCESS")
1008
+ attr_accessor introspection_status_detail: ::String
1009
+ SENSITIVE: []
1010
+ end
1011
+
1012
+ class StartSchemaCreationRequest
1013
+ attr_accessor api_id: ::String
1014
+ attr_accessor definition: ::String
1015
+ SENSITIVE: []
1016
+ end
1017
+
1018
+ class StartSchemaCreationResponse
1019
+ attr_accessor status: ("PROCESSING" | "ACTIVE" | "DELETING" | "FAILED" | "SUCCESS" | "NOT_APPLICABLE")
1020
+ SENSITIVE: []
1021
+ end
1022
+
1023
+ class StartSchemaMergeRequest
1024
+ attr_accessor association_id: ::String
1025
+ attr_accessor merged_api_identifier: ::String
1026
+ SENSITIVE: []
1027
+ end
1028
+
1029
+ class StartSchemaMergeResponse
1030
+ 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")
1031
+ SENSITIVE: []
1032
+ end
1033
+
1034
+ class SyncConfig
1035
+ attr_accessor conflict_handler: ("OPTIMISTIC_CONCURRENCY" | "LAMBDA" | "AUTOMERGE" | "NONE")
1036
+ attr_accessor conflict_detection: ("VERSION" | "NONE")
1037
+ attr_accessor lambda_conflict_handler_config: Types::LambdaConflictHandlerConfig
1038
+ SENSITIVE: []
1039
+ end
1040
+
1041
+ class TagResourceRequest
1042
+ attr_accessor resource_arn: ::String
1043
+ attr_accessor tags: ::Hash[::String, ::String]
1044
+ SENSITIVE: []
1045
+ end
1046
+
1047
+ class TagResourceResponse < Aws::EmptyStructure
1048
+ end
1049
+
1050
+ class Type
1051
+ attr_accessor name: ::String
1052
+ attr_accessor description: ::String
1053
+ attr_accessor arn: ::String
1054
+ attr_accessor definition: ::String
1055
+ attr_accessor format: ("SDL" | "JSON")
1056
+ SENSITIVE: []
1057
+ end
1058
+
1059
+ class UnauthorizedException
1060
+ attr_accessor message: ::String
1061
+ SENSITIVE: []
1062
+ end
1063
+
1064
+ class UntagResourceRequest
1065
+ attr_accessor resource_arn: ::String
1066
+ attr_accessor tag_keys: ::Array[::String]
1067
+ SENSITIVE: []
1068
+ end
1069
+
1070
+ class UntagResourceResponse < Aws::EmptyStructure
1071
+ end
1072
+
1073
+ class UpdateApiCacheRequest
1074
+ attr_accessor api_id: ::String
1075
+ attr_accessor ttl: ::Integer
1076
+ attr_accessor api_caching_behavior: ("FULL_REQUEST_CACHING" | "PER_RESOLVER_CACHING")
1077
+ 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")
1078
+ SENSITIVE: []
1079
+ end
1080
+
1081
+ class UpdateApiCacheResponse
1082
+ attr_accessor api_cache: Types::ApiCache
1083
+ SENSITIVE: []
1084
+ end
1085
+
1086
+ class UpdateApiKeyRequest
1087
+ attr_accessor api_id: ::String
1088
+ attr_accessor id: ::String
1089
+ attr_accessor description: ::String
1090
+ attr_accessor expires: ::Integer
1091
+ SENSITIVE: []
1092
+ end
1093
+
1094
+ class UpdateApiKeyResponse
1095
+ attr_accessor api_key: Types::ApiKey
1096
+ SENSITIVE: []
1097
+ end
1098
+
1099
+ class UpdateDataSourceRequest
1100
+ attr_accessor api_id: ::String
1101
+ attr_accessor name: ::String
1102
+ attr_accessor description: ::String
1103
+ attr_accessor type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE")
1104
+ attr_accessor service_role_arn: ::String
1105
+ attr_accessor dynamodb_config: Types::DynamodbDataSourceConfig
1106
+ attr_accessor lambda_config: Types::LambdaDataSourceConfig
1107
+ attr_accessor elasticsearch_config: Types::ElasticsearchDataSourceConfig
1108
+ attr_accessor open_search_service_config: Types::OpenSearchServiceDataSourceConfig
1109
+ attr_accessor http_config: Types::HttpDataSourceConfig
1110
+ attr_accessor relational_database_config: Types::RelationalDatabaseDataSourceConfig
1111
+ attr_accessor event_bridge_config: Types::EventBridgeDataSourceConfig
1112
+ SENSITIVE: []
1113
+ end
1114
+
1115
+ class UpdateDataSourceResponse
1116
+ attr_accessor data_source: Types::DataSource
1117
+ SENSITIVE: []
1118
+ end
1119
+
1120
+ class UpdateDomainNameRequest
1121
+ attr_accessor domain_name: ::String
1122
+ attr_accessor description: ::String
1123
+ SENSITIVE: []
1124
+ end
1125
+
1126
+ class UpdateDomainNameResponse
1127
+ attr_accessor domain_name_config: Types::DomainNameConfig
1128
+ SENSITIVE: []
1129
+ end
1130
+
1131
+ class UpdateFunctionRequest
1132
+ attr_accessor api_id: ::String
1133
+ attr_accessor name: ::String
1134
+ attr_accessor description: ::String
1135
+ attr_accessor function_id: ::String
1136
+ attr_accessor data_source_name: ::String
1137
+ attr_accessor request_mapping_template: ::String
1138
+ attr_accessor response_mapping_template: ::String
1139
+ attr_accessor function_version: ::String
1140
+ attr_accessor sync_config: Types::SyncConfig
1141
+ attr_accessor max_batch_size: ::Integer
1142
+ attr_accessor runtime: Types::AppSyncRuntime
1143
+ attr_accessor code: ::String
1144
+ SENSITIVE: []
1145
+ end
1146
+
1147
+ class UpdateFunctionResponse
1148
+ attr_accessor function_configuration: Types::FunctionConfiguration
1149
+ SENSITIVE: []
1150
+ end
1151
+
1152
+ class UpdateGraphqlApiRequest
1153
+ attr_accessor api_id: ::String
1154
+ attr_accessor name: ::String
1155
+ attr_accessor log_config: Types::LogConfig
1156
+ attr_accessor authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")
1157
+ attr_accessor user_pool_config: Types::UserPoolConfig
1158
+ attr_accessor open_id_connect_config: Types::OpenIDConnectConfig
1159
+ attr_accessor additional_authentication_providers: ::Array[Types::AdditionalAuthenticationProvider]
1160
+ attr_accessor xray_enabled: bool
1161
+ attr_accessor lambda_authorizer_config: Types::LambdaAuthorizerConfig
1162
+ attr_accessor merged_api_execution_role_arn: ::String
1163
+ attr_accessor owner_contact: ::String
1164
+ attr_accessor introspection_config: ("ENABLED" | "DISABLED")
1165
+ attr_accessor query_depth_limit: ::Integer
1166
+ attr_accessor resolver_count_limit: ::Integer
1167
+ SENSITIVE: []
1168
+ end
1169
+
1170
+ class UpdateGraphqlApiResponse
1171
+ attr_accessor graphql_api: Types::GraphqlApi
1172
+ SENSITIVE: []
1173
+ end
1174
+
1175
+ class UpdateResolverRequest
1176
+ attr_accessor api_id: ::String
1177
+ attr_accessor type_name: ::String
1178
+ attr_accessor field_name: ::String
1179
+ attr_accessor data_source_name: ::String
1180
+ attr_accessor request_mapping_template: ::String
1181
+ attr_accessor response_mapping_template: ::String
1182
+ attr_accessor kind: ("UNIT" | "PIPELINE")
1183
+ attr_accessor pipeline_config: Types::PipelineConfig
1184
+ attr_accessor sync_config: Types::SyncConfig
1185
+ attr_accessor caching_config: Types::CachingConfig
1186
+ attr_accessor max_batch_size: ::Integer
1187
+ attr_accessor runtime: Types::AppSyncRuntime
1188
+ attr_accessor code: ::String
1189
+ SENSITIVE: []
1190
+ end
1191
+
1192
+ class UpdateResolverResponse
1193
+ attr_accessor resolver: Types::Resolver
1194
+ SENSITIVE: []
1195
+ end
1196
+
1197
+ class UpdateSourceApiAssociationRequest
1198
+ attr_accessor association_id: ::String
1199
+ attr_accessor merged_api_identifier: ::String
1200
+ attr_accessor description: ::String
1201
+ attr_accessor source_api_association_config: Types::SourceApiAssociationConfig
1202
+ SENSITIVE: []
1203
+ end
1204
+
1205
+ class UpdateSourceApiAssociationResponse
1206
+ attr_accessor source_api_association: Types::SourceApiAssociation
1207
+ SENSITIVE: []
1208
+ end
1209
+
1210
+ class UpdateTypeRequest
1211
+ attr_accessor api_id: ::String
1212
+ attr_accessor type_name: ::String
1213
+ attr_accessor definition: ::String
1214
+ attr_accessor format: ("SDL" | "JSON")
1215
+ SENSITIVE: []
1216
+ end
1217
+
1218
+ class UpdateTypeResponse
1219
+ attr_accessor type: Types::Type
1220
+ SENSITIVE: []
1221
+ end
1222
+
1223
+ class UserPoolConfig
1224
+ attr_accessor user_pool_id: ::String
1225
+ attr_accessor aws_region: ::String
1226
+ attr_accessor default_action: ("ALLOW" | "DENY")
1227
+ attr_accessor app_id_client_regex: ::String
1228
+ SENSITIVE: []
1229
+ end
1230
+ end
1231
+ end