aws-sdk-entityresolution 1.26.0 → 1.28.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.
@@ -23,20 +23,14 @@ module Aws::EntityResolution
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
- # @!attribute [rw] action
27
- # The action that the principal can use on the resource.
28
- #
29
- # For example, `entityresolution:GetIdMappingJob`,
30
- # `entityresolution:GetMatchingJob`.
31
- # @return [Array<String>]
32
- #
33
26
  # @!attribute [rw] arn
34
27
  # The Amazon Resource Name (ARN) of the resource that will be accessed
35
28
  # by the principal.
36
29
  # @return [String]
37
30
  #
38
- # @!attribute [rw] condition
39
- # A set of condition keys that you can use in key policies.
31
+ # @!attribute [rw] statement_id
32
+ # A statement identifier that differentiates the statement from others
33
+ # in the same policy.
40
34
  # @return [String]
41
35
  #
42
36
  # @!attribute [rw] effect
@@ -49,25 +43,31 @@ module Aws::EntityResolution
49
43
  # operation.
50
44
  # @return [String]
51
45
  #
46
+ # @!attribute [rw] action
47
+ # The action that the principal can use on the resource.
48
+ #
49
+ # For example, `entityresolution:GetIdMappingJob`,
50
+ # `entityresolution:GetMatchingJob`.
51
+ # @return [Array<String>]
52
+ #
52
53
  # @!attribute [rw] principal
53
54
  # The Amazon Web Services service or Amazon Web Services account that
54
55
  # can access the resource defined as ARN.
55
56
  # @return [Array<String>]
56
57
  #
57
- # @!attribute [rw] statement_id
58
- # A statement identifier that differentiates the statement from others
59
- # in the same policy.
58
+ # @!attribute [rw] condition
59
+ # A set of condition keys that you can use in key policies.
60
60
  # @return [String]
61
61
  #
62
62
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/AddPolicyStatementInput AWS API Documentation
63
63
  #
64
64
  class AddPolicyStatementInput < Struct.new(
65
- :action,
66
65
  :arn,
67
- :condition,
66
+ :statement_id,
68
67
  :effect,
68
+ :action,
69
69
  :principal,
70
- :statement_id)
70
+ :condition)
71
71
  SENSITIVE = []
72
72
  include Aws::Structure
73
73
  end
@@ -77,24 +77,28 @@ module Aws::EntityResolution
77
77
  # by the principal.
78
78
  # @return [String]
79
79
  #
80
- # @!attribute [rw] policy
81
- # The resource-based policy.
82
- # @return [String]
83
- #
84
80
  # @!attribute [rw] token
85
81
  # A unique identifier for the current revision of the policy.
86
82
  # @return [String]
87
83
  #
84
+ # @!attribute [rw] policy
85
+ # The resource-based policy.
86
+ # @return [String]
87
+ #
88
88
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/AddPolicyStatementOutput AWS API Documentation
89
89
  #
90
90
  class AddPolicyStatementOutput < Struct.new(
91
91
  :arn,
92
- :policy,
93
- :token)
92
+ :token,
93
+ :policy)
94
94
  SENSITIVE = []
95
95
  include Aws::Structure
96
96
  end
97
97
 
98
+ # @!attribute [rw] workflow_name
99
+ # The name of the workflow.
100
+ # @return [String]
101
+ #
98
102
  # @!attribute [rw] input_source
99
103
  # The input source for the batch delete unique ID operation.
100
104
  # @return [String]
@@ -103,20 +107,24 @@ module Aws::EntityResolution
103
107
  # The unique IDs to delete.
104
108
  # @return [Array<String>]
105
109
  #
106
- # @!attribute [rw] workflow_name
107
- # The name of the workflow.
108
- # @return [String]
109
- #
110
110
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/BatchDeleteUniqueIdInput AWS API Documentation
111
111
  #
112
112
  class BatchDeleteUniqueIdInput < Struct.new(
113
+ :workflow_name,
113
114
  :input_source,
114
- :unique_ids,
115
- :workflow_name)
115
+ :unique_ids)
116
116
  SENSITIVE = []
117
117
  include Aws::Structure
118
118
  end
119
119
 
120
+ # @!attribute [rw] status
121
+ # The status of the batch delete unique ID operation.
122
+ # @return [String]
123
+ #
124
+ # @!attribute [rw] errors
125
+ # The errors from deleting multiple unique IDs.
126
+ # @return [Array<Types::DeleteUniqueIdError>]
127
+ #
120
128
  # @!attribute [rw] deleted
121
129
  # The unique IDs that were deleted.
122
130
  # @return [Array<Types::DeletedUniqueId>]
@@ -125,21 +133,13 @@ module Aws::EntityResolution
125
133
  # The unique IDs that were disconnected.
126
134
  # @return [Array<String>]
127
135
  #
128
- # @!attribute [rw] errors
129
- # The errors from deleting multiple unique IDs.
130
- # @return [Array<Types::DeleteUniqueIdError>]
131
- #
132
- # @!attribute [rw] status
133
- # The status of the batch delete unique ID operation.
134
- # @return [String]
135
- #
136
136
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/BatchDeleteUniqueIdOutput AWS API Documentation
137
137
  #
138
138
  class BatchDeleteUniqueIdOutput < Struct.new(
139
- :deleted,
140
- :disconnected_unique_ids,
139
+ :status,
141
140
  :errors,
142
- :status)
141
+ :deleted,
142
+ :disconnected_unique_ids)
143
143
  SENSITIVE = []
144
144
  include Aws::Structure
145
145
  end
@@ -159,15 +159,15 @@ module Aws::EntityResolution
159
159
  include Aws::Structure
160
160
  end
161
161
 
162
+ # @!attribute [rw] workflow_name
163
+ # The name of the workflow. There can't be multiple
164
+ # `IdMappingWorkflows` with the same name.
165
+ # @return [String]
166
+ #
162
167
  # @!attribute [rw] description
163
168
  # A description of the workflow.
164
169
  # @return [String]
165
170
  #
166
- # @!attribute [rw] id_mapping_techniques
167
- # An object which defines the ID mapping technique and any additional
168
- # configurations.
169
- # @return [Types::IdMappingTechniques]
170
- #
171
171
  # @!attribute [rw] input_source_config
172
172
  # A list of `InputSource` objects, which have the fields
173
173
  # `InputSourceARN` and `SchemaName`.
@@ -178,6 +178,11 @@ module Aws::EntityResolution
178
178
  # contains fields `OutputS3Path` and `Output`.
179
179
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
180
180
  #
181
+ # @!attribute [rw] id_mapping_techniques
182
+ # An object which defines the ID mapping technique and any additional
183
+ # configurations.
184
+ # @return [Types::IdMappingTechniques]
185
+ #
181
186
  # @!attribute [rw] role_arn
182
187
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
183
188
  # assumes this role to create resources on your behalf as part of
@@ -189,34 +194,33 @@ module Aws::EntityResolution
189
194
  # resource.
190
195
  # @return [Hash<String,String>]
191
196
  #
192
- # @!attribute [rw] workflow_name
193
- # The name of the workflow. There can't be multiple
194
- # `IdMappingWorkflows` with the same name.
195
- # @return [String]
196
- #
197
197
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdMappingWorkflowInput AWS API Documentation
198
198
  #
199
199
  class CreateIdMappingWorkflowInput < Struct.new(
200
+ :workflow_name,
200
201
  :description,
201
- :id_mapping_techniques,
202
202
  :input_source_config,
203
203
  :output_source_config,
204
+ :id_mapping_techniques,
204
205
  :role_arn,
205
- :tags,
206
- :workflow_name)
206
+ :tags)
207
207
  SENSITIVE = []
208
208
  include Aws::Structure
209
209
  end
210
210
 
211
+ # @!attribute [rw] workflow_name
212
+ # The name of the workflow.
213
+ # @return [String]
214
+ #
215
+ # @!attribute [rw] workflow_arn
216
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
217
+ # the `IDMappingWorkflow`.
218
+ # @return [String]
219
+ #
211
220
  # @!attribute [rw] description
212
221
  # A description of the workflow.
213
222
  # @return [String]
214
223
  #
215
- # @!attribute [rw] id_mapping_techniques
216
- # An object which defines the ID mapping technique and any additional
217
- # configurations.
218
- # @return [Types::IdMappingTechniques]
219
- #
220
224
  # @!attribute [rw] input_source_config
221
225
  # A list of `InputSource` objects, which have the fields
222
226
  # `InputSourceARN` and `SchemaName`.
@@ -227,52 +231,59 @@ module Aws::EntityResolution
227
231
  # contains fields `OutputS3Path` and `Output`.
228
232
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
229
233
  #
234
+ # @!attribute [rw] id_mapping_techniques
235
+ # An object which defines the ID mapping technique and any additional
236
+ # configurations.
237
+ # @return [Types::IdMappingTechniques]
238
+ #
230
239
  # @!attribute [rw] role_arn
231
240
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
232
241
  # assumes this role to create resources on your behalf as part of
233
242
  # workflow execution.
234
243
  # @return [String]
235
244
  #
236
- # @!attribute [rw] workflow_arn
237
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
238
- # the `IDMappingWorkflow`.
239
- # @return [String]
240
- #
241
- # @!attribute [rw] workflow_name
242
- # The name of the workflow.
243
- # @return [String]
244
- #
245
245
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdMappingWorkflowOutput AWS API Documentation
246
246
  #
247
247
  class CreateIdMappingWorkflowOutput < Struct.new(
248
+ :workflow_name,
249
+ :workflow_arn,
248
250
  :description,
249
- :id_mapping_techniques,
250
251
  :input_source_config,
251
252
  :output_source_config,
252
- :role_arn,
253
- :workflow_arn,
254
- :workflow_name)
253
+ :id_mapping_techniques,
254
+ :role_arn)
255
255
  SENSITIVE = []
256
256
  include Aws::Structure
257
257
  end
258
258
 
259
+ # @!attribute [rw] id_namespace_name
260
+ # The name of the ID namespace.
261
+ # @return [String]
262
+ #
259
263
  # @!attribute [rw] description
260
264
  # The description of the ID namespace.
261
265
  # @return [String]
262
266
  #
267
+ # @!attribute [rw] input_source_config
268
+ # A list of `InputSource` objects, which have the fields
269
+ # `InputSourceARN` and `SchemaName`.
270
+ # @return [Array<Types::IdNamespaceInputSource>]
271
+ #
263
272
  # @!attribute [rw] id_mapping_workflow_properties
264
273
  # Determines the properties of `IdMappingWorflow` where this
265
274
  # `IdNamespace` can be used as a `Source` or a `Target`.
266
275
  # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
267
276
  #
268
- # @!attribute [rw] id_namespace_name
269
- # The name of the ID namespace.
270
- # @return [String]
277
+ # @!attribute [rw] type
278
+ # The type of ID namespace. There are two types: `SOURCE` and
279
+ # `TARGET`.
271
280
  #
272
- # @!attribute [rw] input_source_config
273
- # A list of `InputSource` objects, which have the fields
274
- # `InputSourceARN` and `SchemaName`.
275
- # @return [Array<Types::IdNamespaceInputSource>]
281
+ # The `SOURCE` contains configurations for `sourceId` data that will
282
+ # be processed in an ID mapping workflow.
283
+ #
284
+ # The `TARGET` contains a configuration of `targetId` to which all
285
+ # `sourceIds` will resolve to.
286
+ # @return [String]
276
287
  #
277
288
  # @!attribute [rw] role_arn
278
289
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -285,50 +296,30 @@ module Aws::EntityResolution
285
296
  # resource.
286
297
  # @return [Hash<String,String>]
287
298
  #
288
- # @!attribute [rw] type
289
- # The type of ID namespace. There are two types: `SOURCE` and
290
- # `TARGET`.
291
- #
292
- # The `SOURCE` contains configurations for `sourceId` data that will
293
- # be processed in an ID mapping workflow.
294
- #
295
- # The `TARGET` contains a configuration of `targetId` to which all
296
- # `sourceIds` will resolve to.
297
- # @return [String]
298
- #
299
299
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdNamespaceInput AWS API Documentation
300
300
  #
301
301
  class CreateIdNamespaceInput < Struct.new(
302
- :description,
303
- :id_mapping_workflow_properties,
304
302
  :id_namespace_name,
303
+ :description,
305
304
  :input_source_config,
305
+ :id_mapping_workflow_properties,
306
+ :type,
306
307
  :role_arn,
307
- :tags,
308
- :type)
308
+ :tags)
309
309
  SENSITIVE = []
310
310
  include Aws::Structure
311
311
  end
312
312
 
313
- # @!attribute [rw] created_at
314
- # The timestamp of when the ID namespace was created.
315
- # @return [Time]
316
- #
317
- # @!attribute [rw] description
318
- # The description of the ID namespace.
313
+ # @!attribute [rw] id_namespace_name
314
+ # The name of the ID namespace.
319
315
  # @return [String]
320
316
  #
321
- # @!attribute [rw] id_mapping_workflow_properties
322
- # Determines the properties of `IdMappingWorkflow` where this
323
- # `IdNamespace` can be used as a `Source` or a `Target`.
324
- # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
325
- #
326
317
  # @!attribute [rw] id_namespace_arn
327
318
  # The Amazon Resource Name (ARN) of the ID namespace.
328
319
  # @return [String]
329
320
  #
330
- # @!attribute [rw] id_namespace_name
331
- # The name of the ID namespace.
321
+ # @!attribute [rw] description
322
+ # The description of the ID namespace.
332
323
  # @return [String]
333
324
  #
334
325
  # @!attribute [rw] input_source_config
@@ -336,16 +327,10 @@ module Aws::EntityResolution
336
327
  # `InputSourceARN` and `SchemaName`.
337
328
  # @return [Array<Types::IdNamespaceInputSource>]
338
329
  #
339
- # @!attribute [rw] role_arn
340
- # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
341
- # assumes this role to access the resources defined in
342
- # `inputSourceConfig` on your behalf as part of the workflow run.
343
- # @return [String]
344
- #
345
- # @!attribute [rw] tags
346
- # The tags used to organize, track, or control access for this
347
- # resource.
348
- # @return [Hash<String,String>]
330
+ # @!attribute [rw] id_mapping_workflow_properties
331
+ # Determines the properties of `IdMappingWorkflow` where this
332
+ # `IdNamespace` can be used as a `Source` or a `Target`.
333
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
349
334
  #
350
335
  # @!attribute [rw] type
351
336
  # The type of ID namespace. There are two types: `SOURCE` and
@@ -358,36 +343,51 @@ module Aws::EntityResolution
358
343
  # `sourceIds` will resolve to.
359
344
  # @return [String]
360
345
  #
346
+ # @!attribute [rw] role_arn
347
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
348
+ # assumes this role to access the resources defined in
349
+ # `inputSourceConfig` on your behalf as part of the workflow run.
350
+ # @return [String]
351
+ #
352
+ # @!attribute [rw] created_at
353
+ # The timestamp of when the ID namespace was created.
354
+ # @return [Time]
355
+ #
361
356
  # @!attribute [rw] updated_at
362
357
  # The timestamp of when the ID namespace was last updated.
363
358
  # @return [Time]
364
359
  #
360
+ # @!attribute [rw] tags
361
+ # The tags used to organize, track, or control access for this
362
+ # resource.
363
+ # @return [Hash<String,String>]
364
+ #
365
365
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdNamespaceOutput AWS API Documentation
366
366
  #
367
367
  class CreateIdNamespaceOutput < Struct.new(
368
- :created_at,
369
- :description,
370
- :id_mapping_workflow_properties,
371
- :id_namespace_arn,
372
368
  :id_namespace_name,
369
+ :id_namespace_arn,
370
+ :description,
373
371
  :input_source_config,
374
- :role_arn,
375
- :tags,
372
+ :id_mapping_workflow_properties,
376
373
  :type,
377
- :updated_at)
374
+ :role_arn,
375
+ :created_at,
376
+ :updated_at,
377
+ :tags)
378
378
  SENSITIVE = []
379
379
  include Aws::Structure
380
380
  end
381
381
 
382
+ # @!attribute [rw] workflow_name
383
+ # The name of the workflow. There can't be multiple
384
+ # `MatchingWorkflows` with the same name.
385
+ # @return [String]
386
+ #
382
387
  # @!attribute [rw] description
383
388
  # A description of the workflow.
384
389
  # @return [String]
385
390
  #
386
- # @!attribute [rw] incremental_run_config
387
- # An object which defines an incremental run type and has only
388
- # `incrementalRunType` as a field.
389
- # @return [Types::IncrementalRunConfig]
390
- #
391
391
  # @!attribute [rw] input_source_config
