aws-sdk-entityresolution 1.5.0 → 1.7.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,829 @@
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::EntityResolution
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AddPolicyStatementInput
17
+ attr_accessor action: ::Array[::String]
18
+ attr_accessor arn: ::String
19
+ attr_accessor condition: ::String
20
+ attr_accessor effect: ("Allow" | "Deny")
21
+ attr_accessor principal: ::Array[::String]
22
+ attr_accessor statement_id: ::String
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class AddPolicyStatementOutput
27
+ attr_accessor arn: ::String
28
+ attr_accessor policy: ::String
29
+ attr_accessor token: ::String
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class ConflictException
34
+ attr_accessor message: ::String
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class CreateIdMappingWorkflowInput
39
+ attr_accessor description: ::String
40
+ attr_accessor id_mapping_techniques: Types::IdMappingTechniques
41
+ attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
42
+ attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
43
+ attr_accessor role_arn: ::String
44
+ attr_accessor tags: ::Hash[::String, ::String]
45
+ attr_accessor workflow_name: ::String
46
+ SENSITIVE: []
47
+ end
48
+
49
+ class CreateIdMappingWorkflowOutput
50
+ attr_accessor description: ::String
51
+ attr_accessor id_mapping_techniques: Types::IdMappingTechniques
52
+ attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
53
+ attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
54
+ attr_accessor role_arn: ::String
55
+ attr_accessor workflow_arn: ::String
56
+ attr_accessor workflow_name: ::String
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class CreateIdNamespaceInput
61
+ attr_accessor description: ::String
62
+ attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowProperties]
63
+ attr_accessor id_namespace_name: ::String
64
+ attr_accessor input_source_config: ::Array[Types::IdNamespaceInputSource]
65
+ attr_accessor role_arn: ::String
66
+ attr_accessor tags: ::Hash[::String, ::String]
67
+ attr_accessor type: ("SOURCE" | "TARGET")
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class CreateIdNamespaceOutput
72
+ attr_accessor created_at: ::Time
73
+ attr_accessor description: ::String
74
+ attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowProperties]
75
+ attr_accessor id_namespace_arn: ::String
76
+ attr_accessor id_namespace_name: ::String
77
+ attr_accessor input_source_config: ::Array[Types::IdNamespaceInputSource]
78
+ attr_accessor role_arn: ::String
79
+ attr_accessor tags: ::Hash[::String, ::String]
80
+ attr_accessor type: ("SOURCE" | "TARGET")
81
+ attr_accessor updated_at: ::Time
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class CreateMatchingWorkflowInput
86
+ attr_accessor description: ::String
87
+ attr_accessor incremental_run_config: Types::IncrementalRunConfig
88
+ attr_accessor input_source_config: ::Array[Types::InputSource]
89
+ attr_accessor output_source_config: ::Array[Types::OutputSource]
90
+ attr_accessor resolution_techniques: Types::ResolutionTechniques
91
+ attr_accessor role_arn: ::String
92
+ attr_accessor tags: ::Hash[::String, ::String]
93
+ attr_accessor workflow_name: ::String
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class CreateMatchingWorkflowOutput
98
+ attr_accessor description: ::String
99
+ attr_accessor incremental_run_config: Types::IncrementalRunConfig
100
+ attr_accessor input_source_config: ::Array[Types::InputSource]
101
+ attr_accessor output_source_config: ::Array[Types::OutputSource]
102
+ attr_accessor resolution_techniques: Types::ResolutionTechniques
103
+ attr_accessor role_arn: ::String
104
+ attr_accessor workflow_arn: ::String
105
+ attr_accessor workflow_name: ::String
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class CreateSchemaMappingInput
110
+ attr_accessor description: ::String
111
+ attr_accessor mapped_input_fields: ::Array[Types::SchemaInputAttribute]
112
+ attr_accessor schema_name: ::String
113
+ attr_accessor tags: ::Hash[::String, ::String]
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class CreateSchemaMappingOutput
118
+ attr_accessor description: ::String
119
+ attr_accessor mapped_input_fields: ::Array[Types::SchemaInputAttribute]
120
+ attr_accessor schema_arn: ::String
121
+ attr_accessor schema_name: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class DeleteIdMappingWorkflowInput
126
+ attr_accessor workflow_name: ::String
127
+ SENSITIVE: []
128
+ end
129
+
130
+ class DeleteIdMappingWorkflowOutput
131
+ attr_accessor message: ::String
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class DeleteIdNamespaceInput
136
+ attr_accessor id_namespace_name: ::String
137
+ SENSITIVE: []
138
+ end
139
+
140
+ class DeleteIdNamespaceOutput
141
+ attr_accessor message: ::String
142
+ SENSITIVE: []
143
+ end
144
+
145
+ class DeleteMatchingWorkflowInput
146
+ attr_accessor workflow_name: ::String
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class DeleteMatchingWorkflowOutput
151
+ attr_accessor message: ::String
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class DeletePolicyStatementInput
156
+ attr_accessor arn: ::String
157
+ attr_accessor statement_id: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class DeletePolicyStatementOutput
162
+ attr_accessor arn: ::String
163
+ attr_accessor policy: ::String
164
+ attr_accessor token: ::String
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class DeleteSchemaMappingInput
169
+ attr_accessor schema_name: ::String
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class DeleteSchemaMappingOutput
174
+ attr_accessor message: ::String
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class ErrorDetails
179
+ attr_accessor error_message: ::String
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class ExceedsLimitException
184
+ attr_accessor message: ::String
185
+ attr_accessor quota_name: ::String
186
+ attr_accessor quota_value: ::Integer
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class GetIdMappingJobInput
191
+ attr_accessor job_id: ::String
192
+ attr_accessor workflow_name: ::String
193
+ SENSITIVE: []
194
+ end
195
+
196
+ class GetIdMappingJobOutput
197
+ attr_accessor end_time: ::Time
198
+ attr_accessor error_details: Types::ErrorDetails
199
+ attr_accessor job_id: ::String
200
+ attr_accessor metrics: Types::IdMappingJobMetrics
201
+ attr_accessor output_source_config: ::Array[Types::IdMappingJobOutputSource]
202
+ attr_accessor start_time: ::Time
203
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "QUEUED")
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class GetIdMappingWorkflowInput
208
+ attr_accessor workflow_name: ::String
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class GetIdMappingWorkflowOutput
213
+ attr_accessor created_at: ::Time
214
+ attr_accessor description: ::String
215
+ attr_accessor id_mapping_techniques: Types::IdMappingTechniques
216
+ attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
217
+ attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
218
+ attr_accessor role_arn: ::String
219
+ attr_accessor tags: ::Hash[::String, ::String]
220
+ attr_accessor updated_at: ::Time
221
+ attr_accessor workflow_arn: ::String
222
+ attr_accessor workflow_name: ::String
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class GetIdNamespaceInput
227
+ attr_accessor id_namespace_name: ::String
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class GetIdNamespaceOutput
232
+ attr_accessor created_at: ::Time
233
+ attr_accessor description: ::String
234
+ attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowProperties]
235
+ attr_accessor id_namespace_arn: ::String
236
+ attr_accessor id_namespace_name: ::String
237
+ attr_accessor input_source_config: ::Array[Types::IdNamespaceInputSource]
238
+ attr_accessor role_arn: ::String
239
+ attr_accessor tags: ::Hash[::String, ::String]
240
+ attr_accessor type: ("SOURCE" | "TARGET")
241
+ attr_accessor updated_at: ::Time
242
+ SENSITIVE: []
243
+ end
244
+
245
+ class GetMatchIdInput
246
+ attr_accessor apply_normalization: bool
247
+ attr_accessor record: ::Hash[::String, ::String]
248
+ attr_accessor workflow_name: ::String
249
+ SENSITIVE: [:record]
250
+ end
251
+
252
+ class GetMatchIdOutput
253
+ attr_accessor match_id: ::String
254
+ attr_accessor match_rule: ::String
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class GetMatchingJobInput
259
+ attr_accessor job_id: ::String
260
+ attr_accessor workflow_name: ::String
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class GetMatchingJobOutput
265
+ attr_accessor end_time: ::Time
266
+ attr_accessor error_details: Types::ErrorDetails
267
+ attr_accessor job_id: ::String
268
+ attr_accessor metrics: Types::JobMetrics
269
+ attr_accessor output_source_config: ::Array[Types::JobOutputSource]
270
+ attr_accessor start_time: ::Time
271
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "QUEUED")
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class GetMatchingWorkflowInput
276
+ attr_accessor workflow_name: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class GetMatchingWorkflowOutput
281
+ attr_accessor created_at: ::Time
282
+ attr_accessor description: ::String
283
+ attr_accessor incremental_run_config: Types::IncrementalRunConfig
284
+ attr_accessor input_source_config: ::Array[Types::InputSource]
285
+ attr_accessor output_source_config: ::Array[Types::OutputSource]
286
+ attr_accessor resolution_techniques: Types::ResolutionTechniques
287
+ attr_accessor role_arn: ::String
288
+ attr_accessor tags: ::Hash[::String, ::String]
289
+ attr_accessor updated_at: ::Time
290
+ attr_accessor workflow_arn: ::String
291
+ attr_accessor workflow_name: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class GetPolicyInput
296
+ attr_accessor arn: ::String
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class GetPolicyOutput
301
+ attr_accessor arn: ::String
302
+ attr_accessor policy: ::String
303
+ attr_accessor token: ::String
304
+ SENSITIVE: []
305
+ end
306
+
307
+ class GetProviderServiceInput
308
+ attr_accessor provider_name: ::String
309
+ attr_accessor provider_service_name: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class GetProviderServiceOutput
314
+ attr_accessor anonymized_output: bool
315
+ attr_accessor provider_component_schema: Types::ProviderComponentSchema
316
+ attr_accessor provider_configuration_definition: untyped
317
+ attr_accessor provider_endpoint_configuration: Types::ProviderEndpointConfiguration
318
+ attr_accessor provider_entity_output_definition: untyped
319
+ attr_accessor provider_id_name_space_configuration: Types::ProviderIdNameSpaceConfiguration
320
+ attr_accessor provider_intermediate_data_access_configuration: Types::ProviderIntermediateDataAccessConfiguration
321
+ attr_accessor provider_job_configuration: untyped
322
+ attr_accessor provider_name: ::String
323
+ attr_accessor provider_service_arn: ::String
324
+ attr_accessor provider_service_display_name: ::String
325
+ attr_accessor provider_service_name: ::String
326
+ attr_accessor provider_service_type: ("ASSIGNMENT" | "ID_MAPPING")
327
+ SENSITIVE: []
328
+ end
329
+
330
+ class GetSchemaMappingInput
331
+ attr_accessor schema_name: ::String
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class GetSchemaMappingOutput
336
+ attr_accessor created_at: ::Time
337
+ attr_accessor description: ::String
338
+ attr_accessor has_workflows: bool
339
+ attr_accessor mapped_input_fields: ::Array[Types::SchemaInputAttribute]
340
+ attr_accessor schema_arn: ::String
341
+ attr_accessor schema_name: ::String
342
+ attr_accessor tags: ::Hash[::String, ::String]
343
+ attr_accessor updated_at: ::Time
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class IdMappingJobMetrics
348
+ attr_accessor input_records: ::Integer
349
+ attr_accessor records_not_processed: ::Integer
350
+ attr_accessor total_records_processed: ::Integer
351
+ SENSITIVE: []
352
+ end
353
+
354
+ class IdMappingJobOutputSource
355
+ attr_accessor kms_arn: ::String
356
+ attr_accessor output_s3_path: ::String
357
+ attr_accessor role_arn: ::String
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class IdMappingTechniques
362
+ attr_accessor id_mapping_type: ("PROVIDER")
363
+ attr_accessor provider_properties: Types::ProviderProperties
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class IdMappingWorkflowInputSource
368
+ attr_accessor input_source_arn: ::String
369
+ attr_accessor schema_name: ::String
370
+ attr_accessor type: ("SOURCE" | "TARGET")
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class IdMappingWorkflowOutputSource
375
+ attr_accessor kms_arn: ::String
376
+ attr_accessor output_s3_path: ::String
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class IdMappingWorkflowSummary
381
+ attr_accessor created_at: ::Time
382
+ attr_accessor updated_at: ::Time
383
+ attr_accessor workflow_arn: ::String
384
+ attr_accessor workflow_name: ::String
385
+ SENSITIVE: []
386
+ end
387
+
388
+ class IdNamespaceIdMappingWorkflowProperties
389
+ attr_accessor id_mapping_type: ("PROVIDER")
390
+ attr_accessor provider_properties: Types::NamespaceProviderProperties
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class IdNamespaceInputSource
395
+ attr_accessor input_source_arn: ::String
396
+ attr_accessor schema_name: ::String
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class IdNamespaceSummary
401
+ attr_accessor created_at: ::Time
402
+ attr_accessor description: ::String
403
+ attr_accessor id_namespace_arn: ::String
404
+ attr_accessor id_namespace_name: ::String
405
+ attr_accessor type: ("SOURCE" | "TARGET")
406
+ attr_accessor updated_at: ::Time
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class IncrementalRunConfig
411
+ attr_accessor incremental_run_type: ("IMMEDIATE")
412
+ SENSITIVE: []
413
+ end
414
+
415
+ class InputSource
416
+ attr_accessor apply_normalization: bool
417
+ attr_accessor input_source_arn: ::String
418
+ attr_accessor schema_name: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class IntermediateSourceConfiguration
423
+ attr_accessor intermediate_s3_path: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class InternalServerException
428
+ attr_accessor message: ::String
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class JobMetrics
433
+ attr_accessor input_records: ::Integer
434
+ attr_accessor match_i_ds: ::Integer
435
+ attr_accessor records_not_processed: ::Integer
436
+ attr_accessor total_records_processed: ::Integer
437
+ SENSITIVE: []
438
+ end
439
+
440
+ class JobOutputSource
441
+ attr_accessor kms_arn: ::String
442
+ attr_accessor output_s3_path: ::String
443
+ attr_accessor role_arn: ::String
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class JobSummary
448
+ attr_accessor end_time: ::Time
449
+ attr_accessor job_id: ::String
450
+ attr_accessor start_time: ::Time
451
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "QUEUED")
452
+ SENSITIVE: []
453
+ end
454
+
455
+ class ListIdMappingJobsInput
456
+ attr_accessor max_results: ::Integer
457
+ attr_accessor next_token: ::String
458
+ attr_accessor workflow_name: ::String
459
+ SENSITIVE: []
460
+ end
461
+
462
+ class ListIdMappingJobsOutput
463
+ attr_accessor jobs: ::Array[Types::JobSummary]
464
+ attr_accessor next_token: ::String
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class ListIdMappingWorkflowsInput
469
+ attr_accessor max_results: ::Integer
470
+ attr_accessor next_token: ::String
471
+ SENSITIVE: []
472
+ end
473
+
474
+ class ListIdMappingWorkflowsOutput
475
+ attr_accessor next_token: ::String
476
+ attr_accessor workflow_summaries: ::Array[Types::IdMappingWorkflowSummary]
477
+ SENSITIVE: []
478
+ end
479
+
480
+ class ListIdNamespacesInput
481
+ attr_accessor max_results: ::Integer
482
+ attr_accessor next_token: ::String
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class ListIdNamespacesOutput
487
+ attr_accessor id_namespace_summaries: ::Array[Types::IdNamespaceSummary]
488
+ attr_accessor next_token: ::String
489
+ SENSITIVE: []
490
+ end
491
+
492
+ class ListMatchingJobsInput
493
+ attr_accessor max_results: ::Integer
494
+ attr_accessor next_token: ::String
495
+ attr_accessor workflow_name: ::String
496
+ SENSITIVE: []
497
+ end
498
+
499
+ class ListMatchingJobsOutput
500
+ attr_accessor jobs: ::Array[Types::JobSummary]
501
+ attr_accessor next_token: ::String
502
+ SENSITIVE: []
503
+ end
504
+
505
+ class ListMatchingWorkflowsInput
506
+ attr_accessor max_results: ::Integer
507
+ attr_accessor next_token: ::String
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class ListMatchingWorkflowsOutput
512
+ attr_accessor next_token: ::String
513
+ attr_accessor workflow_summaries: ::Array[Types::MatchingWorkflowSummary]
514
+ SENSITIVE: []
515
+ end
516
+
517
+ class ListProviderServicesInput
518
+ attr_accessor max_results: ::Integer
519
+ attr_accessor next_token: ::String
520
+ attr_accessor provider_name: ::String
521
+ SENSITIVE: []
522
+ end
523
+
524
+ class ListProviderServicesOutput
525
+ attr_accessor next_token: ::String
526
+ attr_accessor provider_service_summaries: ::Array[Types::ProviderServiceSummary]
527
+ SENSITIVE: []
528
+ end
529
+
530
+ class ListSchemaMappingsInput
531
+ attr_accessor max_results: ::Integer
532
+ attr_accessor next_token: ::String
533
+ SENSITIVE: []
534
+ end
535
+
536
+ class ListSchemaMappingsOutput
537
+ attr_accessor next_token: ::String
538
+ attr_accessor schema_list: ::Array[Types::SchemaMappingSummary]
539
+ SENSITIVE: []
540
+ end
541
+
542
+ class ListTagsForResourceInput
543
+ attr_accessor resource_arn: ::String
544
+ SENSITIVE: []
545
+ end
546
+
547
+ class ListTagsForResourceOutput
548
+ attr_accessor tags: ::Hash[::String, ::String]
549
+ SENSITIVE: []
550
+ end
551
+
552
+ class MatchingWorkflowSummary
553
+ attr_accessor created_at: ::Time
554
+ attr_accessor resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER")
555
+ attr_accessor updated_at: ::Time
556
+ attr_accessor workflow_arn: ::String
557
+ attr_accessor workflow_name: ::String
558
+ SENSITIVE: []
559
+ end
560
+
561
+ class NamespaceProviderProperties
562
+ attr_accessor provider_configuration: untyped
563
+ attr_accessor provider_service_arn: ::String
564
+ SENSITIVE: []
565
+ end
566
+
567
+ class OutputAttribute
568
+ attr_accessor hashed: bool
569
+ attr_accessor name: ::String
570
+ SENSITIVE: []
571
+ end
572
+
573
+ class OutputSource
574
+ attr_accessor kms_arn: ::String
575
+ attr_accessor apply_normalization: bool
576
+ attr_accessor output: ::Array[Types::OutputAttribute]
577
+ attr_accessor output_s3_path: ::String
578
+ SENSITIVE: []
579
+ end
580
+
581
+ class ProviderComponentSchema
582
+ attr_accessor provider_schema_attributes: ::Array[Types::ProviderSchemaAttribute]
583
+ attr_accessor schemas: ::Array[::Array[::String]]
584
+ SENSITIVE: []
585
+ end
586
+
587
+ class ProviderEndpointConfiguration
588
+ attr_accessor marketplace_configuration: Types::ProviderMarketplaceConfiguration
589
+ attr_accessor unknown: untyped
590
+ SENSITIVE: []
591
+
592
+ class MarketplaceConfiguration < ProviderEndpointConfiguration
593
+ end
594
+ class Unknown < ProviderEndpointConfiguration
595
+ end
596
+ end
597
+
598
+ class ProviderIdNameSpaceConfiguration
599
+ attr_accessor description: ::String
600
+ attr_accessor provider_source_configuration_definition: untyped
601
+ attr_accessor provider_target_configuration_definition: untyped
602
+ SENSITIVE: []
603
+ end
604
+
605
+ class ProviderIntermediateDataAccessConfiguration
606
+ attr_accessor aws_account_ids: ::Array[::String]
607
+ attr_accessor required_bucket_actions: ::Array[::String]
608
+ SENSITIVE: []
609
+ end
610
+
611
+ class ProviderMarketplaceConfiguration
612
+ attr_accessor asset_id: ::String
613
+ attr_accessor data_set_id: ::String
614
+ attr_accessor listing_id: ::String
615
+ attr_accessor revision_id: ::String
616
+ SENSITIVE: []
617
+ end
618
+
619
+ class ProviderProperties
620
+ attr_accessor intermediate_source_configuration: Types::IntermediateSourceConfiguration
621
+ attr_accessor provider_configuration: untyped
622
+ attr_accessor provider_service_arn: ::String
623
+ SENSITIVE: []
624
+ end
625
+
626
+ class ProviderSchemaAttribute
627
+ attr_accessor field_name: ::String
628
+ attr_accessor hashing: bool
629
+ attr_accessor sub_type: ::String
630
+ attr_accessor type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
631
+ SENSITIVE: []
632
+ end
633
+
634
+ class ProviderServiceSummary
635
+ attr_accessor provider_name: ::String
636
+ attr_accessor provider_service_arn: ::String
637
+ attr_accessor provider_service_display_name: ::String
638
+ attr_accessor provider_service_name: ::String
639
+ attr_accessor provider_service_type: ("ASSIGNMENT" | "ID_MAPPING")
640
+ SENSITIVE: []
641
+ end
642
+
643
+ class PutPolicyInput
644
+ attr_accessor arn: ::String
645
+ attr_accessor policy: ::String
646
+ attr_accessor token: ::String
647
+ SENSITIVE: []
648
+ end
649
+
650
+ class PutPolicyOutput
651
+ attr_accessor arn: ::String
652
+ attr_accessor policy: ::String
653
+ attr_accessor token: ::String
654
+ SENSITIVE: []
655
+ end
656
+
657
+ class ResolutionTechniques
658
+ attr_accessor provider_properties: Types::ProviderProperties
659
+ attr_accessor resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER")
660
+ attr_accessor rule_based_properties: Types::RuleBasedProperties
661
+ SENSITIVE: []
662
+ end
663
+
664
+ class ResourceNotFoundException
665
+ attr_accessor message: ::String
666
+ SENSITIVE: []
667
+ end
668
+
669
+ class Rule
670
+ attr_accessor matching_keys: ::Array[::String]
671
+ attr_accessor rule_name: ::String
672
+ SENSITIVE: []
673
+ end
674
+
675
+ class RuleBasedProperties
676
+ attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
677
+ attr_accessor rules: ::Array[Types::Rule]
678
+ SENSITIVE: []
679
+ end
680
+
681
+ class SchemaInputAttribute
682
+ attr_accessor field_name: ::String
683
+ attr_accessor group_name: ::String
684
+ attr_accessor match_key: ::String
685
+ attr_accessor sub_type: ::String
686
+ attr_accessor type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class SchemaMappingSummary
691
+ attr_accessor created_at: ::Time
692
+ attr_accessor has_workflows: bool
693
+ attr_accessor schema_arn: ::String
694
+ attr_accessor schema_name: ::String
695
+ attr_accessor updated_at: ::Time
696
+ SENSITIVE: []
697
+ end
698
+
699
+ class StartIdMappingJobInput
700
+ attr_accessor output_source_config: ::Array[Types::IdMappingJobOutputSource]
701
+ attr_accessor workflow_name: ::String
702
+ SENSITIVE: []
703
+ end
704
+
705
+ class StartIdMappingJobOutput
706
+ attr_accessor job_id: ::String
707
+ attr_accessor output_source_config: ::Array[Types::IdMappingJobOutputSource]
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class StartMatchingJobInput
712
+ attr_accessor workflow_name: ::String
713
+ SENSITIVE: []
714
+ end
715
+
716
+ class StartMatchingJobOutput
717
+ attr_accessor job_id: ::String
718
+ SENSITIVE: []
719
+ end
720
+
721
+ class TagResourceInput
722
+ attr_accessor resource_arn: ::String
723
+ attr_accessor tags: ::Hash[::String, ::String]
724
+ SENSITIVE: []
725
+ end
726
+
727
+ class TagResourceOutput < Aws::EmptyStructure
728
+ end
729
+
730
+ class ThrottlingException
731
+ attr_accessor message: ::String
732
+ SENSITIVE: []
733
+ end
734
+
735
+ class UntagResourceInput
736
+ attr_accessor resource_arn: ::String
737
+ attr_accessor tag_keys: ::Array[::String]
738
+ SENSITIVE: []
739
+ end
740
+
741
+ class UntagResourceOutput < Aws::EmptyStructure
742
+ end
743
+
744
+ class UpdateIdMappingWorkflowInput
745
+ attr_accessor description: ::String
746
+ attr_accessor id_mapping_techniques: Types::IdMappingTechniques
747
+ attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
748
+ attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
749
+ attr_accessor role_arn: ::String
750
+ attr_accessor workflow_name: ::String
751
+ SENSITIVE: []
752
+ end
753
+
754
+ class UpdateIdMappingWorkflowOutput
755
+ attr_accessor description: ::String
756
+ attr_accessor id_mapping_techniques: Types::IdMappingTechniques
757
+ attr_accessor input_source_config: ::Array[Types::IdMappingWorkflowInputSource]
758
+ attr_accessor output_source_config: ::Array[Types::IdMappingWorkflowOutputSource]
759
+ attr_accessor role_arn: ::String
760
+ attr_accessor workflow_arn: ::String
761
+ attr_accessor workflow_name: ::String
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class UpdateIdNamespaceInput
766
+ attr_accessor description: ::String
767
+ attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowProperties]
768
+ attr_accessor id_namespace_name: ::String
769
+ attr_accessor input_source_config: ::Array[Types::IdNamespaceInputSource]
770
+ attr_accessor role_arn: ::String
771
+ SENSITIVE: []
772
+ end
773
+
774
+ class UpdateIdNamespaceOutput
775
+ attr_accessor created_at: ::Time
776
+ attr_accessor description: ::String
777
+ attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowProperties]
778
+ attr_accessor id_namespace_arn: ::String
779
+ attr_accessor id_namespace_name: ::String
780
+ attr_accessor input_source_config: ::Array[Types::IdNamespaceInputSource]
781
+ attr_accessor role_arn: ::String
782
+ attr_accessor type: ("SOURCE" | "TARGET")
783
+ attr_accessor updated_at: ::Time
784
+ SENSITIVE: []
785
+ end
786
+
787
+ class UpdateMatchingWorkflowInput
788
+ attr_accessor description: ::String
789
+ attr_accessor incremental_run_config: Types::IncrementalRunConfig
790
+ attr_accessor input_source_config: ::Array[Types::InputSource]
791
+ attr_accessor output_source_config: ::Array[Types::OutputSource]
792
+ attr_accessor resolution_techniques: Types::ResolutionTechniques
793
+ attr_accessor role_arn: ::String
794
+ attr_accessor workflow_name: ::String
795
+ SENSITIVE: []
796
+ end
797
+
798
+ class UpdateMatchingWorkflowOutput
799
+ attr_accessor description: ::String
800
+ attr_accessor incremental_run_config: Types::IncrementalRunConfig
801
+ attr_accessor input_source_config: ::Array[Types::InputSource]
802
+ attr_accessor output_source_config: ::Array[Types::OutputSource]
803
+ attr_accessor resolution_techniques: Types::ResolutionTechniques
804
+ attr_accessor role_arn: ::String
805
+ attr_accessor workflow_name: ::String
806
+ SENSITIVE: []
807
+ end
808
+
809
+ class UpdateSchemaMappingInput
810
+ attr_accessor description: ::String
811
+ attr_accessor mapped_input_fields: ::Array[Types::SchemaInputAttribute]
812
+ attr_accessor schema_name: ::String
813
+ SENSITIVE: []
814
+ end
815
+
816
+ class UpdateSchemaMappingOutput
817
+ attr_accessor description: ::String
818
+ attr_accessor mapped_input_fields: ::Array[Types::SchemaInputAttribute]
819
+ attr_accessor schema_arn: ::String
820
+ attr_accessor schema_name: ::String
821
+ SENSITIVE: []
822
+ end
823
+
824
+ class ValidationException
825
+ attr_accessor message: ::String
826
+ SENSITIVE: []
827
+ end
828
+ end
829
+ end