392
392
  # A list of `InputSource` objects, which have the fields
393
393
  # `InputSourceARN` and `SchemaName`.
@@ -403,6 +403,11 @@ module Aws::EntityResolution
403
403
  # `ruleBasedProperties`.
404
404
  # @return [Types::ResolutionTechniques]
405
405
  #
406
+ # @!attribute [rw] incremental_run_config
407
+ # An object which defines an incremental run type and has only
408
+ # `incrementalRunType` as a field.
409
+ # @return [Types::IncrementalRunConfig]
410
+ #
406
411
  # @!attribute [rw] role_arn
407
412
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
408
413
  # assumes this role to create resources on your behalf as part of
@@ -414,34 +419,33 @@ module Aws::EntityResolution
414
419
  # resource.
415
420
  # @return [Hash<String,String>]
416
421
  #
417
- # @!attribute [rw] workflow_name
418
- # The name of the workflow. There can't be multiple
419
- # `MatchingWorkflows` with the same name.
420
- # @return [String]
421
- #
422
422
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateMatchingWorkflowInput AWS API Documentation
423
423
  #
424
424
  class CreateMatchingWorkflowInput < Struct.new(
425
+ :workflow_name,
425
426
  :description,
426
- :incremental_run_config,
427
427
  :input_source_config,
428
428
  :output_source_config,
429
429
  :resolution_techniques,
430
+ :incremental_run_config,
430
431
  :role_arn,
431
- :tags,
432
- :workflow_name)
432
+ :tags)
433
433
  SENSITIVE = []
434
434
  include Aws::Structure
435
435
  end
436
436
 
437
- # @!attribute [rw] description
438
- # A description of the workflow.
437
+ # @!attribute [rw] workflow_name
438
+ # The name of the workflow.
439
439
  # @return [String]
440
440
  #
441
- # @!attribute [rw] incremental_run_config
442
- # An object which defines an incremental run type and has only
443
- # `incrementalRunType` as a field.
444
- # @return [Types::IncrementalRunConfig]
441
+ # @!attribute [rw] workflow_arn
442
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
443
+ # the `MatchingWorkflow`.
444
+ # @return [String]
445
+ #
446
+ # @!attribute [rw] description
447
+ # A description of the workflow.
448
+ # @return [String]
445
449
  #
446
450
  # @!attribute [rw] input_source_config
447
451
  # A list of `InputSource` objects, which have the fields
@@ -458,36 +462,37 @@ module Aws::EntityResolution
458
462
  # `ruleBasedProperties`.
459
463
  # @return [Types::ResolutionTechniques]
460
464
  #
465
+ # @!attribute [rw] incremental_run_config
466
+ # An object which defines an incremental run type and has only
467
+ # `incrementalRunType` as a field.
468
+ # @return [Types::IncrementalRunConfig]
469
+ #
461
470
  # @!attribute [rw] role_arn
462
471
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
463
472
  # assumes this role to create resources on your behalf as part of
464
473
  # workflow execution.
465
474
  # @return [String]
466
475
  #
467
- # @!attribute [rw] workflow_arn
468
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
469
- # the `MatchingWorkflow`.
470
- # @return [String]
471
- #
472
- # @!attribute [rw] workflow_name
473
- # The name of the workflow.
474
- # @return [String]
475
- #
476
476
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateMatchingWorkflowOutput AWS API Documentation
477
477
  #
478
478
  class CreateMatchingWorkflowOutput < Struct.new(
479
+ :workflow_name,
480
+ :workflow_arn,
479
481
  :description,
480
- :incremental_run_config,
481
482
  :input_source_config,
482
483
  :output_source_config,
483
484
  :resolution_techniques,
484
- :role_arn,
485
- :workflow_arn,
486
- :workflow_name)
485
+ :incremental_run_config,
486
+ :role_arn)
487
487
  SENSITIVE = []
488
488
  include Aws::Structure
489
489
  end
490
490
 
491
+ # @!attribute [rw] schema_name
492
+ # The name of the schema. There can't be multiple `SchemaMappings`
493
+ # with the same name.
494
+ # @return [String]
495
+ #
491
496
  # @!attribute [rw] description
492
497
  # A description of the schema.
493
498
  # @return [String]
@@ -498,11 +503,6 @@ module Aws::EntityResolution
498
503
  # additional information that Entity Resolution uses for matching.
499
504
  # @return [Array<Types::SchemaInputAttribute>]
500
505
  #
501
- # @!attribute [rw] schema_name
502
- # The name of the schema. There can't be multiple `SchemaMappings`
503
- # with the same name.
504
- # @return [String]
505
- #
506
506
  # @!attribute [rw] tags
507
507
  # The tags used to organize, track, or control access for this
508
508
  # resource.
@@ -511,14 +511,23 @@ module Aws::EntityResolution
511
511
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateSchemaMappingInput AWS API Documentation
512
512
  #
513
513
  class CreateSchemaMappingInput < Struct.new(
514
+ :schema_name,
514
515
  :description,
515
516
  :mapped_input_fields,
516
- :schema_name,
517
517
  :tags)
518
518
  SENSITIVE = []
519
519
  include Aws::Structure
520
520
  end
521
521
 
522
+ # @!attribute [rw] schema_name
523
+ # The name of the schema.
524
+ # @return [String]
525
+ #
526
+ # @!attribute [rw] schema_arn
527
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
528
+ # the `SchemaMapping`.
529
+ # @return [String]
530
+ #
522
531
  # @!attribute [rw] description
523
532
  # A description of the schema.
524
533
  # @return [String]
@@ -529,22 +538,13 @@ module Aws::EntityResolution
529
538
  # additional information that Entity Resolution uses for matching.
530
539
  # @return [Array<Types::SchemaInputAttribute>]
531
540
  #
532
- # @!attribute [rw] schema_arn
533
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
534
- # the `SchemaMapping`.
535
- # @return [String]
536
- #
537
- # @!attribute [rw] schema_name
538
- # The name of the schema.
539
- # @return [String]
540
- #
541
541
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateSchemaMappingOutput AWS API Documentation
542
542
  #
543
543
  class CreateSchemaMappingOutput < Struct.new(
544
- :description,
545
- :mapped_input_fields,
544
+ :schema_name,
546
545
  :schema_arn,
547
- :schema_name)
546
+ :description,
547
+ :mapped_input_fields)
548
548
  SENSITIVE = []
549
549
  include Aws::Structure
550
550
  end
@@ -643,20 +643,20 @@ module Aws::EntityResolution
643
643
  # The ARN of the resource for which the policy need to be deleted.
644
644
  # @return [String]
645
645
  #
646
- # @!attribute [rw] policy
647
- # The resource-based policy.
648
- # @return [String]
649
- #
650
646
  # @!attribute [rw] token
651
647
  # A unique identifier for the deleted policy.
652
648
  # @return [String]
653
649
  #
650
+ # @!attribute [rw] policy
651
+ # The resource-based policy.
652
+ # @return [String]
653
+ #
654
654
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeletePolicyStatementOutput AWS API Documentation
655
655
  #
656
656
  class DeletePolicyStatementOutput < Struct.new(
657
657
  :arn,
658
- :policy,
659
- :token)
658
+ :token,
659
+ :policy)
660
660
  SENSITIVE = []
661
661
  include Aws::Structure
662
662
  end
@@ -687,19 +687,19 @@ module Aws::EntityResolution
687
687
 
688
688
  # The Delete Unique Id error.
689
689
  #
690
- # @!attribute [rw] error_type
691
- # The error type for the batch delete unique ID operation.
692
- # @return [String]
693
- #
694
690
  # @!attribute [rw] unique_id
695
691
  # The unique ID that could not be deleted.
696
692
  # @return [String]
697
693
  #
694
+ # @!attribute [rw] error_type
695
+ # The error type for the batch delete unique ID operation.
696
+ # @return [String]
697
+ #
698
698
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeleteUniqueIdError AWS API Documentation
699
699
  #
700
700
  class DeleteUniqueIdError < Struct.new(
701
- :error_type,
702
- :unique_id)
701
+ :unique_id,
702
+ :error_type)
703
703
  SENSITIVE = []
704
704
  include Aws::Structure
705
705
  end
@@ -757,62 +757,62 @@ module Aws::EntityResolution
757
757
  include Aws::Structure
758
758
  end
759
759
 
760
- # @!attribute [rw] job_id
761
- # The ID of the job.
762
- # @return [String]
763
- #
764
760
  # @!attribute [rw] workflow_name
765
761
  # The name of the workflow.
766
762
  # @return [String]
767
763
  #
764
+ # @!attribute [rw] job_id
765
+ # The ID of the job.
766
+ # @return [String]
767
+ #
768
768
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingJobInput AWS API Documentation
769
769
  #
770
770
  class GetIdMappingJobInput < Struct.new(
771
- :job_id,
772
- :workflow_name)
771
+ :workflow_name,
772
+ :job_id)
773
773
  SENSITIVE = []
774
774
  include Aws::Structure
775
775
  end
776
776
 
777
- # @!attribute [rw] end_time
778
- # The time at which the job has finished.
779
- # @return [Time]
780
- #
781
- # @!attribute [rw] error_details
782
- # An object containing an error message, if there was an error.
783
- # @return [Types::ErrorDetails]
784
- #
785
777
  # @!attribute [rw] job_id
786
778
  # The ID of the job.
787
779
  # @return [String]
788
780
  #
781
+ # @!attribute [rw] status
782
+ # The current status of the job.
783
+ # @return [String]
784
+ #
785
+ # @!attribute [rw] start_time
786
+ # The time at which the job was started.
787
+ # @return [Time]
788
+ #
789
+ # @!attribute [rw] end_time
790
+ # The time at which the job has finished.
791
+ # @return [Time]
792
+ #
789
793
  # @!attribute [rw] metrics
790
794
  # Metrics associated with the execution, specifically total records
791
795
  # processed, unique IDs generated, and records the execution skipped.
792
796
  # @return [Types::IdMappingJobMetrics]
793
797
  #
798
+ # @!attribute [rw] error_details
799
+ # An object containing an error message, if there was an error.
800
+ # @return [Types::ErrorDetails]
801
+ #
794
802
  # @!attribute [rw] output_source_config
795
803
  # A list of `OutputSource` objects.
796
804
  # @return [Array<Types::IdMappingJobOutputSource>]
797
805
  #
798
- # @!attribute [rw] start_time
799
- # The time at which the job was started.
800
- # @return [Time]
801
- #
802
- # @!attribute [rw] status
803
- # The current status of the job.
804
- # @return [String]
805
- #
806
806
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingJobOutput AWS API Documentation
807
807
  #
808
808
  class GetIdMappingJobOutput < Struct.new(
809
- :end_time,
810
- :error_details,
811
809
  :job_id,
812
- :metrics,
813
- :output_source_config,
810
+ :status,
814
811
  :start_time,
815
- :status)
812
+ :end_time,
813
+ :metrics,
814
+ :error_details,
815
+ :output_source_config)
816
816
  SENSITIVE = []
817
817
  include Aws::Structure
818
818
  end
@@ -829,19 +829,19 @@ module Aws::EntityResolution
829
829
  include Aws::Structure
830
830
  end
831
831
 
832
- # @!attribute [rw] created_at
833
- # The timestamp of when the workflow was created.
834
- # @return [Time]
832
+ # @!attribute [rw] workflow_name
833
+ # The name of the workflow.
834
+ # @return [String]
835
+ #
836
+ # @!attribute [rw] workflow_arn
837
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
838
+ # the `IdMappingWorkflow` .
839
+ # @return [String]
835
840
  #
836
841
  # @!attribute [rw] description
837
842
  # A description of the workflow.
838
843
  # @return [String]
839
844
  #
840
- # @!attribute [rw] id_mapping_techniques
841
- # An object which defines the ID mapping technique and any additional
842
- # configurations.
843
- # @return [Types::IdMappingTechniques]
844
- #
845
845
  # @!attribute [rw] input_source_config
846
846
  # A list of `InputSource` objects, which have the fields
847
847
  # `InputSourceARN` and `SchemaName`.
@@ -852,6 +852,19 @@ module Aws::EntityResolution
852
852
  # `OutputS3Path` and `KMSArn`.
853
853
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
854
854
  #
855
+ # @!attribute [rw] id_mapping_techniques
856
+ # An object which defines the ID mapping technique and any additional
857
+ # configurations.
858
+ # @return [Types::IdMappingTechniques]
859
+ #
860
+ # @!attribute [rw] created_at
861
+ # The timestamp of when the workflow was created.
862
+ # @return [Time]
863
+ #
864
+ # @!attribute [rw] updated_at
865
+ # The timestamp of when the workflow was last updated.
866
+ # @return [Time]
867
+ #
855
868
  # @!attribute [rw] role_arn
856
869
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
857
870
  # assumes this role to access Amazon Web Services resources on your
@@ -863,32 +876,19 @@ module Aws::EntityResolution
863
876
  # resource.
864
877
  # @return [Hash<String,String>]
865
878
  #
866
- # @!attribute [rw] updated_at
867
- # The timestamp of when the workflow was last updated.
868
- # @return [Time]
869
- #
870
- # @!attribute [rw] workflow_arn
871
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
872
- # the `IdMappingWorkflow` .
873
- # @return [String]
874
- #
875
- # @!attribute [rw] workflow_name
876
- # The name of the workflow.
877
- # @return [String]
878
- #
879
879
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdMappingWorkflowOutput AWS API Documentation
880
880
  #
881
881
  class GetIdMappingWorkflowOutput < Struct.new(
882
- :created_at,
882
+ :workflow_name,
883
+ :workflow_arn,
883
884
  :description,
884
- :id_mapping_techniques,
885
885
  :input_source_config,
886
886
  :output_source_config,
887
- :role_arn,
888
- :tags,
887
+ :id_mapping_techniques,
888
+ :created_at,
889
889
  :updated_at,
890
- :workflow_arn,
891
- :workflow_name)
890
+ :role_arn,
891
+ :tags)
892
892
  SENSITIVE = []
893
893
  include Aws::Structure
894
894
  end
@@ -905,25 +905,16 @@ module Aws::EntityResolution
905
905
  include Aws::Structure
906
906
  end
907
907
 
908
- # @!attribute [rw] created_at
909
- # The timestamp of when the ID namespace was created.
910
- # @return [Time]
911
- #
912
- # @!attribute [rw] description
913
- # The description of the ID namespace.
908
+ # @!attribute [rw] id_namespace_name
909
+ # The name of the ID namespace.
914
910
  # @return [String]
915
911
  #
916
- # @!attribute [rw] id_mapping_workflow_properties
917
- # Determines the properties of `IdMappingWorkflow` where this
918
- # `IdNamespace` can be used as a `Source` or a `Target`.
919
- # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
920
- #
921
912
  # @!attribute [rw] id_namespace_arn
922
913
  # The Amazon Resource Name (ARN) of the ID namespace.
923
914
  # @return [String]
924
915
  #
925
- # @!attribute [rw] id_namespace_name
926
- # The name of the ID namespace.
916
+ # @!attribute [rw] description
917
+ # The description of the ID namespace.
927
918
  # @return [String]
928
919
  #
929
920
  # @!attribute [rw] input_source_config
@@ -931,16 +922,10 @@ module Aws::EntityResolution
931
922
  # `InputSourceARN` and `SchemaName`.
932
923
  # @return [Array<Types::IdNamespaceInputSource>]
933
924
  #
934
- # @!attribute [rw] role_arn
935
- # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
936
- # assumes this role to access the resources defined in this
937
- # `IdNamespace` on your behalf as part of a workflow run.
938
- # @return [String]
939
- #
940
- # @!attribute [rw] tags
941
- # The tags used to organize, track, or control access for this
942
- # resource.
943
- # @return [Hash<String,String>]
925
+ # @!attribute [rw] id_mapping_workflow_properties
926
+ # Determines the properties of `IdMappingWorkflow` where this
927
+ # `IdNamespace` can be used as a `Source` or a `Target`.
928
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
944
929
  #
945
930
  # @!attribute [rw] type
946
931
  # The type of ID namespace. There are two types: `SOURCE` and
@@ -953,27 +938,50 @@ module Aws::EntityResolution
953
938
  # `sourceIds` will resolve to.
954
939
  # @return [String]
955
940
  #
941
+ # @!attribute [rw] role_arn
942
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
943
+ # assumes this role to access the resources defined in this
944
+ # `IdNamespace` on your behalf as part of a workflow run.
945
+ # @return [String]
946
+ #
947
+ # @!attribute [rw] created_at
948
+ # The timestamp of when the ID namespace was created.
949
+ # @return [Time]
950
+ #
956
951
  # @!attribute [rw] updated_at
957
952
  # The timestamp of when the ID namespace was last updated.
958
953
  # @return [Time]
959
954
  #
955
+ # @!attribute [rw] tags
956
+ # The tags used to organize, track, or control access for this
957
+ # resource.
958
+ # @return [Hash<String,String>]
959
+ #
960
960
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdNamespaceOutput AWS API Documentation
961
961
  #
962
962
  class GetIdNamespaceOutput < Struct.new(
963
- :created_at,
964
- :description,
965
- :id_mapping_workflow_properties,
966
- :id_namespace_arn,
967
963
  :id_namespace_name,
964
+ :id_namespace_arn,
965
+ :description,
968
966
  :input_source_config,
969
- :role_arn,
970
- :tags,
967
+ :id_mapping_workflow_properties,
971
968
  :type,
972
- :updated_at)
969
+ :role_arn,
970
+ :created_at,
971
+ :updated_at,
972
+ :tags)
973
973
  SENSITIVE = []
974
974
  include Aws::Structure
975
975
  end
976
976
 
977
+ # @!attribute [rw] workflow_name
978
+ # The name of the workflow.
979
+ # @return [String]
980
+ #
981
+ # @!attribute [rw] record
982
+ # The record to fetch the Match ID for.
983
+ # @return [Hash<String,String>]
984
+ #
977
985
  # @!attribute [rw] apply_normalization
978
986
  # Normalizes the attributes defined in the schema in the input data.
979
987
  # For example, if an attribute has an `AttributeType` of
@@ -982,20 +990,12 @@ module Aws::EntityResolution
982
990
  # output to (123)-456-7890.
983
991
  # @return [Boolean]
984
992
  #
985
- # @!attribute [rw] record
986
- # The record to fetch the Match ID for.
987
- # @return [Hash<String,String>]
988
- #
989
- # @!attribute [rw] workflow_name
990
- # The name of the workflow.
991
- # @return [String]
992
- #
993
993
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchIdInput AWS API Documentation
994
994
  #
995
995
  class GetMatchIdInput < Struct.new(
996
- :apply_normalization,
996
+ :workflow_name,
997
997
  :record,
998
- :workflow_name)
998
+ :apply_normalization)
999
999
  SENSITIVE = [:record]
1000
1000
  include Aws::Structure
1001
1001
  end
@@ -1017,62 +1017,62 @@ module Aws::EntityResolution
1017
1017
  include Aws::Structure
1018
1018
  end
1019
1019
 
1020
- # @!attribute [rw] job_id
1021
- # The ID of the job.
1022
- # @return [String]
1023
- #
1024
1020
  # @!attribute [rw] workflow_name
1025
1021
  # The name of the workflow.
1026
1022
  # @return [String]
1027
1023
  #
1024
+ # @!attribute [rw] job_id
1025
+ # The ID of the job.
1026
+ # @return [String]
1027
+ #
1028
1028
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchingJobInput AWS API Documentation
1029
1029
  #
1030
1030
  class GetMatchingJobInput < Struct.new(
1031
- :job_id,
1032
- :workflow_name)
1031
+ :workflow_name,
1032
+ :job_id)
1033
1033
  SENSITIVE = []
1034
1034
  include Aws::Structure
1035
1035
  end
1036
1036
 
1037
- # @!attribute [rw] end_time
1038
- # The time at which the job has finished.
1039
- # @return [Time]
1040
- #
1041
- # @!attribute [rw] error_details
1042
- # An object containing an error message, if there was an error.
1043
- # @return [Types::ErrorDetails]
1044
- #
1045
1037
  # @!attribute [rw] job_id
1046
1038
  # The ID of the job.
1047
1039
  # @return [String]
1048
1040
  #
1041
+ # @!attribute [rw] status
1042
+ # The current status of the job.
1043
+ # @return [String]
1044
+ #
1045
+ # @!attribute [rw] start_time
1046
+ # The time at which the job was started.
1047
+ # @return [Time]
1048
+ #
1049
+ # @!attribute [rw] end_time
1050
+ # The time at which the job has finished.
1051
+ # @return [Time]
1052
+ #
1049
1053
  # @!attribute [rw] metrics
1050
1054
  # Metrics associated with the execution, specifically total records
1051
1055
  # processed, unique IDs generated, and records the execution skipped.
1052
1056
  # @return [Types::JobMetrics]
1053
1057
  #
1058
+ # @!attribute [rw] error_details
1059
+ # An object containing an error message, if there was an error.
1060
+ # @return [Types::ErrorDetails]
1061
+ #
1054
1062
  # @!attribute [rw] output_source_config
1055
1063
  # A list of `OutputSource` objects.
1056
1064
  # @return [Array<Types::JobOutputSource>]
1057
1065
  #
1058
- # @!attribute [rw] start_time
1059
- # The time at which the job was started.
1060
- # @return [Time]
1061
- #
1062
- # @!attribute [rw] status
1063
- # The current status of the job.
1064
- # @return [String]
1065
- #
1066
1066
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchingJobOutput AWS API Documentation
1067
1067
  #
1068
1068
  class GetMatchingJobOutput < Struct.new(
1069
- :end_time,
1070
- :error_details,
1071
1069
  :job_id,
1072
- :metrics,
1073
- :output_source_config,
1070
+ :status,
1074
1071
  :start_time,
1075
- :status)
1072
+ :end_time,
1073
+ :metrics,
1074
+ :error_details,
1075
+ :output_source_config)
1076
1076
  SENSITIVE = []
1077
1077
  include Aws::Structure
1078
1078
  end
@@ -1089,19 +1089,19 @@ module Aws::EntityResolution
1089
1089
  include Aws::Structure
1090
1090
  end
1091
1091
 
1092
- # @!attribute [rw] created_at
1093
- # The timestamp of when the workflow was created.
1094
- # @return [Time]
1092
+ # @!attribute [rw] workflow_name
1093
+ # The name of the workflow.
1094
+ # @return [String]
1095
+ #
1096
+ # @!attribute [rw] workflow_arn
1097
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
1098
+ # the `MatchingWorkflow`.
1099
+ # @return [String]
1095
1100
  #
1096
1101
  # @!attribute [rw] description
1097
1102
  # A description of the workflow.
1098
1103
  # @return [String]
1099
1104
  #
1100
- # @!attribute [rw] incremental_run_config
1101
- # An object which defines an incremental run type and has only
1102
- # `incrementalRunType` as a field.
1103
- # @return [Types::IncrementalRunConfig]
1104
- #
1105
1105
  # @!attribute [rw] input_source_config
1106
1106
  # A list of `InputSource` objects, which have the fields
1107
1107
  # `InputSourceARN` and `SchemaName`.
@@ -1117,6 +1117,19 @@ module Aws::EntityResolution
1117
1117
  # `ruleBasedProperties`.
1118
1118
  # @return [Types::ResolutionTechniques]
1119
1119
  #
1120
+ # @!attribute [rw] created_at
1121
+ # The timestamp of when the workflow was created.
1122
+ # @return [Time]
1123
+ #
1124
+ # @!attribute [rw] updated_at
1125
+ # The timestamp of when the workflow was last updated.
1126
+ # @return [Time]
1127
+ #
1128
+ # @!attribute [rw] incremental_run_config
1129
+ # An object which defines an incremental run type and has only
1130
+ # `incrementalRunType` as a field.
1131
+ # @return [Types::IncrementalRunConfig]
1132
+ #
1120
1133
  # @!attribute [rw] role_arn
1121
1134
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1122
1135
  # assumes this role to access Amazon Web Services resources on your
@@ -1128,33 +1141,20 @@ module Aws::EntityResolution
1128
1141
  # resource.
1129
1142
  # @return [Hash<String,String>]
1130
1143
  #
1131
- # @!attribute [rw] updated_at
1132
- # The timestamp of when the workflow was last updated.
1133
- # @return [Time]
1134
- #
1135
- # @!attribute [rw] workflow_arn
1136
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
1137
- # the `MatchingWorkflow`.
1138
- # @return [String]
1139
- #
1140
- # @!attribute [rw] workflow_name
1141
- # The name of the workflow.
1142
- # @return [String]
1143
- #
1144
1144
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchingWorkflowOutput AWS API Documentation
1145
1145
  #
1146
1146
  class GetMatchingWorkflowOutput < Struct.new(
1147
- :created_at,
1147
+ :workflow_name,
1148
+ :workflow_arn,
1148
1149
  :description,
1149
- :incremental_run_config,
1150
1150
  :input_source_config,
1151
1151
  :output_source_config,
1152
1152
  :resolution_techniques,
1153
- :role_arn,
1154
- :tags,
1153
+ :created_at,
1155
1154
  :updated_at,
1156
- :workflow_arn,
1157
- :workflow_name)
1155
+ :incremental_run_config,
1156
+ :role_arn,
1157
+ :tags)
1158
1158
  SENSITIVE = []
1159
1159
  include Aws::Structure
1160
1160
  end
@@ -1176,20 +1176,20 @@ module Aws::EntityResolution
1176
1176
  # The Entity Resolution resource ARN.
1177
1177
  # @return [String]
1178
1178
  #
1179
- # @!attribute [rw] policy
1180
- # The resource-based policy.
1181
- # @return [String]
1182
- #
1183
1179
  # @!attribute [rw] token
1184
1180
  # A unique identifier for the current revision of the policy.
1185
1181
  # @return [String]
1186
1182
  #
1183
+ # @!attribute [rw] policy
1184
+ # The resource-based policy.
1185
+ # @return [String]
1186
+ #
1187
1187
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetPolicyOutput AWS API Documentation
1188
1188
  #
1189
1189
  class GetPolicyOutput < Struct.new(
1190
1190
  :arn,
1191
- :policy,
1192
- :token)
1191
+ :token,
1192
+ :policy)
1193
1193
  SENSITIVE = []
1194
1194
  include Aws::Structure
1195
1195
  end
@@ -1212,83 +1212,83 @@ module Aws::EntityResolution
1212
1212
  include Aws::Structure
1213
1213
  end
1214
1214
 
1215
- # @!attribute [rw] anonymized_output
1216
- # Specifies whether output data from the provider is anonymized. A
1217
- # value of `TRUE` means the output will be anonymized and you can't
1218
- # relate the data that comes back from the provider to the identifying
1219
- # input. A value of `FALSE` means the output won't be anonymized and
1220
- # you can relate the data that comes back from the provider to your
1221
- # source data.
1222
- # @return [Boolean]
1215
+ # @!attribute [rw] provider_name
1216
+ # The name of the provider. This name is typically the company name.
1217
+ # @return [String]
1223
1218
  #
1224
- # @!attribute [rw] provider_component_schema
1225
- # Input schema for the provider service.
1226
- # @return [Types::ProviderComponentSchema]
1219
+ # @!attribute [rw] provider_service_name
1220
+ # The name of the product that the provider service provides.
1221
+ # @return [String]
1222
+ #
1223
+ # @!attribute [rw] provider_service_display_name
1224
+ # The display name of the provider service.
1225
+ # @return [String]
1226
+ #
1227
+ # @!attribute [rw] provider_service_type
1228
+ # The type of provider service.
1229
+ # @return [String]
1230
+ #
1231
+ # @!attribute [rw] provider_service_arn
1232
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
1233
+ # the provider service.
1234
+ # @return [String]
1227
1235
  #
1228
1236
  # @!attribute [rw] provider_configuration_definition
1229
1237
  # The definition of the provider configuration.
1230
1238
  # @return [Hash,Array,String,Numeric,Boolean]
1231
1239
  #
1240
+ # @!attribute [rw] provider_id_name_space_configuration
1241
+ # The provider configuration required for different ID namespace
1242
+ # types.
1243
+ # @return [Types::ProviderIdNameSpaceConfiguration]
1244
+ #
1245
+ # @!attribute [rw] provider_job_configuration
1246
+ # Provider service job configurations.
1247
+ # @return [Hash,Array,String,Numeric,Boolean]
1248
+ #
1232
1249
  # @!attribute [rw] provider_endpoint_configuration
1233
1250
  # The required configuration fields to use with the provider service.
1234
1251
  # @return [Types::ProviderEndpointConfiguration]
1235
1252
  #
1253
+ # @!attribute [rw] anonymized_output
1254
+ # Specifies whether output data from the provider is anonymized. A
1255
+ # value of `TRUE` means the output will be anonymized and you can't
1256
+ # relate the data that comes back from the provider to the identifying
1257
+ # input. A value of `FALSE` means the output won't be anonymized and
1258
+ # you can relate the data that comes back from the provider to your
1259
+ # source data.
1260
+ # @return [Boolean]
1261
+ #
1236
1262
  # @!attribute [rw] provider_entity_output_definition
1237
1263
  # The definition of the provider entity output.
1238
1264
  # @return [Hash,Array,String,Numeric,Boolean]
1239
1265
  #
1240
- # @!attribute [rw] provider_id_name_space_configuration
1241
- # The provider configuration required for different ID namespace
1242
- # types.
1243
- # @return [Types::ProviderIdNameSpaceConfiguration]
1244
- #
1245
1266
  # @!attribute [rw] provider_intermediate_data_access_configuration
1246
1267
  # The Amazon Web Services accounts and the S3 permissions that are
1247
1268
  # required by some providers to create an S3 bucket for intermediate
1248
1269
  # data storage.
1249
1270
  # @return [Types::ProviderIntermediateDataAccessConfiguration]
1250
1271
  #
1251
- # @!attribute [rw] provider_job_configuration
1252
- # Provider service job configurations.
1253
- # @return [Hash,Array,String,Numeric,Boolean]
1254
- #
1255
- # @!attribute [rw] provider_name
1256
- # The name of the provider. This name is typically the company name.
1257
- # @return [String]
1258
- #
1259
- # @!attribute [rw] provider_service_arn
1260
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
1261
- # the provider service.
1262
- # @return [String]
1263
- #
1264
- # @!attribute [rw] provider_service_display_name
1265
- # The display name of the provider service.
1266
- # @return [String]
1267
- #
1268
- # @!attribute [rw] provider_service_name
1269
- # The name of the product that the provider service provides.
1270
- # @return [String]
1271
- #
1272
- # @!attribute [rw] provider_service_type
1273
- # The type of provider service.
1274
- # @return [String]
1272
+ # @!attribute [rw] provider_component_schema
1273
+ # Input schema for the provider service.
1274
+ # @return [Types::ProviderComponentSchema]
1275
1275
  #
1276
1276
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetProviderServiceOutput AWS API Documentation
1277
1277
  #
1278
1278
  class GetProviderServiceOutput < Struct.new(
1279
- :anonymized_output,
1280
- :provider_component_schema,
1279
+ :provider_name,
1280
+ :provider_service_name,
1281
+ :provider_service_display_name,
1282
+ :provider_service_type,
1283
+ :provider_service_arn,
1281
1284
  :provider_configuration_definition,
1285
+ :provider_id_name_space_configuration,
1286
+ :provider_job_configuration,
1282
1287
  :provider_endpoint_configuration,
1288
+ :anonymized_output,
1283
1289
  :provider_entity_output_definition,
1284
- :provider_id_name_space_configuration,
1285
1290
  :provider_intermediate_data_access_configuration,
1286
- :provider_job_configuration,
1287
- :provider_name,
1288
- :provider_service_arn,
1289
- :provider_service_display_name,
1290
- :provider_service_name,
1291
- :provider_service_type)
1291
+ :provider_component_schema)
1292
1292
  SENSITIVE = []
1293
1293
  include Aws::Structure
1294
1294
  end
@@ -1305,65 +1305,69 @@ module Aws::EntityResolution
1305
1305
  include Aws::Structure
1306
1306
  end
1307
1307
 
1308
- # @!attribute [rw] created_at
1309
- # The timestamp of when the `SchemaMapping` was created.
1310
- # @return [Time]
1308
+ # @!attribute [rw] schema_name
1309
+ # The name of the schema.
1310
+ # @return [String]
1311
+ #
1312
+ # @!attribute [rw] schema_arn
1313
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
1314
+ # the SchemaMapping.
1315
+ # @return [String]
1311
1316
  #
1312
1317
  # @!attribute [rw] description
1313
1318
  # A description of the schema.
1314
1319
  # @return [String]
1315
1320
  #
1316
- # @!attribute [rw] has_workflows
1317
- # Specifies whether the schema mapping has been applied to a workflow.
1318
- # @return [Boolean]
1319
- #
1320
1321
  # @!attribute [rw] mapped_input_fields
1321
1322
  # A list of `MappedInputFields`. Each `MappedInputField` corresponds
1322
1323
  # to a column the source data table, and contains column name plus
1323
1324
  # additional information Venice uses for matching.
1324
1325
  # @return [Array<Types::SchemaInputAttribute>]
1325
1326
  #
1326
- # @!attribute [rw] schema_arn
1327
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
1328
- # the SchemaMapping.
1329
- # @return [String]
1327
+ # @!attribute [rw] created_at
1328
+ # The timestamp of when the `SchemaMapping` was created.
1329
+ # @return [Time]
1330
1330
  #
1331
- # @!attribute [rw] schema_name
1332
- # The name of the schema.
1333
- # @return [String]
1331
+ # @!attribute [rw] updated_at
1332
+ # The timestamp of when the `SchemaMapping` was last updated.
1333
+ # @return [Time]
1334
1334
  #
1335
1335
  # @!attribute [rw] tags
1336
1336
  # The tags used to organize, track, or control access for this
1337
1337
  # resource.
1338
1338
  # @return [Hash<String,String>]
1339
1339
  #
1340
- # @!attribute [rw] updated_at
1341
- # The timestamp of when the `SchemaMapping` was last updated.
1342
- # @return [Time]
1340
+ # @!attribute [rw] has_workflows
1341
+ # Specifies whether the schema mapping has been applied to a workflow.
1342
+ # @return [Boolean]
1343
1343
  #
1344
1344
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetSchemaMappingOutput AWS API Documentation
1345
1345
  #
1346
1346
  class GetSchemaMappingOutput < Struct.new(
1347
- :created_at,
1347
+ :schema_name,
1348
+ :schema_arn,
1348
1349
  :description,
1349
- :has_workflows,
1350
1350
  :mapped_input_fields,
1351
- :schema_arn,
1352
- :schema_name,
1351
+ :created_at,
1352
+ :updated_at,
1353
1353
  :tags,
1354
- :updated_at)
1354
+ :has_workflows)
1355
1355
  SENSITIVE = []
1356
1356
  include Aws::Structure
1357
1357
  end
1358
1358
 
1359
- # An object containing `InputRecords`, `RecordsNotProcessed`,
1360
- # `TotalRecordsProcessed`, `TotalMappedRecords`,
1361
- # `TotalMappedSourceRecords`, and `TotalMappedTargetRecords`.
1359
+ # An object that contains metrics about an ID mapping job, including
1360
+ # counts of input records, processed records, and mapped records between
1361
+ # source and target identifiers.
1362
1362
  #
1363
1363
  # @!attribute [rw] input_records
1364
1364
  # The total number of records that were input for processing.
1365
1365
  # @return [Integer]
1366
1366
  #
1367
+ # @!attribute [rw] total_records_processed
1368
+ # The total number of records that were processed.
1369
+ # @return [Integer]
1370
+ #
1367
1371
  # @!attribute [rw] records_not_processed
1368
1372
  # The total number of records that did not get processed.
1369
1373
  # @return [Integer]
@@ -1380,46 +1384,53 @@ module Aws::EntityResolution
1380
1384
  # The total number of distinct mapped target records.
1381
1385
  # @return [Integer]
1382
1386
  #
1383
- # @!attribute [rw] total_records_processed
1384
- # The total number of records that were processed.
1387
+ # @!attribute [rw] unique_records_loaded
1388
+ # The number of records remaining after loading and aggregating
1389
+ # duplicate records. Duplicates are determined by the field marked as
1390
+ # UNIQUE\_ID in your schema mapping - records sharing the same value
1391
+ # in this field are considered duplicates. For example, if you
1392
+ # specified "customer\_id" as a UNIQUE\_ID field and had three
1393
+ # records with the same customer\_id value, they would count as one
1394
+ # unique record in this metric.
1385
1395
  # @return [Integer]
1386
1396
  #
1387
1397
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingJobMetrics AWS API Documentation
1388
1398
  #
1389
1399
  class IdMappingJobMetrics < Struct.new(
1390
1400
  :input_records,
1401
+ :total_records_processed,
1391
1402
  :records_not_processed,
1392
1403
  :total_mapped_records,
1393
1404
  :total_mapped_source_records,
1394
1405
  :total_mapped_target_records,
1395
- :total_records_processed)
1406
+ :unique_records_loaded)
1396
1407
  SENSITIVE = []
1397
1408
  include Aws::Structure
1398
1409
  end
1399
1410
 
1400
1411
  # An object containing `KMSArn`, `OutputS3Path`, and `RoleARN`.
1401
1412
  #
1402
- # @!attribute [rw] kms_arn
1403
- # Customer KMS ARN for encryption at rest. If not provided, system
1404
- # will use an Entity Resolution managed KMS key.
1413
+ # @!attribute [rw] role_arn
1414
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1415
+ # assumes this role to access Amazon Web Services resources on your
1416
+ # behalf as part of workflow execution.
1405
1417
  # @return [String]
1406
1418
  #
1407
1419
  # @!attribute [rw] output_s3_path
1408
1420
  # The S3 path to which Entity Resolution will write the output table.
1409
1421
  # @return [String]
1410
1422
  #
1411
- # @!attribute [rw] role_arn
1412
- # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1413
- # assumes this role to access Amazon Web Services resources on your
1414
- # behalf as part of workflow execution.
1423
+ # @!attribute [rw] kms_arn
1424
+ # Customer KMS ARN for encryption at rest. If not provided, system
1425
+ # will use an Entity Resolution managed KMS key.
1415
1426
  # @return [String]
1416
1427
  #
1417
1428
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingJobOutputSource AWS API Documentation
1418
1429
  #
1419
1430
  class IdMappingJobOutputSource < Struct.new(
1420
- :kms_arn,
1431
+ :role_arn,
1421
1432
  :output_s3_path,
1422
- :role_arn)
1433
+ :kms_arn)
1423
1434
  SENSITIVE = []
1424
1435
  include Aws::Structure
1425
1436
  end
@@ -1427,6 +1438,16 @@ module Aws::EntityResolution
1427
1438
  # An object that defines the list of matching rules to run in an ID
1428
1439
  # mapping workflow.
1429
1440
  #
1441
+ # @!attribute [rw] rules
1442
+ # The rules that can be used for ID mapping.
1443
+ # @return [Array<Types::Rule>]
1444
+ #
1445
+ # @!attribute [rw] rule_definition_type
1446
+ # The set of rules you can use in an ID mapping workflow. The
1447
+ # limitations specified for the source or target to define the match
1448
+ # rules must be compatible.
1449
+ # @return [String]
1450
+ #
1430
1451
  # @!attribute [rw] attribute_matching_model
1431
1452
  # The comparison type. You can either choose `ONE_TO_ONE` or
1432
1453
  # `MANY_TO_MANY` as the `attributeMatchingModel`.
@@ -1455,23 +1476,13 @@ module Aws::EntityResolution
1455
1476
  # in the source can be matched to one record in the target.
1456
1477
  # @return [String]
1457
1478
  #
1458
- # @!attribute [rw] rule_definition_type
1459
- # The set of rules you can use in an ID mapping workflow. The
1460
- # limitations specified for the source or target to define the match
1461
- # rules must be compatible.
1462
- # @return [String]
1463
- #
1464
- # @!attribute [rw] rules
1465
- # The rules that can be used for ID mapping.
1466
- # @return [Array<Types::Rule>]
1467
- #
1468
1479
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingRuleBasedProperties AWS API Documentation
1469
1480
  #
1470
1481
  class IdMappingRuleBasedProperties < Struct.new(
1471
- :attribute_matching_model,
1472
- :record_matching_model,
1482
+ :rules,
1473
1483
  :rule_definition_type,
1474
- :rules)
1484
+ :attribute_matching_model,
1485
+ :record_matching_model)
1475
1486
  SENSITIVE = []
1476
1487
  include Aws::Structure
1477
1488
  end
@@ -1483,22 +1494,22 @@ module Aws::EntityResolution
1483
1494
  # The type of ID mapping.
1484
1495
  # @return [String]
1485
1496
  #
1486
- # @!attribute [rw] provider_properties
1487
- # An object which defines any additional configurations required by
1488
- # the provider service.
1489
- # @return [Types::ProviderProperties]
1490
- #
1491
1497
  # @!attribute [rw] rule_based_properties
1492
1498
  # An object which defines any additional configurations required by
1493
1499
  # rule-based matching.
1494
1500
  # @return [Types::IdMappingRuleBasedProperties]
1495
1501
  #
1502
+ # @!attribute [rw] provider_properties
1503
+ # An object which defines any additional configurations required by
1504
+ # the provider service.
1505
+ # @return [Types::ProviderProperties]
1506
+ #
1496
1507
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingTechniques AWS API Documentation
1497
1508
  #
1498
1509
  class IdMappingTechniques < Struct.new(
1499
1510
  :id_mapping_type,
1500
- :provider_properties,
1501
- :rule_based_properties)
1511
+ :rule_based_properties,
1512
+ :provider_properties)
1502
1513
  SENSITIVE = []
1503
1514
  include Aws::Structure
1504
1515
  end
@@ -1537,20 +1548,20 @@ module Aws::EntityResolution
1537
1548
 
1538
1549
  # The output source for the ID mapping workflow.
1539
1550
  #
1551
+ # @!attribute [rw] output_s3_path
1552
+ # The S3 path to which Entity Resolution will write the output table.
1553
+ # @return [String]
1554
+ #
1540
1555
  # @!attribute [rw] kms_arn
1541
1556
  # Customer KMS ARN for encryption at rest. If not provided, system
1542
1557
  # will use an Entity Resolution managed KMS key.
1543
1558
  # @return [String]
1544
1559
  #
1545
- # @!attribute [rw] output_s3_path
1546
- # The S3 path to which Entity Resolution will write the output table.
1547
- # @return [String]
1548
- #
1549
1560
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingWorkflowOutputSource AWS API Documentation
1550
1561
  #
1551
1562
  class IdMappingWorkflowOutputSource < Struct.new(
1552
- :kms_arn,
1553
- :output_s3_path)
1563
+ :output_s3_path,
1564
+ :kms_arn)
1554
1565
  SENSITIVE = []
1555
1566
  include Aws::Structure
1556
1567
  end
@@ -1559,6 +1570,15 @@ module Aws::EntityResolution
1559
1570
  # the fields `WorkflowName`, `WorkflowArn`, `CreatedAt`, and
1560
1571
  # `UpdatedAt`.
1561
1572
  #
1573
+ # @!attribute [rw] workflow_name
1574
+ # The name of the workflow.
1575
+ # @return [String]
1576
+ #
1577
+ # @!attribute [rw] workflow_arn
1578
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
1579
+ # the `IdMappingWorkflow`.
1580
+ # @return [String]
1581
+ #
1562
1582
  # @!attribute [rw] created_at
1563
1583
  # The timestamp of when the workflow was created.
1564
1584
  # @return [Time]
@@ -1567,22 +1587,13 @@ module Aws::EntityResolution
1567
1587
  # The timestamp of when the workflow was last updated.
1568
1588
  # @return [Time]
1569
1589
  #
1570
- # @!attribute [rw] workflow_arn
1571
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
1572
- # the `IdMappingWorkflow`.
1573
- # @return [String]
1574
- #
1575
- # @!attribute [rw] workflow_name
1576
- # The name of the workflow.
1577
- # @return [String]
1578
- #
1579
1590
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingWorkflowSummary AWS API Documentation
1580
1591
  #
1581
1592
  class IdMappingWorkflowSummary < Struct.new(
1582
- :created_at,
1583
- :updated_at,
1593
+ :workflow_name,
1584
1594
  :workflow_arn,
1585
- :workflow_name)
1595
+ :created_at,
1596
+ :updated_at)
1586
1597
  SENSITIVE = []
1587
1598
  include Aws::Structure
1588
1599
  end
@@ -1608,22 +1619,22 @@ module Aws::EntityResolution
1608
1619
  # The type of ID mapping.
1609
1620
  # @return [String]
1610
1621
  #
1611
- # @!attribute [rw] provider_properties
1612
- # An object which defines any additional configurations required by
1613
- # the provider service.
1614
- # @return [Types::NamespaceProviderProperties]
1615
- #
1616
1622
  # @!attribute [rw] rule_based_properties
1617
1623
  # An object which defines any additional configurations required by
1618
1624
  # rule-based matching.
1619
1625
  # @return [Types::NamespaceRuleBasedProperties]
1620
1626
  #
1627
+ # @!attribute [rw] provider_properties
1628
+ # An object which defines any additional configurations required by
1629
+ # the provider service.
1630
+ # @return [Types::NamespaceProviderProperties]
1631
+ #
1621
1632
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdNamespaceIdMappingWorkflowProperties AWS API Documentation
1622
1633
  #
1623
1634
  class IdNamespaceIdMappingWorkflowProperties < Struct.new(
1624
1635
  :id_mapping_type,
1625
- :provider_properties,
1626
- :rule_based_properties)
1636
+ :rule_based_properties,
1637
+ :provider_properties)
1627
1638
  SENSITIVE = []
1628
1639
  include Aws::Structure
1629
1640
  end
@@ -1650,9 +1661,13 @@ module Aws::EntityResolution
1650
1661
 
1651
1662
  # A summary of ID namespaces.
1652
1663
  #
1653
- # @!attribute [rw] created_at
1654
- # The timestamp of when the ID namespace was created.
1655
- # @return [Time]
1664
+ # @!attribute [rw] id_namespace_name
1665
+ # The name of the ID namespace.
1666
+ # @return [String]
1667
+ #
1668
+ # @!attribute [rw] id_namespace_arn
1669
+ # The Amazon Resource Name (ARN) of the ID namespace.
1670
+ # @return [String]
1656
1671
  #
1657
1672
  # @!attribute [rw] description
1658
1673
  # The description of the ID namespace.
@@ -1663,14 +1678,6 @@ module Aws::EntityResolution
1663
1678
  # the ID mapping workflow.
1664
1679
  # @return [Array<Types::IdNamespaceIdMappingWorkflowMetadata>]
1665
1680
  #
1666
- # @!attribute [rw] id_namespace_arn
1667
- # The Amazon Resource Name (ARN) of the ID namespace.
1668
- # @return [String]
1669
- #
1670
- # @!attribute [rw] id_namespace_name
1671
- # The name of the ID namespace.
1672
- # @return [String]
1673
- #
1674
1681
  # @!attribute [rw] type
1675
1682
  # The type of ID namespace. There are two types: `SOURCE` and
1676
1683
  # `TARGET`.
@@ -1682,6 +1689,10 @@ module Aws::EntityResolution
1682
1689
  # `sourceIds` will resolve to.
1683
1690
  # @return [String]
1684
1691
  #
1692
+ # @!attribute [rw] created_at
1693
+ # The timestamp of when the ID namespace was created.
1694
+ # @return [Time]
1695
+ #
1685
1696
  # @!attribute [rw] updated_at
1686
1697
  # The timestamp of when the ID namespace was last updated.
1687
1698
  # @return [Time]
@@ -1689,12 +1700,12 @@ module Aws::EntityResolution
1689
1700
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdNamespaceSummary AWS API Documentation
1690
1701
  #
1691
1702
  class IdNamespaceSummary < Struct.new(
1692
- :created_at,
1703
+ :id_namespace_name,
1704
+ :id_namespace_arn,
1693
1705
  :description,
1694
1706
  :id_mapping_workflow_properties,
1695
- :id_namespace_arn,
1696
- :id_namespace_name,
1697
1707
  :type,
1708
+ :created_at,
1698
1709
  :updated_at)
1699
1710
  SENSITIVE = []
1700
1711
  include Aws::Structure
@@ -1718,14 +1729,6 @@ module Aws::EntityResolution
1718
1729
  # An object containing `InputSourceARN`, `SchemaName`, and
1719
1730
  # `ApplyNormalization`.
1720
1731
  #
1721
- # @!attribute [rw] apply_normalization
1722
- # Normalizes the attributes defined in the schema in the input data.
1723
- # For example, if an attribute has an `AttributeType` of
1724
- # `PHONE_NUMBER`, and the data in the input table is in a format of
1725
- # 1234567890, Entity Resolution will normalize this field in the
1726
- # output to (123)-456-7890.
1727
- # @return [Boolean]
1728
- #
1729
1732
  # @!attribute [rw] input_source_arn
1730
1733
  # An Glue table Amazon Resource Name (ARN) for the input source table.
1731
1734
  # @return [String]
@@ -1734,12 +1737,20 @@ module Aws::EntityResolution
1734
1737
  # The name of the schema to be retrieved.
1735
1738
  # @return [String]
1736
1739
  #
1740
+ # @!attribute [rw] apply_normalization
1741
+ # Normalizes the attributes defined in the schema in the input data.
1742
+ # For example, if an attribute has an `AttributeType` of
1743
+ # `PHONE_NUMBER`, and the data in the input table is in a format of
1744
+ # 1234567890, Entity Resolution will normalize this field in the
1745
+ # output to (123)-456-7890.
1746
+ # @return [Boolean]
1747
+ #
1737
1748
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/InputSource AWS API Documentation
1738
1749
  #
1739
1750
  class InputSource < Struct.new(
1740
- :apply_normalization,
1741
1751
  :input_source_arn,
1742
- :schema_name)
1752
+ :schema_name,
1753
+ :apply_normalization)
1743
1754
  SENSITIVE = []
1744
1755
  include Aws::Structure
1745
1756
  end
@@ -1781,52 +1792,52 @@ module Aws::EntityResolution
1781
1792
  # The total number of input records.
1782
1793
  # @return [Integer]
1783
1794
  #
1784
- # @!attribute [rw] match_i_ds
1785
- # The total number of `matchID`s generated.
1795
+ # @!attribute [rw] total_records_processed
1796
+ # The total number of records processed.
1786
1797
  # @return [Integer]
1787
1798
  #
1788
1799
  # @!attribute [rw] records_not_processed
1789
1800
  # The total number of records that did not get processed.
1790
1801
  # @return [Integer]
1791
1802
  #
1792
- # @!attribute [rw] total_records_processed
1793
- # The total number of records processed.
1803
+ # @!attribute [rw] match_i_ds
1804
+ # The total number of `matchID`s generated.
1794
1805
  # @return [Integer]
1795
1806
  #
1796
1807
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/JobMetrics AWS API Documentation
1797
1808
  #
1798
1809
  class JobMetrics < Struct.new(
1799
1810
  :input_records,
1800
- :match_i_ds,
1811
+ :total_records_processed,
1801
1812
  :records_not_processed,
1802
- :total_records_processed)
1813
+ :match_i_ds)
1803
1814
  SENSITIVE = []
1804
1815
  include Aws::Structure
1805
1816
  end
1806
1817
 
1807
1818
  # An object containing `KMSArn`, `OutputS3Path`, and `RoleArn`.
1808
1819
  #
1809
- # @!attribute [rw] kms_arn
1810
- # Customer KMS ARN for encryption at rest. If not provided, system
1811
- # will use an Entity Resolution managed KMS key.
1820
+ # @!attribute [rw] role_arn
1821
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1822
+ # assumes this role to access Amazon Web Services resources on your
1823
+ # behalf as part of workflow execution.
1812
1824
  # @return [String]
1813
1825
  #
1814
1826
  # @!attribute [rw] output_s3_path
1815
1827
  # The S3 path to which Entity Resolution will write the output table.
1816
1828
  # @return [String]
1817
1829
  #
1818
- # @!attribute [rw] role_arn
1819
- # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1820
- # assumes this role to access Amazon Web Services resources on your
1821
- # behalf as part of workflow execution.
1830
+ # @!attribute [rw] kms_arn
1831
+ # Customer KMS ARN for encryption at rest. If not provided, system
1832
+ # will use an Entity Resolution managed KMS key.
1822
1833
  # @return [String]
1823
1834
  #
1824
1835
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/JobOutputSource AWS API Documentation
1825
1836
  #
1826
1837
  class JobOutputSource < Struct.new(
1827
- :kms_arn,
1838
+ :role_arn,
1828
1839
  :output_s3_path,
1829
- :role_arn)
1840
+ :kms_arn)
1830
1841
  SENSITIVE = []
1831
1842
  include Aws::Structure
1832
1843
  end
@@ -1834,51 +1845,51 @@ module Aws::EntityResolution
1834
1845
  # An object containing the `JobId`, `Status`, `StartTime`, and `EndTime`
1835
1846
  # of a job.
1836
1847
  #
1837
- # @!attribute [rw] end_time
1838
- # The time at which the job has finished.
1839
- # @return [Time]
1840
- #
1841
1848
  # @!attribute [rw] job_id
1842
1849
  # The ID of the job.
1843
1850
  # @return [String]
1844
1851
  #
1852
+ # @!attribute [rw] status
1853
+ # The current status of the job.
1854
+ # @return [String]
1855
+ #
1845
1856
  # @!attribute [rw] start_time
1846
1857
  # The time at which the job was started.
1847
1858
  # @return [Time]
1848
1859
  #
1849
- # @!attribute [rw] status
1850
- # The current status of the job.
1851
- # @return [String]
1860
+ # @!attribute [rw] end_time
1861
+ # The time at which the job has finished.
1862
+ # @return [Time]
1852
1863
  #
1853
1864
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/JobSummary AWS API Documentation
1854
1865
  #
1855
1866
  class JobSummary < Struct.new(
1856
- :end_time,
1857
1867
  :job_id,
1868
+ :status,
1858
1869
  :start_time,
1859
- :status)
1870
+ :end_time)
1860
1871
  SENSITIVE = []
1861
1872
  include Aws::Structure
1862
1873
  end
1863
1874
 
1864
- # @!attribute [rw] max_results
1865
- # The maximum number of objects returned per page.
1866
- # @return [Integer]
1875
+ # @!attribute [rw] workflow_name
1876
+ # The name of the workflow to be retrieved.
1877
+ # @return [String]
1867
1878
  #
1868
1879
  # @!attribute [rw] next_token
1869
1880
  # The pagination token from the previous API call.
1870
1881
  # @return [String]
1871
1882
  #
1872
- # @!attribute [rw] workflow_name
1873
- # The name of the workflow to be retrieved.
1874
- # @return [String]
1883
+ # @!attribute [rw] max_results
1884
+ # The maximum number of objects returned per page.
1885
+ # @return [Integer]
1875
1886
  #
1876
1887
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdMappingJobsInput AWS API Documentation
1877
1888
  #
1878
1889
  class ListIdMappingJobsInput < Struct.new(
1879
- :max_results,
1890
+ :workflow_name,
1880
1891
  :next_token,
1881
- :workflow_name)
1892
+ :max_results)
1882
1893
  SENSITIVE = []
1883
1894
  include Aws::Structure
1884
1895
  end
@@ -1900,53 +1911,53 @@ module Aws::EntityResolution
1900
1911
  include Aws::Structure
1901
1912
  end
1902
1913
 
1903
- # @!attribute [rw] max_results
1904
- # The maximum number of objects returned per page.
1905
- # @return [Integer]
1906
- #
1907
1914
  # @!attribute [rw] next_token
1908
1915
  # The pagination token from the previous API call.
1909
1916
  # @return [String]
1910
1917
  #
1918
+ # @!attribute [rw] max_results
1919
+ # The maximum number of objects returned per page.
1920
+ # @return [Integer]
1921
+ #
1911
1922
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdMappingWorkflowsInput AWS API Documentation
1912
1923
  #
1913
1924
  class ListIdMappingWorkflowsInput < Struct.new(
1914
- :max_results,
1915
- :next_token)
1925
+ :next_token,
1926
+ :max_results)
1916
1927
  SENSITIVE = []
1917
1928
  include Aws::Structure
1918
1929
  end
1919
1930
 
1920
- # @!attribute [rw] next_token
1921
- # The pagination token from the previous API call.
1922
- # @return [String]
1923
- #
1924
1931
  # @!attribute [rw] workflow_summaries
1925
1932
  # A list of `IdMappingWorkflowSummary` objects.
1926
1933
  # @return [Array<Types::IdMappingWorkflowSummary>]
1927
1934
  #
1935
+ # @!attribute [rw] next_token
1936
+ # The pagination token from the previous API call.
1937
+ # @return [String]
1938
+ #
1928
1939
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdMappingWorkflowsOutput AWS API Documentation
1929
1940
  #
1930
1941
  class ListIdMappingWorkflowsOutput < Struct.new(
1931
- :next_token,
1932
- :workflow_summaries)
1942
+ :workflow_summaries,
1943
+ :next_token)
1933
1944
  SENSITIVE = []
1934
1945
  include Aws::Structure
1935
1946
  end
1936
1947
 
1937
- # @!attribute [rw] max_results
1938
- # The maximum number of `IdNamespace` objects returned per page.
1939
- # @return [Integer]
1940
- #
1941
1948
  # @!attribute [rw] next_token
1942
1949
  # The pagination token from the previous API call.
1943
1950
  # @return [String]
1944
1951
  #
1952
+ # @!attribute [rw] max_results
1953
+ # The maximum number of `IdNamespace` objects returned per page.
1954
+ # @return [Integer]
1955
+ #
1945
1956
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdNamespacesInput AWS API Documentation
1946
1957
  #
1947
1958
  class ListIdNamespacesInput < Struct.new(
1948
- :max_results,
1949
- :next_token)
1959
+ :next_token,
1960
+ :max_results)
1950
1961
  SENSITIVE = []
1951
1962
  include Aws::Structure
1952
1963
  end
@@ -1968,24 +1979,24 @@ module Aws::EntityResolution
1968
1979
  include Aws::Structure
1969
1980
  end
1970
1981
 
1971
- # @!attribute [rw] max_results
1972
- # The maximum number of objects returned per page.
1973
- # @return [Integer]
1982
+ # @!attribute [rw] workflow_name
1983
+ # The name of the workflow to be retrieved.
1984
+ # @return [String]
1974
1985
  #
1975
1986
  # @!attribute [rw] next_token
1976
1987
  # The pagination token from the previous API call.
1977
1988
  # @return [String]
1978
1989
  #
1979
- # @!attribute [rw] workflow_name
1980
- # The name of the workflow to be retrieved.
1981
- # @return [String]
1990
+ # @!attribute [rw] max_results
1991
+ # The maximum number of objects returned per page.
1992
+ # @return [Integer]
1982
1993
  #
1983
1994
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListMatchingJobsInput AWS API Documentation
1984
1995
  #
1985
1996
  class ListMatchingJobsInput < Struct.new(
1986
- :max_results,
1997
+ :workflow_name,
1987
1998
  :next_token,
1988
- :workflow_name)
1999
+ :max_results)
1989
2000
  SENSITIVE = []
1990
2001
  include Aws::Structure
1991
2002
  end
@@ -2008,50 +2019,50 @@ module Aws::EntityResolution
2008
2019
  include Aws::Structure
2009
2020
  end
2010
2021
 
2011
- # @!attribute [rw] max_results
2012
- # The maximum number of objects returned per page.
2013
- # @return [Integer]
2014
- #
2015
2022
  # @!attribute [rw] next_token
2016
2023
  # The pagination token from the previous API call.
2017
2024
  # @return [String]
2018
2025
  #
2026
+ # @!attribute [rw] max_results
2027
+ # The maximum number of objects returned per page.
2028
+ # @return [Integer]
2029
+ #
2019
2030
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListMatchingWorkflowsInput AWS API Documentation
2020
2031
  #
2021
2032
  class ListMatchingWorkflowsInput < Struct.new(
2022
- :max_results,
2023
- :next_token)
2033
+ :next_token,
2034
+ :max_results)
2024
2035
  SENSITIVE = []
2025
2036
  include Aws::Structure
2026
2037
  end
2027
2038
 
2028
- # @!attribute [rw] next_token
2029
- # The pagination token from the previous API call.
2030
- # @return [String]
2031
- #
2032
2039
  # @!attribute [rw] workflow_summaries
2033
2040
  # A list of `MatchingWorkflowSummary` objects, each of which contain
2034
2041
  # the fields `WorkflowName`, `WorkflowArn`, `CreatedAt`, and
2035
2042
  # `UpdatedAt`.
2036
2043
  # @return [Array<Types::MatchingWorkflowSummary>]
2037
2044
  #
2045
+ # @!attribute [rw] next_token
2046
+ # The pagination token from the previous API call.
2047
+ # @return [String]
2048
+ #
2038
2049
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListMatchingWorkflowsOutput AWS API Documentation
2039
2050
  #
2040
2051
  class ListMatchingWorkflowsOutput < Struct.new(
2041
- :next_token,
2042
- :workflow_summaries)
2052
+ :workflow_summaries,
2053
+ :next_token)
2043
2054
  SENSITIVE = []
2044
2055
  include Aws::Structure
2045
2056
  end
2046
2057
 
2047
- # @!attribute [rw] max_results
2048
- # The maximum number of objects returned per page.
2049
- # @return [Integer]
2050
- #
2051
2058
  # @!attribute [rw] next_token
2052
2059
  # The pagination token from the previous API call.
2053
2060
  # @return [String]
2054
2061
  #
2062
+ # @!attribute [rw] max_results
2063
+ # The maximum number of objects returned per page.
2064
+ # @return [Integer]
2065
+ #
2055
2066
  # @!attribute [rw] provider_name
2056
2067
  # The name of the provider. This name is typically the company name.
2057
2068
  # @return [String]
@@ -2059,61 +2070,61 @@ module Aws::EntityResolution
2059
2070
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListProviderServicesInput AWS API Documentation
2060
2071
  #
2061
2072
  class ListProviderServicesInput < Struct.new(
2062
- :max_results,
2063
2073
  :next_token,
2074
+ :max_results,
2064
2075
  :provider_name)
2065
2076
  SENSITIVE = []
2066
2077
  include Aws::Structure
2067
2078
  end
2068
2079
 
2069
- # @!attribute [rw] next_token
2070
- # The pagination token from the previous API call.
2071
- # @return [String]
2072
- #
2073
2080
  # @!attribute [rw] provider_service_summaries
2074
2081
  # A list of `ProviderServices` objects.
2075
2082
  # @return [Array<Types::ProviderServiceSummary>]
2076
2083
  #
2084
+ # @!attribute [rw] next_token
2085
+ # The pagination token from the previous API call.
2086
+ # @return [String]
2087
+ #
2077
2088
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListProviderServicesOutput AWS API Documentation
2078
2089
  #
2079
2090
  class ListProviderServicesOutput < Struct.new(
2080
- :next_token,
2081
- :provider_service_summaries)
2091
+ :provider_service_summaries,
2092
+ :next_token)
2082
2093
  SENSITIVE = []
2083
2094
  include Aws::Structure
2084
2095
  end
2085
2096
 
2086
- # @!attribute [rw] max_results
2087
- # The maximum number of objects returned per page.
2088
- # @return [Integer]
2089
- #
2090
2097
  # @!attribute [rw] next_token
2091
2098
  # The pagination token from the previous API call.
2092
2099
  # @return [String]
2093
2100
  #
2101
+ # @!attribute [rw] max_results
2102
+ # The maximum number of objects returned per page.
2103
+ # @return [Integer]
2104
+ #
2094
2105
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListSchemaMappingsInput AWS API Documentation
2095
2106
  #
2096
2107
  class ListSchemaMappingsInput < Struct.new(
2097
- :max_results,
2098
- :next_token)
2108
+ :next_token,
2109
+ :max_results)
2099
2110
  SENSITIVE = []
2100
2111
  include Aws::Structure
2101
2112
  end
2102
2113
 
2103
- # @!attribute [rw] next_token
2104
- # The pagination token from the previous API call.
2105
- # @return [String]
2106
- #
2107
2114
  # @!attribute [rw] schema_list
2108
2115
  # A list of `SchemaMappingSummary` objects, each of which contain the
2109
2116
  # fields `SchemaName`, `SchemaArn`, `CreatedAt`, `UpdatedAt`.
2110
2117
  # @return [Array<Types::SchemaMappingSummary>]
2111
2118
  #
2119
+ # @!attribute [rw] next_token
2120
+ # The pagination token from the previous API call.
2121
+ # @return [String]
2122
+ #
2112
2123
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListSchemaMappingsOutput AWS API Documentation
2113
2124
  #
2114
2125
  class ListSchemaMappingsOutput < Struct.new(
2115
- :next_token,
2116
- :schema_list)
2126
+ :schema_list,
2127
+ :next_token)
2117
2128
  SENSITIVE = []
2118
2129
  include Aws::Structure
2119
2130
  end
@@ -2146,57 +2157,57 @@ module Aws::EntityResolution
2146
2157
  # A list of `MatchingWorkflowSummary` objects, each of which contain the
2147
2158
  # fields `WorkflowName`, `WorkflowArn`, `CreatedAt`, `UpdatedAt`.
2148
2159
  #
2160
+ # @!attribute [rw] workflow_name
2161
+ # The name of the workflow.
2162
+ # @return [String]
2163
+ #
2164
+ # @!attribute [rw] workflow_arn
2165
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
2166
+ # the `MatchingWorkflow`.
2167
+ # @return [String]
2168
+ #
2149
2169
  # @!attribute [rw] created_at
2150
2170
  # The timestamp of when the workflow was created.
2151
2171
  # @return [Time]
2152
2172
  #
2153
- # @!attribute [rw] resolution_type
2154
- # The method that has been specified for data matching, either using
2155
- # matching provided by Entity Resolution or through a provider
2156
- # service.
2157
- # @return [String]
2158
- #
2159
2173
  # @!attribute [rw] updated_at
2160
2174
  # The timestamp of when the workflow was last updated.
2161
2175
  # @return [Time]
2162
2176
  #
2163
- # @!attribute [rw] workflow_arn
2164
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
2165
- # the `MatchingWorkflow`.
2166
- # @return [String]
2167
- #
2168
- # @!attribute [rw] workflow_name
2169
- # The name of the workflow.
2177
+ # @!attribute [rw] resolution_type
2178
+ # The method that has been specified for data matching, either using
2179
+ # matching provided by Entity Resolution or through a provider
2180
+ # service.
2170
2181
  # @return [String]
2171
2182
  #
2172
2183
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/MatchingWorkflowSummary AWS API Documentation
2173
2184
  #
2174
2185
  class MatchingWorkflowSummary < Struct.new(
2186
+ :workflow_name,
2187
+ :workflow_arn,
2175
2188
  :created_at,
2176
- :resolution_type,
2177
2189
  :updated_at,
2178
- :workflow_arn,
2179
- :workflow_name)
2190
+ :resolution_type)
2180
2191
  SENSITIVE = []
2181
2192
  include Aws::Structure
2182
2193
  end
2183
2194
 
2184
2195
  # An object containing `ProviderConfiguration` and `ProviderServiceArn`.
2185
2196
  #
2197
+ # @!attribute [rw] provider_service_arn
2198
+ # The Amazon Resource Name (ARN) of the provider service.
2199
+ # @return [String]
2200
+ #
2186
2201
  # @!attribute [rw] provider_configuration
2187
2202
  # An object which defines any additional configurations required by
2188
2203
  # the provider service.
2189
2204
  # @return [Hash,Array,String,Numeric,Boolean]
2190
2205
  #
2191
- # @!attribute [rw] provider_service_arn
2192
- # The Amazon Resource Name (ARN) of the provider service.
2193
- # @return [String]
2194
- #
2195
2206
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/NamespaceProviderProperties AWS API Documentation
2196
2207
  #
2197
2208
  class NamespaceProviderProperties < Struct.new(
2198
- :provider_configuration,
2199
- :provider_service_arn)
2209
+ :provider_service_arn,
2210
+ :provider_configuration)
2200
2211
  SENSITIVE = []
2201
2212
  include Aws::Structure
2202
2213
  end
@@ -2204,6 +2215,15 @@ module Aws::EntityResolution
2204
2215
  # The rule-based properties of an ID namespace. These properties define
2205
2216
  # how the ID namespace can be used in an ID mapping workflow.
2206
2217
  #
2218
+ # @!attribute [rw] rules
2219
+ # The rules for the ID namespace.
2220
+ # @return [Array<Types::Rule>]
2221
+ #
2222
+ # @!attribute [rw] rule_definition_types
2223
+ # The sets of rules you can use in an ID mapping workflow. The
2224
+ # limitations specified for the source and target must be compatible.
2225
+ # @return [Array<String>]
2226
+ #
2207
2227
  # @!attribute [rw] attribute_matching_model
2208
2228
  # The comparison type. You can either choose `ONE_TO_ONE` or
2209
2229
  # `MANY_TO_MANY` as the `attributeMatchingModel`.
@@ -2232,22 +2252,13 @@ module Aws::EntityResolution
2232
2252
  # records in the source are matched to one record in the target.
2233
2253
  # @return [Array<String>]
2234
2254
  #
2235
- # @!attribute [rw] rule_definition_types
2236
- # The sets of rules you can use in an ID mapping workflow. The
2237
- # limitations specified for the source and target must be compatible.
2238
- # @return [Array<String>]
2239
- #
2240
- # @!attribute [rw] rules
2241
- # The rules for the ID namespace.
2242
- # @return [Array<Types::Rule>]
2243
- #
2244
2255
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/NamespaceRuleBasedProperties AWS API Documentation
2245
2256
  #
2246
2257
  class NamespaceRuleBasedProperties < Struct.new(
2247
- :attribute_matching_model,
2248
- :record_matching_models,
2258
+ :rules,
2249
2259
  :rule_definition_types,
2250
- :rules)
2260
+ :attribute_matching_model,
2261
+ :record_matching_models)
2251
2262
  SENSITIVE = []
2252
2263
  include Aws::Structure
2253
2264
  end
@@ -2257,20 +2268,20 @@ module Aws::EntityResolution
2257
2268
  # included in the output table, and whether the values of the column
2258
2269
  # should be hashed.
2259
2270
  #
2260
- # @!attribute [rw] hashed
2261
- # Enables the ability to hash the column values in the output.
2262
- # @return [Boolean]
2263
- #
2264
2271
  # @!attribute [rw] name
2265
2272
  # A name of a column to be written to the output. This must be an
2266
2273
  # `InputField` name in the schema mapping.
2267
2274
  # @return [String]
2268
2275
  #
2276
+ # @!attribute [rw] hashed
2277
+ # Enables the ability to hash the column values in the output.
2278
+ # @return [Boolean]
2279
+ #
2269
2280
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/OutputAttribute AWS API Documentation
2270
2281
  #
2271
2282
  class OutputAttribute < Struct.new(
2272
- :hashed,
2273
- :name)
2283
+ :name,
2284
+ :hashed)
2274
2285
  SENSITIVE = []
2275
2286
  include Aws::Structure
2276
2287
  end
@@ -2280,19 +2291,15 @@ module Aws::EntityResolution
2280
2291
  # included in the output table, and whether the values of the column
2281
2292
  # should be hashed.
2282
2293
  #
2294
+ # @!attribute [rw] output_s3_path
2295
+ # The S3 path to which Entity Resolution will write the output table.
2296
+ # @return [String]
2297
+ #
2283
2298
  # @!attribute [rw] kms_arn
2284
2299
  # Customer KMS ARN for encryption at rest. If not provided, system
2285
2300
  # will use an Entity Resolution managed KMS key.
2286
2301
  # @return [String]
2287
2302
  #
2288
- # @!attribute [rw] apply_normalization
2289
- # Normalizes the attributes defined in the schema in the input data.
2290
- # For example, if an attribute has an `AttributeType` of
2291
- # `PHONE_NUMBER`, and the data in the input table is in a format of
2292
- # 1234567890, Entity Resolution will normalize this field in the
2293
- # output to (123)-456-7890.
2294
- # @return [Boolean]
2295
- #
2296
2303
  # @!attribute [rw] output
2297
2304
  # A list of `OutputAttribute` objects, each of which have the fields
2298
2305
  # `Name` and `Hashed`. Each of these objects selects a column to be
@@ -2300,36 +2307,40 @@ module Aws::EntityResolution
2300
2307
  # should be hashed.
2301
2308
  # @return [Array<Types::OutputAttribute>]
2302
2309
  #
2303
- # @!attribute [rw] output_s3_path
2304
- # The S3 path to which Entity Resolution will write the output table.
2305
- # @return [String]
2310
+ # @!attribute [rw] apply_normalization
2311
+ # Normalizes the attributes defined in the schema in the input data.
2312
+ # For example, if an attribute has an `AttributeType` of
2313
+ # `PHONE_NUMBER`, and the data in the input table is in a format of
2314
+ # 1234567890, Entity Resolution will normalize this field in the
2315
+ # output to (123)-456-7890.
2316
+ # @return [Boolean]
2306
2317
  #
2307
2318
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/OutputSource AWS API Documentation
2308
2319
  #
2309
2320
  class OutputSource < Struct.new(
2321
+ :output_s3_path,
2310
2322
  :kms_arn,
2311
- :apply_normalization,
2312
2323
  :output,
2313
- :output_s3_path)
2324
+ :apply_normalization)
2314
2325
  SENSITIVE = []
2315
2326
  include Aws::Structure
2316
2327
  end
2317
2328
 
2318
2329
  # The input schema supported by provider service.
2319
2330
  #
2320
- # @!attribute [rw] provider_schema_attributes
2321
- # The provider schema attributes.
2322
- # @return [Array<Types::ProviderSchemaAttribute>]
2323
- #
2324
2331
  # @!attribute [rw] schemas
2325
2332
  # Input schema for the provider service.
2326
2333
  # @return [Array<Array<String>>]
2327
2334
  #
2335
+ # @!attribute [rw] provider_schema_attributes
2336
+ # The provider schema attributes.
2337
+ # @return [Array<Types::ProviderSchemaAttribute>]
2338
+ #
2328
2339
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderComponentSchema AWS API Documentation
2329
2340
  #
2330
2341
  class ProviderComponentSchema < Struct.new(
2331
- :provider_schema_attributes,
2332
- :schemas)
2342
+ :schemas,
2343
+ :provider_schema_attributes)
2333
2344
  SENSITIVE = []
2334
2345
  include Aws::Structure
2335
2346
  end
@@ -2361,20 +2372,20 @@ module Aws::EntityResolution
2361
2372
  # The description of the ID namespace.
2362
2373
  # @return [String]
2363
2374
  #
2364
- # @!attribute [rw] provider_source_configuration_definition
2365
- # Configurations required for the source ID namespace.
2366
- # @return [Hash,Array,String,Numeric,Boolean]
2367
- #
2368
2375
  # @!attribute [rw] provider_target_configuration_definition
2369
2376
  # Configurations required for the target ID namespace.
2370
2377
  # @return [Hash,Array,String,Numeric,Boolean]
2371
2378
  #
2379
+ # @!attribute [rw] provider_source_configuration_definition
2380
+ # Configurations required for the source ID namespace.
2381
+ # @return [Hash,Array,String,Numeric,Boolean]
2382
+ #
2372
2383
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderIdNameSpaceConfiguration AWS API Documentation
2373
2384
  #
2374
2385
  class ProviderIdNameSpaceConfiguration < Struct.new(
2375
2386
  :description,
2376
- :provider_source_configuration_definition,
2377
- :provider_target_configuration_definition)
2387
+ :provider_target_configuration_definition,
2388
+ :provider_source_configuration_definition)
2378
2389
  SENSITIVE = []
2379
2390
  include Aws::Structure
2380
2391
  end
@@ -2402,29 +2413,29 @@ module Aws::EntityResolution
2402
2413
 
2403
2414
  # The identifiers of the provider service, from Data Exchange.
2404
2415
  #
2405
- # @!attribute [rw] asset_id
2406
- # The asset ID on Data Exchange.
2407
- # @return [String]
2408
- #
2409
2416
  # @!attribute [rw] data_set_id
2410
2417
  # The dataset ID on Data Exchange.
2411
2418
  # @return [String]
2412
2419
  #
2413
- # @!attribute [rw] listing_id
2414
- # The listing ID on Data Exchange.
2415
- # @return [String]
2416
- #
2417
2420
  # @!attribute [rw] revision_id
2418
2421
  # The revision ID on Data Exchange.
2419
2422
  # @return [String]
2420
2423
  #
2424
+ # @!attribute [rw] asset_id
2425
+ # The asset ID on Data Exchange.
2426
+ # @return [String]
2427
+ #
2428
+ # @!attribute [rw] listing_id
2429
+ # The listing ID on Data Exchange.
2430
+ # @return [String]
2431
+ #
2421
2432
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderMarketplaceConfiguration AWS API Documentation
2422
2433
  #
2423
2434
  class ProviderMarketplaceConfiguration < Struct.new(
2424
- :asset_id,
2425
2435
  :data_set_id,
2426
- :listing_id,
2427
- :revision_id)
2436
+ :revision_id,
2437
+ :asset_id,
2438
+ :listing_id)
2428
2439
  SENSITIVE = []
2429
2440
  include Aws::Structure
2430
2441
  end
@@ -2432,25 +2443,25 @@ module Aws::EntityResolution
2432
2443
  # An object containing the `providerServiceARN`,
2433
2444
  # `intermediateSourceConfiguration`, and `providerConfiguration`.
2434
2445
  #
2435
- # @!attribute [rw] intermediate_source_configuration
2436
- # The Amazon S3 location that temporarily stores your data while it
2437
- # processes. Your information won't be saved permanently.
2438
- # @return [Types::IntermediateSourceConfiguration]
2446
+ # @!attribute [rw] provider_service_arn
2447
+ # The ARN of the provider service.
2448
+ # @return [String]
2439
2449
  #
2440
2450
  # @!attribute [rw] provider_configuration
2441
2451
  # The required configuration fields to use with the provider service.
2442
2452
  # @return [Hash,Array,String,Numeric,Boolean]
2443
2453
  #
2444
- # @!attribute [rw] provider_service_arn
2445
- # The ARN of the provider service.
2446
- # @return [String]
2454
+ # @!attribute [rw] intermediate_source_configuration
2455
+ # The Amazon S3 location that temporarily stores your data while it
2456
+ # processes. Your information won't be saved permanently.
2457
+ # @return [Types::IntermediateSourceConfiguration]
2447
2458
  #
2448
2459
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderProperties AWS API Documentation
2449
2460
  #
2450
2461
  class ProviderProperties < Struct.new(
2451
- :intermediate_source_configuration,
2462
+ :provider_service_arn,
2452
2463
  :provider_configuration,
2453
- :provider_service_arn)
2464
+ :intermediate_source_configuration)
2454
2465
  SENSITIVE = []
2455
2466
  include Aws::Structure
2456
2467
  end
@@ -2461,25 +2472,39 @@ module Aws::EntityResolution
2461
2472
  # The field name.
2462
2473
  # @return [String]
2463
2474
  #
2464
- # @!attribute [rw] hashing
2465
- # The hashing attribute of the provider schema.
2466
- # @return [Boolean]
2475
+ # @!attribute [rw] type
2476
+ # The type of the provider schema attribute.
2477
+ #
2478
+ # LiveRamp supports: `NAME` \| `NAME_FIRST` \| `NAME_MIDDLE` \|
2479
+ # `NAME_LAST` \| `ADDRESS` \| `ADDRESS_STREET1` \| `ADDRESS_STREET2`
2480
+ # \| `ADDRESS_STREET3` \| `ADDRESS_CITY` \| `ADDRESS_STATE` \|
2481
+ # `ADDRESS_COUNTRY` \| `ADDRESS_POSTALCODE` \| `PHONE` \|
2482
+ # `PHONE_NUMBER` \| `EMAIL_ADDRESS` \| `UNIQUE_ID` \| `PROVIDER_ID`
2483
+ #
2484
+ # TransUnion supports: `NAME` \| `NAME_FIRST` \| `NAME_LAST` \|
2485
+ # `ADDRESS` \| `ADDRESS_CITY` \| `ADDRESS_STATE` \| `ADDRESS_COUNTRY`
2486
+ # \| `ADDRESS_POSTALCODE` \| `PHONE_NUMBER` \| `EMAIL_ADDRESS` \|
2487
+ # `UNIQUE_ID` \| `DATE` \| `IPV4` \| `IPV6` \| `MAID`
2488
+ #
2489
+ # Unified ID 2.0 supports: `PHONE_NUMBER` \| `EMAIL_ADDRESS` \|
2490
+ # `UNIQUE_ID`
2491
+ # @return [String]
2467
2492
  #
2468
2493
  # @!attribute [rw] sub_type
2469
2494
  # The sub type of the provider schema attribute.
2470
2495
  # @return [String]
2471
2496
  #
2472
- # @!attribute [rw] type
2473
- # The type of the provider schema attribute.
2474
- # @return [String]
2497
+ # @!attribute [rw] hashing
2498
+ # The hashing attribute of the provider schema.
2499
+ # @return [Boolean]
2475
2500
  #
2476
2501
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderSchemaAttribute AWS API Documentation
2477
2502
  #
2478
2503
  class ProviderSchemaAttribute < Struct.new(
2479
2504
  :field_name,
2480
- :hashing,
2505
+ :type,
2481
2506
  :sub_type,
2482
- :type)
2507
+ :hashing)
2483
2508
  SENSITIVE = []
2484
2509
  include Aws::Structure
2485
2510
  end
@@ -2488,15 +2513,15 @@ module Aws::EntityResolution
2488
2513
  # `providerName`, `providerServiceArn`, `providerServiceName`, and
2489
2514
  # `providerServiceType`.
2490
2515
  #
2491
- # @!attribute [rw] provider_name
2492
- # The name of the provider. This name is typically the company name.
2493
- # @return [String]
2494
- #
2495
2516
  # @!attribute [rw] provider_service_arn
2496
2517
  # The ARN (Amazon Resource Name) that Entity Resolution generated for
2497
2518
  # the `providerService`.
2498
2519
  # @return [String]
2499
2520
  #
2521
+ # @!attribute [rw] provider_name
2522
+ # The name of the provider. This name is typically the company name.
2523
+ # @return [String]
2524
+ #
2500
2525
  # @!attribute [rw] provider_service_display_name
2501
2526
  # The display name of the provider service.
2502
2527
  # @return [String]
@@ -2512,8 +2537,8 @@ module Aws::EntityResolution
2512
2537
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderServiceSummary AWS API Documentation
2513
2538
  #
2514
2539
  class ProviderServiceSummary < Struct.new(
2515
- :provider_name,
2516
2540
  :provider_service_arn,
2541
+ :provider_name,
2517
2542
  :provider_service_display_name,
2518
2543
  :provider_service_name,
2519
2544
  :provider_service_type)
@@ -2526,6 +2551,10 @@ module Aws::EntityResolution
2526
2551
  # needs to be updated.
2527
2552
  # @return [String]
2528
2553
  #
2554
+ # @!attribute [rw] token
2555
+ # A unique identifier for the current revision of the policy.
2556
+ # @return [String]
2557
+ #
2529
2558
  # @!attribute [rw] policy
2530
2559
  # The resource-based policy.
2531
2560
  #
@@ -2535,16 +2564,12 @@ module Aws::EntityResolution
2535
2564
  # operation.
2536
2565
  # @return [String]
2537
2566
  #
2538
- # @!attribute [rw] token
2539
- # A unique identifier for the current revision of the policy.
2540
- # @return [String]
2541
- #
2542
2567
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/PutPolicyInput AWS API Documentation
2543
2568
  #
2544
2569
  class PutPolicyInput < Struct.new(
2545
2570
  :arn,
2546
- :policy,
2547
- :token)
2571
+ :token,
2572
+ :policy)
2548
2573
  SENSITIVE = []
2549
2574
  include Aws::Structure
2550
2575
  end
@@ -2553,20 +2578,20 @@ module Aws::EntityResolution
2553
2578
  # The Entity Resolution resource ARN.
2554
2579
  # @return [String]
2555
2580
  #
2556
- # @!attribute [rw] policy
2557
- # The resource-based policy.
2558
- # @return [String]
2559
- #
2560
2581
  # @!attribute [rw] token
2561
2582
  # A unique identifier for the current revision of the policy.
2562
2583
  # @return [String]
2563
2584
  #
2585
+ # @!attribute [rw] policy
2586
+ # The resource-based policy.
2587
+ # @return [String]
2588
+ #
2564
2589
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/PutPolicyOutput AWS API Documentation
2565
2590
  #
2566
2591
  class PutPolicyOutput < Struct.new(
2567
2592
  :arn,
2568
- :policy,
2569
- :token)
2593
+ :token,
2594
+ :policy)
2570
2595
  SENSITIVE = []
2571
2596
  include Aws::Structure
2572
2597
  end
@@ -2574,10 +2599,6 @@ module Aws::EntityResolution
2574
2599
  # An object which defines the `resolutionType` and the
2575
2600
  # `ruleBasedProperties`.
2576
2601
  #
2577
- # @!attribute [rw] provider_properties
2578
- # The properties of the provider service.
2579
- # @return [Types::ProviderProperties]
2580
- #
2581
2602
  # @!attribute [rw] resolution_type
2582
2603
  # The type of matching. There are three types of matching:
2583
2604
  # `RULE_MATCHING`, `ML_MATCHING`, and `PROVIDER`.
@@ -2588,12 +2609,16 @@ module Aws::EntityResolution
2588
2609
  # field `Rules`, which is a list of rule objects.
2589
2610
  # @return [Types::RuleBasedProperties]
2590
2611
  #
2612
+ # @!attribute [rw] provider_properties
2613
+ # The properties of the provider service.
2614
+ # @return [Types::ProviderProperties]
2615
+ #
2591
2616
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ResolutionTechniques AWS API Documentation
2592
2617
  #
2593
2618
  class ResolutionTechniques < Struct.new(
2594
- :provider_properties,
2595
2619
  :resolution_type,
2596
- :rule_based_properties)
2620
+ :rule_based_properties,
2621
+ :provider_properties)
2597
2622
  SENSITIVE = []
2598
2623
  include Aws::Structure
2599
2624
  end
@@ -2613,21 +2638,21 @@ module Aws::EntityResolution
2613
2638
 
2614
2639
  # An object containing `RuleName`, and `MatchingKeys`.
2615
2640
  #
2641
+ # @!attribute [rw] rule_name
2642
+ # A name for the matching rule.
2643
+ # @return [String]
2644
+ #
2616
2645
  # @!attribute [rw] matching_keys
2617
2646
  # A list of `MatchingKeys`. The `MatchingKeys` must have been defined
2618
2647
  # in the `SchemaMapping`. Two records are considered to match
2619
2648
  # according to this rule if all of the `MatchingKeys` match.
2620
2649
  # @return [Array<String>]
2621
2650
  #
2622
- # @!attribute [rw] rule_name
2623
- # A name for the matching rule.
2624
- # @return [String]
2625
- #
2626
2651
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/Rule AWS API Documentation
2627
2652
  #
2628
2653
  class Rule < Struct.new(
2629
- :matching_keys,
2630
- :rule_name)
2654
+ :rule_name,
2655
+ :matching_keys)
2631
2656
  SENSITIVE = []
2632
2657
  include Aws::Structure
2633
2658
  end
@@ -2636,6 +2661,11 @@ module Aws::EntityResolution
2636
2661
  # matching workflow. RuleBasedProperties contain a `Rules` field, which
2637
2662
  # is a list of rule objects.
2638
2663
  #
2664
+ # @!attribute [rw] rules
2665
+ # A list of `Rule` objects, each of which have fields `RuleName` and
2666
+ # `MatchingKeys`.
2667
+ # @return [Array<Types::Rule>]
2668
+ #
2639
2669
  # @!attribute [rw] attribute_matching_model
2640
2670
  # The comparison type. You can either choose `ONE_TO_ONE` or
2641
2671
  # `MANY_TO_MANY` as the `attributeMatchingModel`.
@@ -2663,44 +2693,69 @@ module Aws::EntityResolution
2663
2693
  # generating IDs.
2664
2694
  # @return [String]
2665
2695
  #
2666
- # @!attribute [rw] rules
2667
- # A list of `Rule` objects, each of which have fields `RuleName` and
2668
- # `MatchingKeys`.
2669
- # @return [Array<Types::Rule>]
2670
- #
2671
2696
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/RuleBasedProperties AWS API Documentation
2672
2697
  #
2673
2698
  class RuleBasedProperties < Struct.new(
2699
+ :rules,
2674
2700
  :attribute_matching_model,
2675
- :match_purpose,
2676
- :rules)
2701
+ :match_purpose)
2677
2702
  SENSITIVE = []
2678
2703
  include Aws::Structure
2679
2704
  end
2680
2705
 
2681
- # An object containing `FieldName`, `Type`, `GroupName`, `MatchKey`,
2682
- # `Hashing`, and `SubType`.
2706
+ # A configuration object for defining input data fields in Entity
2707
+ # Resolution. The `SchemaInputAttribute` specifies how individual fields
2708
+ # in your input data should be processed and matched.
2683
2709
  #
2684
2710
  # @!attribute [rw] field_name
2685
2711
  # A string containing the field name.
2686
2712
  # @return [String]
2687
2713
  #
2714
+ # @!attribute [rw] type
2715
+ # The type of the attribute, selected from a list of values.
2716
+ #
2717
+ # LiveRamp supports: `NAME` \| `NAME_FIRST` \| `NAME_MIDDLE` \|
2718
+ # `NAME_LAST` \| `ADDRESS` \| `ADDRESS_STREET1` \| `ADDRESS_STREET2`
2719
+ # \| `ADDRESS_STREET3` \| `ADDRESS_CITY` \| `ADDRESS_STATE` \|
2720
+ # `ADDRESS_COUNTRY` \| `ADDRESS_POSTALCODE` \| `PHONE` \|
2721
+ # `PHONE_NUMBER` \| `EMAIL_ADDRESS` \| `UNIQUE_ID` \| `PROVIDER_ID`
2722
+ #
2723
+ # TransUnion supports: `NAME` \| `NAME_FIRST` \| `NAME_LAST` \|
2724
+ # `ADDRESS` \| `ADDRESS_CITY` \| `ADDRESS_STATE` \| `ADDRESS_COUNTRY`
2725
+ # \| `ADDRESS_POSTALCODE` \| `PHONE_NUMBER` \| `EMAIL_ADDRESS` \|
2726
+ # `UNIQUE_ID` \| `IPV4` \| `IPV6` \| `MAID`
2727
+ #
2728
+ # Unified ID 2.0 supports: `PHONE_NUMBER` \| `EMAIL_ADDRESS` \|
2729
+ # `UNIQUE_ID`
2730
+ #
2731
+ # <note markdown="1"> Normalization is only supported for `NAME`, `ADDRESS`, `PHONE`, and
2732
+ # `EMAIL_ADDRESS`.
2733
+ #
2734
+ # If you want to normalize `NAME_FIRST`, `NAME_MIDDLE`, and
2735
+ # `NAME_LAST`, you must group them by assigning them to the `NAME`
2736
+ # `groupName`.
2737
+ #
2738
+ # If you want to normalize `ADDRESS_STREET1`, `ADDRESS_STREET2`,
2739
+ # `ADDRESS_STREET3`, `ADDRESS_CITY`, `ADDRESS_STATE`,
2740
+ # `ADDRESS_COUNTRY`, and `ADDRESS_POSTALCODE`, you must group them by
2741
+ # assigning them to the `ADDRESS` `groupName`.
2742
+ #
2743
+ # If you want to normalize `PHONE_NUMBER` and `PHONE_COUNTRYCODE`, you
2744
+ # must group them by assigning them to the `PHONE` `groupName`.
2745
+ #
2746
+ # </note>
2747
+ # @return [String]
2748
+ #
2688
2749
  # @!attribute [rw] group_name
2689
2750
  # A string that instructs Entity Resolution to combine several columns
2690
2751
  # into a unified column with the identical attribute type.
2691
2752
  #
2692
- # For example, when working with columns such as `first_name`,
2693
- # `middle_name`, and `last_name`, assigning them a common `groupName`
2753
+ # For example, when working with columns such as `NAME_FIRST`,
2754
+ # `NAME_MIDDLE`, and `NAME_LAST`, assigning them a common `groupName`
2694
2755
  # will prompt Entity Resolution to concatenate them into a single
2695
2756
  # value.
2696
2757
  # @return [String]
2697
2758
  #
2698
- # @!attribute [rw] hashed
2699
- # Indicates if the column values are hashed in the schema input. If
2700
- # the value is set to `TRUE`, the column values are hashed. If the
2701
- # value is set to `FALSE`, the column values are cleartext.
2702
- # @return [Boolean]
2703
- #
2704
2759
  # @!attribute [rw] match_key
2705
2760
  # A key that allows grouping of multiple input attributes into a
2706
2761
  # unified matching group.
@@ -2720,19 +2775,23 @@ module Aws::EntityResolution
2720
2775
  # The subtype of the attribute, selected from a list of values.
2721
2776
  # @return [String]
2722
2777
  #
2723
- # @!attribute [rw] type
2724
- # The type of the attribute, selected from a list of values.
2725
- # @return [String]
2778
+ # @!attribute [rw] hashed
2779
+ # Indicates if the column values are hashed in the schema input.
2780
+ #
2781
+ # If the value is set to `TRUE`, the column values are hashed.
2782
+ #
2783
+ # If the value is set to `FALSE`, the column values are cleartext.
2784
+ # @return [Boolean]
2726
2785
  #
2727
2786
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/SchemaInputAttribute AWS API Documentation
2728
2787
  #
2729
2788
  class SchemaInputAttribute < Struct.new(
2730
2789
  :field_name,
2790
+ :type,
2731
2791
  :group_name,
2732
- :hashed,
2733
2792
  :match_key,
2734
2793
  :sub_type,
2735
- :type)
2794
+ :hashed)
2736
2795
  SENSITIVE = []
2737
2796
  include Aws::Structure
2738
2797
  end
@@ -2740,52 +2799,52 @@ module Aws::EntityResolution
2740
2799
  # An object containing `SchemaName`, `SchemaArn`, `CreatedAt`,
2741
2800
  # and`UpdatedAt`.
2742
2801
  #
2743
- # @!attribute [rw] created_at
2744
- # The timestamp of when the `SchemaMapping` was created.
2745
- # @return [Time]
2746
- #
2747
- # @!attribute [rw] has_workflows
2748
- # Specifies whether the schema mapping has been applied to a workflow.
2749
- # @return [Boolean]
2802
+ # @!attribute [rw] schema_name
2803
+ # The name of the schema.
2804
+ # @return [String]
2750
2805
  #
2751
2806
  # @!attribute [rw] schema_arn
2752
2807
  # The ARN (Amazon Resource Name) that Entity Resolution generated for
2753
2808
  # the `SchemaMapping`.
2754
2809
  # @return [String]
2755
2810
  #
2756
- # @!attribute [rw] schema_name
2757
- # The name of the schema.
2758
- # @return [String]
2811
+ # @!attribute [rw] created_at
2812
+ # The timestamp of when the `SchemaMapping` was created.
2813
+ # @return [Time]
2759
2814
  #
2760
2815
  # @!attribute [rw] updated_at
2761
2816
  # The timestamp of when the `SchemaMapping` was last updated.
2762
2817
  # @return [Time]
2763
2818
  #
2819
+ # @!attribute [rw] has_workflows
2820
+ # Specifies whether the schema mapping has been applied to a workflow.
2821
+ # @return [Boolean]
2822
+ #
2764
2823
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/SchemaMappingSummary AWS API Documentation
2765
2824
  #
2766
2825
  class SchemaMappingSummary < Struct.new(
2767
- :created_at,
2768
- :has_workflows,
2769
- :schema_arn,
2770
2826
  :schema_name,
2771
- :updated_at)
2827
+ :schema_arn,
2828
+ :created_at,
2829
+ :updated_at,
2830
+ :has_workflows)
2772
2831
  SENSITIVE = []
2773
2832
  include Aws::Structure
2774
2833
  end
2775
2834
 
2776
- # @!attribute [rw] output_source_config
2777
- # A list of `OutputSource` objects.
2778
- # @return [Array<Types::IdMappingJobOutputSource>]
2779
- #
2780
2835
  # @!attribute [rw] workflow_name
2781
2836
  # The name of the ID mapping job to be retrieved.
2782
2837
  # @return [String]
2783
2838
  #
2839
+ # @!attribute [rw] output_source_config
2840
+ # A list of `OutputSource` objects.
2841
+ # @return [Array<Types::IdMappingJobOutputSource>]
2842
+ #
2784
2843
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJobInput AWS API Documentation
2785
2844
  #
2786
2845
  class StartIdMappingJobInput < Struct.new(
2787
- :output_source_config,
2788
- :workflow_name)
2846
+ :workflow_name,
2847
+ :output_source_config)
2789
2848
  SENSITIVE = []
2790
2849
  include Aws::Structure
2791
2850
  end
@@ -2887,15 +2946,14 @@ module Aws::EntityResolution
2887
2946
  #
2888
2947
  class UntagResourceOutput < Aws::EmptyStructure; end
2889
2948
 
2949
+ # @!attribute [rw] workflow_name
2950
+ # The name of the workflow.
2951
+ # @return [String]
2952
+ #
2890
2953
  # @!attribute [rw] description
2891
2954
  # A description of the workflow.
2892
2955
  # @return [String]
2893
2956
  #
2894
- # @!attribute [rw] id_mapping_techniques
2895
- # An object which defines the ID mapping technique and any additional
2896
- # configurations.
2897
- # @return [Types::IdMappingTechniques]
2898
- #
2899
2957
  # @!attribute [rw] input_source_config
2900
2958
  # A list of `InputSource` objects, which have the fields
2901
2959
  # `InputSourceARN` and `SchemaName`.
@@ -2906,38 +2964,44 @@ module Aws::EntityResolution
2906
2964
  # `OutputS3Path` and `KMSArn`.
2907
2965
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
2908
2966
  #
2967
+ # @!attribute [rw] id_mapping_techniques
2968
+ # An object which defines the ID mapping technique and any additional
2969
+ # configurations.
2970
+ # @return [Types::IdMappingTechniques]
2971
+ #
2909
2972
  # @!attribute [rw] role_arn
2910
2973
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2911
2974
  # assumes this role to access Amazon Web Services resources on your
2912
2975
  # behalf.
2913
2976
  # @return [String]
2914
2977
  #
2915
- # @!attribute [rw] workflow_name
2916
- # The name of the workflow.
2917
- # @return [String]
2918
- #
2919
2978
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdMappingWorkflowInput AWS API Documentation
2920
2979
  #
2921
2980
  class UpdateIdMappingWorkflowInput < Struct.new(
2981
+ :workflow_name,
2922
2982
  :description,
2923
- :id_mapping_techniques,
2924
2983
  :input_source_config,
2925
2984
  :output_source_config,
2926
- :role_arn,
2927
- :workflow_name)
2985
+ :id_mapping_techniques,
2986
+ :role_arn)
2928
2987
  SENSITIVE = []
2929
2988
  include Aws::Structure
2930
2989
  end
2931
2990
 
2991
+ # @!attribute [rw] workflow_name
2992
+ # The name of the workflow.
2993
+ # @return [String]
2994
+ #
2995
+ # @!attribute [rw] workflow_arn
2996
+ # The Amazon Resource Name (ARN) of the workflow role. Entity
2997
+ # Resolution assumes this role to access Amazon Web Services resources
2998
+ # on your behalf.
2999
+ # @return [String]
3000
+ #
2932
3001
  # @!attribute [rw] description
2933
3002
  # A description of the workflow.
2934
3003
  # @return [String]
2935
3004
  #
2936
- # @!attribute [rw] id_mapping_techniques
2937
- # An object which defines the ID mapping technique and any additional
2938
- # configurations.
2939
- # @return [Types::IdMappingTechniques]
2940
- #
2941
3005
  # @!attribute [rw] input_source_config
2942
3006
  # A list of `InputSource` objects, which have the fields
2943
3007
  # `InputSourceARN` and `SchemaName`.
@@ -2948,54 +3012,49 @@ module Aws::EntityResolution
2948
3012
  # `OutputS3Path` and `KMSArn`.
2949
3013
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
2950
3014
  #
3015
+ # @!attribute [rw] id_mapping_techniques
3016
+ # An object which defines the ID mapping technique and any additional
3017
+ # configurations.
3018
+ # @return [Types::IdMappingTechniques]
3019
+ #
2951
3020
  # @!attribute [rw] role_arn
2952
3021
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2953
3022
  # assumes this role to access Amazon Web Services resources on your
2954
3023
  # behalf.
2955
3024
  # @return [String]
2956
3025
  #
2957
- # @!attribute [rw] workflow_arn
2958
- # The Amazon Resource Name (ARN) of the workflow role. Entity
2959
- # Resolution assumes this role to access Amazon Web Services resources
2960
- # on your behalf.
2961
- # @return [String]
2962
- #
2963
- # @!attribute [rw] workflow_name
2964
- # The name of the workflow.
2965
- # @return [String]
2966
- #
2967
3026
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdMappingWorkflowOutput AWS API Documentation
2968
3027
  #
2969
3028
  class UpdateIdMappingWorkflowOutput < Struct.new(
3029
+ :workflow_name,
3030
+ :workflow_arn,
2970
3031
  :description,
2971
- :id_mapping_techniques,
2972
3032
  :input_source_config,
2973
3033
  :output_source_config,
2974
- :role_arn,
2975
- :workflow_arn,
2976
- :workflow_name)
3034
+ :id_mapping_techniques,
3035
+ :role_arn)
2977
3036
  SENSITIVE = []
2978
3037
  include Aws::Structure
2979
3038
  end
2980
3039
 
2981
- # @!attribute [rw] description
2982
- # The description of the ID namespace.
2983
- # @return [String]
2984
- #
2985
- # @!attribute [rw] id_mapping_workflow_properties
2986
- # Determines the properties of `IdMappingWorkflow` where this
2987
- # `IdNamespace` can be used as a `Source` or a `Target`.
2988
- # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
2989
- #
2990
3040
  # @!attribute [rw] id_namespace_name
2991
3041
  # The name of the ID namespace.
2992
3042
  # @return [String]
2993
3043
  #
3044
+ # @!attribute [rw] description
3045
+ # The description of the ID namespace.
3046
+ # @return [String]
3047
+ #
2994
3048
  # @!attribute [rw] input_source_config
2995
3049
  # A list of `InputSource` objects, which have the fields
2996
3050
  # `InputSourceARN` and `SchemaName`.
2997
3051
  # @return [Array<Types::IdNamespaceInputSource>]
2998
3052
  #
3053
+ # @!attribute [rw] id_mapping_workflow_properties
3054
+ # Determines the properties of `IdMappingWorkflow` where this
3055
+ # `IdNamespace` can be used as a `Source` or a `Target`.
3056
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
3057
+ #
2999
3058
  # @!attribute [rw] role_arn
3000
3059
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
3001
3060
  # assumes this role to access the resources defined in this
@@ -3005,34 +3064,25 @@ module Aws::EntityResolution
3005
3064
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdNamespaceInput AWS API Documentation
3006
3065
  #
3007
3066
  class UpdateIdNamespaceInput < Struct.new(
3008
- :description,
3009
- :id_mapping_workflow_properties,
3010
3067
  :id_namespace_name,
3068
+ :description,
3011
3069
  :input_source_config,
3070
+ :id_mapping_workflow_properties,
3012
3071
  :role_arn)
3013
3072
  SENSITIVE = []
3014
3073
  include Aws::Structure
3015
3074
  end
3016
3075
 
3017
- # @!attribute [rw] created_at
3018
- # The timestamp of when the ID namespace was created.
3019
- # @return [Time]
3020
- #
3021
- # @!attribute [rw] description
3022
- # The description of the ID namespace.
3076
+ # @!attribute [rw] id_namespace_name
3077
+ # The name of the ID namespace.
3023
3078
  # @return [String]
3024
3079
  #
3025
- # @!attribute [rw] id_mapping_workflow_properties
3026
- # Determines the properties of `IdMappingWorkflow` where this
3027
- # `IdNamespace` can be used as a `Source` or a `Target`.
3028
- # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
3029
- #
3030
3080
  # @!attribute [rw] id_namespace_arn
3031
3081
  # The Amazon Resource Name (ARN) of the ID namespace.
3032
3082
  # @return [String]
3033
3083
  #
3034
- # @!attribute [rw] id_namespace_name
3035
- # The name of the ID namespace.
3084
+ # @!attribute [rw] description
3085
+ # The description of the ID namespace.
3036
3086
  # @return [String]
3037
3087
  #
3038
3088
  # @!attribute [rw] input_source_config
@@ -3040,11 +3090,10 @@ module Aws::EntityResolution
3040
3090
  # `InputSourceARN` and `SchemaName`.
3041
3091
  # @return [Array<Types::IdNamespaceInputSource>]
3042
3092
  #
3043
- # @!attribute [rw] role_arn
3044
- # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
3045
- # assumes this role to access the resources defined in this
3046
- # `IdNamespace` on your behalf as part of a workflow run.
3047
- # @return [String]
3093
+ # @!attribute [rw] id_mapping_workflow_properties
3094
+ # Determines the properties of `IdMappingWorkflow` where this
3095
+ # `IdNamespace` can be used as a `Source` or a `Target`.
3096
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
3048
3097
  #
3049
3098
  # @!attribute [rw] type
3050
3099
  # The type of ID namespace. There are two types: `SOURCE` and
@@ -3057,6 +3106,16 @@ module Aws::EntityResolution
3057
3106
  # `sourceIds` will resolve to.
3058
3107
  # @return [String]
3059
3108
  #
3109
+ # @!attribute [rw] role_arn
3110
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
3111
+ # assumes this role to access the resources defined in this
3112
+ # `IdNamespace` on your behalf as part of a workflow run.
3113
+ # @return [String]
3114
+ #
3115
+ # @!attribute [rw] created_at
3116
+ # The timestamp of when the ID namespace was created.
3117
+ # @return [Time]
3118
+ #
3060
3119
  # @!attribute [rw] updated_at
3061
3120
  # The timestamp of when the ID namespace was last updated.
3062
3121
  # @return [Time]
@@ -3064,28 +3123,27 @@ module Aws::EntityResolution
3064
3123
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdNamespaceOutput AWS API Documentation
3065
3124
  #
3066
3125
  class UpdateIdNamespaceOutput < Struct.new(
3067
- :created_at,
3068
- :description,
3069
- :id_mapping_workflow_properties,
3070
- :id_namespace_arn,
3071
3126
  :id_namespace_name,
3127
+ :id_namespace_arn,
3128
+ :description,
3072
3129
  :input_source_config,
3073
- :role_arn,
3130
+ :id_mapping_workflow_properties,
3074
3131
  :type,
3132
+ :role_arn,
3133
+ :created_at,
3075
3134
  :updated_at)
3076
3135
  SENSITIVE = []
3077
3136
  include Aws::Structure
3078
3137
  end
3079
3138
 
3139
+ # @!attribute [rw] workflow_name
3140
+ # The name of the workflow to be retrieved.
3141
+ # @return [String]
3142
+ #
3080
3143
  # @!attribute [rw] description
3081
3144
  # A description of the workflow.
3082
3145
  # @return [String]
3083
3146
  #
3084
- # @!attribute [rw] incremental_run_config
3085
- # An object which defines an incremental run type and has only
3086
- # `incrementalRunType` as a field.
3087
- # @return [Types::IncrementalRunConfig]
3088
- #
3089
3147
  # @!attribute [rw] input_source_config
3090
3148
  # A list of `InputSource` objects, which have the fields
3091
3149
  # `InputSourceARN` and `SchemaName`.
@@ -3101,39 +3159,39 @@ module Aws::EntityResolution
3101
3159
  # `ruleBasedProperties`.
3102
3160
  # @return [Types::ResolutionTechniques]
3103
3161
  #
3162
+ # @!attribute [rw] incremental_run_config
3163
+ # An object which defines an incremental run type and has only
3164
+ # `incrementalRunType` as a field.
3165
+ # @return [Types::IncrementalRunConfig]
3166
+ #
3104
3167
  # @!attribute [rw] role_arn
3105
3168
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
3106
3169
  # assumes this role to create resources on your behalf as part of
3107
3170
  # workflow execution.
3108
3171
  # @return [String]
3109
3172
  #
3110
- # @!attribute [rw] workflow_name
3111
- # The name of the workflow to be retrieved.
3112
- # @return [String]
3113
- #
3114
3173
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateMatchingWorkflowInput AWS API Documentation
3115
3174
  #
3116
3175
  class UpdateMatchingWorkflowInput < Struct.new(
3176
+ :workflow_name,
3117
3177
  :description,
3118
- :incremental_run_config,
3119
3178
  :input_source_config,
3120
3179
  :output_source_config,
3121
3180
  :resolution_techniques,
3122
- :role_arn,
3123
- :workflow_name)
3181
+ :incremental_run_config,
3182
+ :role_arn)
3124
3183
  SENSITIVE = []
3125
3184
  include Aws::Structure
3126
3185
  end
3127
3186
 
3187
+ # @!attribute [rw] workflow_name
3188
+ # The name of the workflow.
3189
+ # @return [String]
3190
+ #
3128
3191
  # @!attribute [rw] description
3129
3192
  # A description of the workflow.
3130
3193
  # @return [String]
3131
3194
  #
3132
- # @!attribute [rw] incremental_run_config
3133
- # An object which defines an incremental run type and has only
3134
- # `incrementalRunType` as a field.
3135
- # @return [Types::IncrementalRunConfig]
3136
- #
3137
3195
  # @!attribute [rw] input_source_config
3138
3196
  # A list of `InputSource` objects, which have the fields
3139
3197
  # `InputSourceARN` and `SchemaName`.
@@ -3149,30 +3207,36 @@ module Aws::EntityResolution
3149
3207
  # `ruleBasedProperties`
3150
3208
  # @return [Types::ResolutionTechniques]
3151
3209
  #
3210
+ # @!attribute [rw] incremental_run_config
3211
+ # An object which defines an incremental run type and has only
3212
+ # `incrementalRunType` as a field.
3213
+ # @return [Types::IncrementalRunConfig]
3214
+ #
3152
3215
  # @!attribute [rw] role_arn
3153
3216
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
3154
3217
  # assumes this role to create resources on your behalf as part of
3155
3218
  # workflow execution.
3156
3219
  # @return [String]
3157
3220
  #
3158
- # @!attribute [rw] workflow_name
3159
- # The name of the workflow.
3160
- # @return [String]
3161
- #
3162
3221
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateMatchingWorkflowOutput AWS API Documentation
3163
3222
  #
3164
3223
  class UpdateMatchingWorkflowOutput < Struct.new(
3224
+ :workflow_name,
3165
3225
  :description,
3166
- :incremental_run_config,
3167
3226
  :input_source_config,
3168
3227
  :output_source_config,
3169
3228
  :resolution_techniques,
3170
- :role_arn,
3171
- :workflow_name)
3229
+ :incremental_run_config,
3230
+ :role_arn)
3172
3231
  SENSITIVE = []
3173
3232
  include Aws::Structure
3174
3233
  end
3175
3234
 
3235
+ # @!attribute [rw] schema_name
3236
+ # The name of the schema. There can't be multiple `SchemaMappings`
3237
+ # with the same name.
3238
+ # @return [String]
3239
+ #
3176
3240
  # @!attribute [rw] description
3177
3241
  # A description of the schema.
3178
3242
  # @return [String]
@@ -3183,21 +3247,25 @@ module Aws::EntityResolution
3183
3247
  # additional information that Entity Resolution uses for matching.
3184
3248
  # @return [Array<Types::SchemaInputAttribute>]
3185
3249
  #
3186
- # @!attribute [rw] schema_name
3187
- # The name of the schema. There can't be multiple `SchemaMappings`
3188
- # with the same name.
3189
- # @return [String]
3190
- #
3191
3250
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateSchemaMappingInput AWS API Documentation
3192
3251
  #
3193
3252
  class UpdateSchemaMappingInput < Struct.new(
3253
+ :schema_name,
3194
3254
  :description,
3195
- :mapped_input_fields,
3196
- :schema_name)
3255
+ :mapped_input_fields)
3197
3256
  SENSITIVE = []
3198
3257
  include Aws::Structure
3199
3258
  end
3200
3259
 
3260
+ # @!attribute [rw] schema_name
3261
+ # The name of the schema.
3262
+ # @return [String]
3263
+ #
3264
+ # @!attribute [rw] schema_arn
3265
+ # The ARN (Amazon Resource Name) that Entity Resolution generated for
3266
+ # the `SchemaMapping`.
3267
+ # @return [String]
3268
+ #
3201
3269
  # @!attribute [rw] description
3202
3270
  # A description of the schema.
3203
3271
  # @return [String]
@@ -3208,22 +3276,13 @@ module Aws::EntityResolution
3208
3276
  # additional information that Entity Resolution uses for matching.
3209
3277
  # @return [Array<Types::SchemaInputAttribute>]
3210
3278
  #
3211
- # @!attribute [rw] schema_arn
3212
- # The ARN (Amazon Resource Name) that Entity Resolution generated for
3213
- # the `SchemaMapping`.
3214
- # @return [String]
3215
- #
3216
- # @!attribute [rw] schema_name
3217
- # The name of the schema.
3218
- # @return [String]
3219
- #
3220
3279
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateSchemaMappingOutput AWS API Documentation
3221
3280
  #
3222
3281
  class UpdateSchemaMappingOutput < Struct.new(
3223
- :description,
3224
- :mapped_input_fields,
3282
+ :schema_name,
3225
3283
  :schema_arn,
3226
- :schema_name)
3284
+ :description,
3285
+ :mapped_input_fields)
3227
3286
  SENSITIVE = []
3228
3287
  include Aws::Structure
3229
3288
  end