aws-sdk-entityresolution 1.6.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -24,6 +24,122 @@ module Aws::EntityResolution
24
24
  include Aws::Structure
25
25
  end
26
26
 
27
+ # @!attribute [rw] action
28
+ # The action that the principal can use on the resource.
29
+ #
30
+ # For example, `entityresolution:GetIdMappingJob`,
31
+ # `entityresolution:GetMatchingJob`.
32
+ # @return [Array<String>]
33
+ #
34
+ # @!attribute [rw] arn
35
+ # The Amazon Resource Name (ARN) of the resource that will be accessed
36
+ # by the principal.
37
+ # @return [String]
38
+ #
39
+ # @!attribute [rw] condition
40
+ # A set of condition keys that you can use in key policies.
41
+ # @return [String]
42
+ #
43
+ # @!attribute [rw] effect
44
+ # Determines whether the permissions specified in the policy are to be
45
+ # allowed (`Allow`) or denied (`Deny`).
46
+ # @return [String]
47
+ #
48
+ # @!attribute [rw] principal
49
+ # The Amazon Web Services service or Amazon Web Services account that
50
+ # can access the resource defined as ARN.
51
+ # @return [Array<String>]
52
+ #
53
+ # @!attribute [rw] statement_id
54
+ # A statement identifier that differentiates the statement from others
55
+ # in the same policy.
56
+ # @return [String]
57
+ #
58
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/AddPolicyStatementInput AWS API Documentation
59
+ #
60
+ class AddPolicyStatementInput < Struct.new(
61
+ :action,
62
+ :arn,
63
+ :condition,
64
+ :effect,
65
+ :principal,
66
+ :statement_id)
67
+ SENSITIVE = []
68
+ include Aws::Structure
69
+ end
70
+
71
+ # @!attribute [rw] arn
72
+ # The Amazon Resource Name (ARN) of the resource that will be accessed
73
+ # by the principal.
74
+ # @return [String]
75
+ #
76
+ # @!attribute [rw] policy
77
+ # The resource-based policy.
78
+ # @return [String]
79
+ #
80
+ # @!attribute [rw] token
81
+ # A unique identifier for the current revision of the policy.
82
+ # @return [String]
83
+ #
84
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/AddPolicyStatementOutput AWS API Documentation
85
+ #
86
+ class AddPolicyStatementOutput < Struct.new(
87
+ :arn,
88
+ :policy,
89
+ :token)
90
+ SENSITIVE = []
91
+ include Aws::Structure
92
+ end
93
+
94
+ # @!attribute [rw] input_source
95
+ # The input source for the batch delete unique ID operation.
96
+ # @return [String]
97
+ #
98
+ # @!attribute [rw] unique_ids
99
+ # The unique IDs to delete.
100
+ # @return [Array<String>]
101
+ #
102
+ # @!attribute [rw] workflow_name
103
+ # The name of the workflow.
104
+ # @return [String]
105
+ #
106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/BatchDeleteUniqueIdInput AWS API Documentation
107
+ #
108
+ class BatchDeleteUniqueIdInput < Struct.new(
109
+ :input_source,
110
+ :unique_ids,
111
+ :workflow_name)
112
+ SENSITIVE = []
113
+ include Aws::Structure
114
+ end
115
+
116
+ # @!attribute [rw] deleted
117
+ # The unique IDs that were deleted.
118
+ # @return [Array<Types::DeletedUniqueId>]
119
+ #
120
+ # @!attribute [rw] disconnected_unique_ids
121
+ # The unique IDs that were disconnected.
122
+ # @return [Array<String>]
123
+ #
124
+ # @!attribute [rw] errors
125
+ # The errors from deleting multiple unique IDs.
126
+ # @return [Array<Types::DeleteUniqueIdError>]
127
+ #
128
+ # @!attribute [rw] status
129
+ # The status of the batch delete unique ID operation.
130
+ # @return [String]
131
+ #
132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/BatchDeleteUniqueIdOutput AWS API Documentation
133
+ #
134
+ class BatchDeleteUniqueIdOutput < Struct.new(
135
+ :deleted,
136
+ :disconnected_unique_ids,
137
+ :errors,
138
+ :status)
139
+ SENSITIVE = []
140
+ include Aws::Structure
141
+ end
142
+
27
143
  # The request could not be processed because of conflict in the current
28
144
  # state of the resource. Example: Workflow already exists, Schema
29
145
  # already exists, Workflow is currently running, etc. `HTTP Status Code:
@@ -137,6 +253,129 @@ module Aws::EntityResolution
137
253
  include Aws::Structure
138
254
  end
139
255
 
256
+ # @!attribute [rw] description
257
+ # The description of the ID namespace.
258
+ # @return [String]
259
+ #
260
+ # @!attribute [rw] id_mapping_workflow_properties
261
+ # Determines the properties of `IdMappingWorflow` where this
262
+ # `IdNamespace` can be used as a `Source` or a `Target`.
263
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
264
+ #
265
+ # @!attribute [rw] id_namespace_name
266
+ # The name of the ID namespace.
267
+ # @return [String]
268
+ #
269
+ # @!attribute [rw] input_source_config
270
+ # A list of `InputSource` objects, which have the fields
271
+ # `InputSourceARN` and `SchemaName`.
272
+ # @return [Array<Types::IdNamespaceInputSource>]
273
+ #
274
+ # @!attribute [rw] role_arn
275
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
276
+ # assumes this role to access the resources defined in this
277
+ # `IdNamespace` on your behalf as part of the workflow run.
278
+ # @return [String]
279
+ #
280
+ # @!attribute [rw] tags
281
+ # The tags used to organize, track, or control access for this
282
+ # resource.
283
+ # @return [Hash<String,String>]
284
+ #
285
+ # @!attribute [rw] type
286
+ # The type of ID namespace. There are two types: `SOURCE` and
287
+ # `TARGET`.
288
+ #
289
+ # The `SOURCE` contains configurations for `sourceId` data that will
290
+ # be processed in an ID mapping workflow.
291
+ #
292
+ # The `TARGET` contains a configuration of `targetId` to which all
293
+ # `sourceIds` will resolve to.
294
+ # @return [String]
295
+ #
296
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdNamespaceInput AWS API Documentation
297
+ #
298
+ class CreateIdNamespaceInput < Struct.new(
299
+ :description,
300
+ :id_mapping_workflow_properties,
301
+ :id_namespace_name,
302
+ :input_source_config,
303
+ :role_arn,
304
+ :tags,
305
+ :type)
306
+ SENSITIVE = []
307
+ include Aws::Structure
308
+ end
309
+
310
+ # @!attribute [rw] created_at
311
+ # The timestamp of when the ID namespace was created.
312
+ # @return [Time]
313
+ #
314
+ # @!attribute [rw] description
315
+ # The description of the ID namespace.
316
+ # @return [String]
317
+ #
318
+ # @!attribute [rw] id_mapping_workflow_properties
319
+ # Determines the properties of `IdMappingWorkflow` where this
320
+ # `IdNamespace` can be used as a `Source` or a `Target`.
321
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
322
+ #
323
+ # @!attribute [rw] id_namespace_arn
324
+ # The Amazon Resource Name (ARN) of the ID namespace.
325
+ # @return [String]
326
+ #
327
+ # @!attribute [rw] id_namespace_name
328
+ # The name of the ID namespace.
329
+ # @return [String]
330
+ #
331
+ # @!attribute [rw] input_source_config
332
+ # A list of `InputSource` objects, which have the fields
333
+ # `InputSourceARN` and `SchemaName`.
334
+ # @return [Array<Types::IdNamespaceInputSource>]
335
+ #
336
+ # @!attribute [rw] role_arn
337
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
338
+ # assumes this role to access the resources defined in
339
+ # `inputSourceConfig` on your behalf as part of the workflow run.
340
+ # @return [String]
341
+ #
342
+ # @!attribute [rw] tags
343
+ # The tags used to organize, track, or control access for this
344
+ # resource.
345
+ # @return [Hash<String,String>]
346
+ #
347
+ # @!attribute [rw] type
348
+ # The type of ID namespace. There are two types: `SOURCE` and
349
+ # `TARGET`.
350
+ #
351
+ # The `SOURCE` contains configurations for `sourceId` data that will
352
+ # be processed in an ID mapping workflow.
353
+ #
354
+ # The `TARGET` contains a configuration of `targetId` to which all
355
+ # `sourceIds` will resolve to.
356
+ # @return [String]
357
+ #
358
+ # @!attribute [rw] updated_at
359
+ # The timestamp of when the ID namespace was last updated.
360
+ # @return [Time]
361
+ #
362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/CreateIdNamespaceOutput AWS API Documentation
363
+ #
364
+ class CreateIdNamespaceOutput < Struct.new(
365
+ :created_at,
366
+ :description,
367
+ :id_mapping_workflow_properties,
368
+ :id_namespace_arn,
369
+ :id_namespace_name,
370
+ :input_source_config,
371
+ :role_arn,
372
+ :tags,
373
+ :type,
374
+ :updated_at)
375
+ SENSITIVE = []
376
+ include Aws::Structure
377
+ end
378
+
140
379
  # @!attribute [rw] description
141
380
  # A description of the workflow.
142
381
  # @return [String]
@@ -331,6 +570,30 @@ module Aws::EntityResolution
331
570
  include Aws::Structure
332
571
  end
333
572
 
573
+ # @!attribute [rw] id_namespace_name
574
+ # The name of the ID namespace.
575
+ # @return [String]
576
+ #
577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeleteIdNamespaceInput AWS API Documentation
578
+ #
579
+ class DeleteIdNamespaceInput < Struct.new(
580
+ :id_namespace_name)
581
+ SENSITIVE = []
582
+ include Aws::Structure
583
+ end
584
+
585
+ # @!attribute [rw] message
586
+ # A successful operation message.
587
+ # @return [String]
588
+ #
589
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeleteIdNamespaceOutput AWS API Documentation
590
+ #
591
+ class DeleteIdNamespaceOutput < Struct.new(
592
+ :message)
593
+ SENSITIVE = []
594
+ include Aws::Structure
595
+ end
596
+
334
597
  # @!attribute [rw] workflow_name
335
598
  # The name of the workflow to be retrieved.
336
599
  # @return [String]
@@ -355,6 +618,46 @@ module Aws::EntityResolution
355
618
  include Aws::Structure
356
619
  end
357
620
 
621
+ # @!attribute [rw] arn
622
+ # The ARN of the resource for which the policy need to be deleted.
623
+ # @return [String]
624
+ #
625
+ # @!attribute [rw] statement_id
626
+ # A statement identifier that differentiates the statement from others
627
+ # in the same policy.
628
+ # @return [String]
629
+ #
630
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeletePolicyStatementInput AWS API Documentation
631
+ #
632
+ class DeletePolicyStatementInput < Struct.new(
633
+ :arn,
634
+ :statement_id)
635
+ SENSITIVE = []
636
+ include Aws::Structure
637
+ end
638
+
639
+ # @!attribute [rw] arn
640
+ # The ARN of the resource for which the policy need to be deleted.
641
+ # @return [String]
642
+ #
643
+ # @!attribute [rw] policy
644
+ # The resource-based policy.
645
+ # @return [String]
646
+ #
647
+ # @!attribute [rw] token
648
+ # A unique identifier for the deleted policy.
649
+ # @return [String]
650
+ #
651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeletePolicyStatementOutput AWS API Documentation
652
+ #
653
+ class DeletePolicyStatementOutput < Struct.new(
654
+ :arn,
655
+ :policy,
656
+ :token)
657
+ SENSITIVE = []
658
+ include Aws::Structure
659
+ end
660
+
358
661
  # @!attribute [rw] schema_name
359
662
  # The name of the schema to delete.
360
663
  # @return [String]
@@ -379,6 +682,39 @@ module Aws::EntityResolution
379
682
  include Aws::Structure
380
683
  end
381
684
 
685
+ # The Delete Unique Id error.
686
+ #
687
+ # @!attribute [rw] error_type
688
+ # The error type for the batch delete unique ID operation.
689
+ # @return [String]
690
+ #
691
+ # @!attribute [rw] unique_id
692
+ # The unique ID that could not be deleted.
693
+ # @return [String]
694
+ #
695
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeleteUniqueIdError AWS API Documentation
696
+ #
697
+ class DeleteUniqueIdError < Struct.new(
698
+ :error_type,
699
+ :unique_id)
700
+ SENSITIVE = []
701
+ include Aws::Structure
702
+ end
703
+
704
+ # The deleted unique ID.
705
+ #
706
+ # @!attribute [rw] unique_id
707
+ # The unique ID of the deleted item.
708
+ # @return [String]
709
+ #
710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/DeletedUniqueId AWS API Documentation
711
+ #
712
+ class DeletedUniqueId < Struct.new(
713
+ :unique_id)
714
+ SENSITIVE = []
715
+ include Aws::Structure
716
+ end
717
+
382
718
  # An object containing an error message, if there was an error.
383
719
  #
384
720
  # @!attribute [rw] error_message
@@ -452,6 +788,10 @@ module Aws::EntityResolution
452
788
  # processed, unique IDs generated, and records the execution skipped.
453
789
  # @return [Types::IdMappingJobMetrics]
454
790
  #
791
+ # @!attribute [rw] output_source_config
792
+ # A list of `OutputSource` objects.
793
+ # @return [Array<Types::IdMappingJobOutputSource>]
794
+ #
455
795
  # @!attribute [rw] start_time
456
796
  # The time at which the job was started.
457
797
  # @return [Time]
@@ -467,6 +807,7 @@ module Aws::EntityResolution
467
807
  :error_details,
468
808
  :job_id,
469
809
  :metrics,
810
+ :output_source_config,
470
811
  :start_time,
471
812
  :status)
472
813
  SENSITIVE = []
@@ -510,7 +851,8 @@ module Aws::EntityResolution
510
851
  #
511
852
  # @!attribute [rw] role_arn
512
853
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
513
- # assumes this role to access resources on your behalf.
854
+ # assumes this role to access Amazon Web Services resources on your
855
+ # behalf.
514
856
  # @return [String]
515
857
  #
516
858
  # @!attribute [rw] tags
@@ -548,6 +890,95 @@ module Aws::EntityResolution
548
890
  include Aws::Structure
549
891
  end
550
892
 
893
+ # @!attribute [rw] id_namespace_name
894
+ # The name of the ID namespace.
895
+ # @return [String]
896
+ #
897
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdNamespaceInput AWS API Documentation
898
+ #
899
+ class GetIdNamespaceInput < Struct.new(
900
+ :id_namespace_name)
901
+ SENSITIVE = []
902
+ include Aws::Structure
903
+ end
904
+
905
+ # @!attribute [rw] created_at
906
+ # The timestamp of when the ID namespace was created.
907
+ # @return [Time]
908
+ #
909
+ # @!attribute [rw] description
910
+ # The description of the ID namespace.
911
+ # @return [String]
912
+ #
913
+ # @!attribute [rw] id_mapping_workflow_properties
914
+ # Determines the properties of `IdMappingWorkflow` where this
915
+ # `IdNamespace` can be used as a `Source` or a `Target`.
916
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
917
+ #
918
+ # @!attribute [rw] id_namespace_arn
919
+ # The Amazon Resource Name (ARN) of the ID namespace.
920
+ # @return [String]
921
+ #
922
+ # @!attribute [rw] id_namespace_name
923
+ # The name of the ID namespace.
924
+ # @return [String]
925
+ #
926
+ # @!attribute [rw] input_source_config
927
+ # A list of `InputSource` objects, which have the fields
928
+ # `InputSourceARN` and `SchemaName`.
929
+ # @return [Array<Types::IdNamespaceInputSource>]
930
+ #
931
+ # @!attribute [rw] role_arn
932
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
933
+ # assumes this role to access the resources defined in this
934
+ # `IdNamespace` on your behalf as part of a workflow run.
935
+ # @return [String]
936
+ #
937
+ # @!attribute [rw] tags
938
+ # The tags used to organize, track, or control access for this
939
+ # resource.
940
+ # @return [Hash<String,String>]
941
+ #
942
+ # @!attribute [rw] type
943
+ # The type of ID namespace. There are two types: `SOURCE` and
944
+ # `TARGET`.
945
+ #
946
+ # The `SOURCE` contains configurations for `sourceId` data that will
947
+ # be processed in an ID mapping workflow.
948
+ #
949
+ # The `TARGET` contains a configuration of `targetId` to which all
950
+ # `sourceIds` will resolve to.
951
+ # @return [String]
952
+ #
953
+ # @!attribute [rw] updated_at
954
+ # The timestamp of when the ID namespace was last updated.
955
+ # @return [Time]
956
+ #
957
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetIdNamespaceOutput AWS API Documentation
958
+ #
959
+ class GetIdNamespaceOutput < Struct.new(
960
+ :created_at,
961
+ :description,
962
+ :id_mapping_workflow_properties,
963
+ :id_namespace_arn,
964
+ :id_namespace_name,
965
+ :input_source_config,
966
+ :role_arn,
967
+ :tags,
968
+ :type,
969
+ :updated_at)
970
+ SENSITIVE = []
971
+ include Aws::Structure
972
+ end
973
+
974
+ # @!attribute [rw] apply_normalization
975
+ # Normalizes the attributes defined in the schema in the input data.
976
+ # For example, if an attribute has an `AttributeType` of
977
+ # `PHONE_NUMBER`, and the data in the input table is in a format of
978
+ # 1234567890, Entity Resolution will normalize this field in the
979
+ # output to (123)-456-7890.
980
+ # @return [Boolean]
981
+ #
551
982
  # @!attribute [rw] record
552
983
  # The record to fetch the Match ID for.
553
984
  # @return [Hash<String,String>]
@@ -559,6 +990,7 @@ module Aws::EntityResolution
559
990
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchIdInput AWS API Documentation
560
991
  #
561
992
  class GetMatchIdInput < Struct.new(
993
+ :apply_normalization,
562
994
  :record,
563
995
  :workflow_name)
564
996
  SENSITIVE = [:record]
@@ -569,10 +1001,15 @@ module Aws::EntityResolution
569
1001
  # The unique identifiers for this group of match records.
570
1002
  # @return [String]
571
1003
  #
1004
+ # @!attribute [rw] match_rule
1005
+ # The rule the record matched on.
1006
+ # @return [String]
1007
+ #
572
1008
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetMatchIdOutput AWS API Documentation
573
1009
  #
574
1010
  class GetMatchIdOutput < Struct.new(
575
- :match_id)
1011
+ :match_id,
1012
+ :match_rule)
576
1013
  SENSITIVE = []
577
1014
  include Aws::Structure
578
1015
  end
@@ -611,6 +1048,10 @@ module Aws::EntityResolution
611
1048
  # processed, unique IDs generated, and records the execution skipped.
612
1049
  # @return [Types::JobMetrics]
613
1050
  #
1051
+ # @!attribute [rw] output_source_config
1052
+ # A list of `OutputSource` objects.
1053
+ # @return [Array<Types::JobOutputSource>]
1054
+ #
614
1055
  # @!attribute [rw] start_time
615
1056
  # The time at which the job was started.
616
1057
  # @return [Time]
@@ -626,6 +1067,7 @@ module Aws::EntityResolution
626
1067
  :error_details,
627
1068
  :job_id,
628
1069
  :metrics,
1070
+ :output_source_config,
629
1071
  :start_time,
630
1072
  :status)
631
1073
  SENSITIVE = []
@@ -674,7 +1116,8 @@ module Aws::EntityResolution
674
1116
  #
675
1117
  # @!attribute [rw] role_arn
676
1118
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
677
- # assumes this role to access resources on your behalf.
1119
+ # assumes this role to access Amazon Web Services resources on your
1120
+ # behalf.
678
1121
  # @return [String]
679
1122
  #
680
1123
  # @!attribute [rw] tags
@@ -713,6 +1156,41 @@ module Aws::EntityResolution
713
1156
  include Aws::Structure
714
1157
  end
715
1158
 
1159
+ # @!attribute [rw] arn
1160
+ # The Amazon Resource Name (ARN) of the resource for which the policy
1161
+ # need to be returned.
1162
+ # @return [String]
1163
+ #
1164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetPolicyInput AWS API Documentation
1165
+ #
1166
+ class GetPolicyInput < Struct.new(
1167
+ :arn)
1168
+ SENSITIVE = []
1169
+ include Aws::Structure
1170
+ end
1171
+
1172
+ # @!attribute [rw] arn
1173
+ # The Entity Resolution resource ARN.
1174
+ # @return [String]
1175
+ #
1176
+ # @!attribute [rw] policy
1177
+ # The resource-based policy.
1178
+ # @return [String]
1179
+ #
1180
+ # @!attribute [rw] token
1181
+ # A unique identifier for the current revision of the policy.
1182
+ # @return [String]
1183
+ #
1184
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/GetPolicyOutput AWS API Documentation
1185
+ #
1186
+ class GetPolicyOutput < Struct.new(
1187
+ :arn,
1188
+ :policy,
1189
+ :token)
1190
+ SENSITIVE = []
1191
+ include Aws::Structure
1192
+ end
1193
+
716
1194
  # @!attribute [rw] provider_name
717
1195
  # The name of the provider. This name is typically the company name.
718
1196
  # @return [String]
@@ -740,6 +1218,10 @@ module Aws::EntityResolution
740
1218
  # source data.
741
1219
  # @return [Boolean]
742
1220
  #
1221
+ # @!attribute [rw] provider_component_schema
1222
+ # Input schema for the provider service.
1223
+ # @return [Types::ProviderComponentSchema]
1224
+ #
743
1225
  # @!attribute [rw] provider_configuration_definition
744
1226
  # The definition of the provider configuration.
745
1227
  # @return [Hash,Array,String,Numeric,Boolean]
@@ -752,12 +1234,21 @@ module Aws::EntityResolution
752
1234
  # The definition of the provider entity output.
753
1235
  # @return [Hash,Array,String,Numeric,Boolean]
754
1236
  #
1237
+ # @!attribute [rw] provider_id_name_space_configuration
1238
+ # The provider configuration required for different ID namespace
1239
+ # types.
1240
+ # @return [Types::ProviderIdNameSpaceConfiguration]
1241
+ #
755
1242
  # @!attribute [rw] provider_intermediate_data_access_configuration
756
1243
  # The Amazon Web Services accounts and the S3 permissions that are
757
1244
  # required by some providers to create an S3 bucket for intermediate
758
1245
  # data storage.
759
1246
  # @return [Types::ProviderIntermediateDataAccessConfiguration]
760
1247
  #
1248
+ # @!attribute [rw] provider_job_configuration
1249
+ # Provider service job configurations.
1250
+ # @return [Hash,Array,String,Numeric,Boolean]
1251
+ #
761
1252
  # @!attribute [rw] provider_name
762
1253
  # The name of the provider. This name is typically the company name.
763
1254
  # @return [String]
@@ -783,10 +1274,13 @@ module Aws::EntityResolution
783
1274
  #
784
1275
  class GetProviderServiceOutput < Struct.new(
785
1276
  :anonymized_output,
1277
+ :provider_component_schema,
786
1278
  :provider_configuration_definition,
787
1279
  :provider_endpoint_configuration,
788
1280
  :provider_entity_output_definition,
1281
+ :provider_id_name_space_configuration,
789
1282
  :provider_intermediate_data_access_configuration,
1283
+ :provider_job_configuration,
790
1284
  :provider_name,
791
1285
  :provider_service_arn,
792
1286
  :provider_service_display_name,
@@ -884,6 +1378,33 @@ module Aws::EntityResolution
884
1378
  include Aws::Structure
885
1379
  end
886
1380
 
1381
+ # An object containing `KMSArn`, `OutputS3Path`, and `RoleARN`.
1382
+ #
1383
+ # @!attribute [rw] kms_arn
1384
+ # Customer KMS ARN for encryption at rest. If not provided, system
1385
+ # will use an Entity Resolution managed KMS key.
1386
+ # @return [String]
1387
+ #
1388
+ # @!attribute [rw] output_s3_path
1389
+ # The S3 path to which Entity Resolution will write the output table.
1390
+ # @return [String]
1391
+ #
1392
+ # @!attribute [rw] role_arn
1393
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1394
+ # assumes this role to access Amazon Web Services resources on your
1395
+ # behalf as part of workflow execution.
1396
+ # @return [String]
1397
+ #
1398
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingJobOutputSource AWS API Documentation
1399
+ #
1400
+ class IdMappingJobOutputSource < Struct.new(
1401
+ :kms_arn,
1402
+ :output_s3_path,
1403
+ :role_arn)
1404
+ SENSITIVE = []
1405
+ include Aws::Structure
1406
+ end
1407
+
887
1408
  # An object which defines the ID mapping techniques and provider
888
1409
  # configurations.
889
1410
  #
@@ -905,21 +1426,33 @@ module Aws::EntityResolution
905
1426
  include Aws::Structure
906
1427
  end
907
1428
 
908
- # An object containing `InputSourceARN` and `SchemaName`.
1429
+ # An object containing `InputSourceARN`, `SchemaName`, and `Type`.
909
1430
  #
910
1431
  # @!attribute [rw] input_source_arn
911
- # An Gluetable ARN for the input source table.
1432
+ # An Glue table ARN for the input source table.
912
1433
  # @return [String]
913
1434
  #
914
- # @!attribute [rw] schema_name
915
- # The name of the schema to be retrieved.
1435
+ # @!attribute [rw] schema_name
1436
+ # The name of the schema to be retrieved.
1437
+ # @return [String]
1438
+ #
1439
+ # @!attribute [rw] type
1440
+ # The type of ID namespace. There are two types: `SOURCE` and
1441
+ # `TARGET`.
1442
+ #
1443
+ # The `SOURCE` contains configurations for `sourceId` data that will
1444
+ # be processed in an ID mapping workflow.
1445
+ #
1446
+ # The `TARGET` contains a configuration of `targetId` to which all
1447
+ # `sourceIds` will resolve to.
916
1448
  # @return [String]
917
1449
  #
918
1450
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdMappingWorkflowInputSource AWS API Documentation
919
1451
  #
920
1452
  class IdMappingWorkflowInputSource < Struct.new(
921
1453
  :input_source_arn,
922
- :schema_name)
1454
+ :schema_name,
1455
+ :type)
923
1456
  SENSITIVE = []
924
1457
  include Aws::Structure
925
1458
  end
@@ -976,6 +1509,91 @@ module Aws::EntityResolution
976
1509
  include Aws::Structure
977
1510
  end
978
1511
 
1512
+ # An object containing `IdMappingType` and `ProviderProperties`.
1513
+ #
1514
+ # @!attribute [rw] id_mapping_type
1515
+ # The type of ID mapping.
1516
+ # @return [String]
1517
+ #
1518
+ # @!attribute [rw] provider_properties
1519
+ # An object which defines any additional configurations required by
1520
+ # the provider service.
1521
+ # @return [Types::NamespaceProviderProperties]
1522
+ #
1523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdNamespaceIdMappingWorkflowProperties AWS API Documentation
1524
+ #
1525
+ class IdNamespaceIdMappingWorkflowProperties < Struct.new(
1526
+ :id_mapping_type,
1527
+ :provider_properties)
1528
+ SENSITIVE = []
1529
+ include Aws::Structure
1530
+ end
1531
+
1532
+ # An object containing `InputSourceARN` and `SchemaName`.
1533
+ #
1534
+ # @!attribute [rw] input_source_arn
1535
+ # An Glue table ARN for the input source table.
1536
+ # @return [String]
1537
+ #
1538
+ # @!attribute [rw] schema_name
1539
+ # The name of the schema.
1540
+ # @return [String]
1541
+ #
1542
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdNamespaceInputSource AWS API Documentation
1543
+ #
1544
+ class IdNamespaceInputSource < Struct.new(
1545
+ :input_source_arn,
1546
+ :schema_name)
1547
+ SENSITIVE = []
1548
+ include Aws::Structure
1549
+ end
1550
+
1551
+ # A summary of ID namespaces.
1552
+ #
1553
+ # @!attribute [rw] created_at
1554
+ # The timestamp of when the ID namespace was created.
1555
+ # @return [Time]
1556
+ #
1557
+ # @!attribute [rw] description
1558
+ # The description of the ID namespace.
1559
+ # @return [String]
1560
+ #
1561
+ # @!attribute [rw] id_namespace_arn
1562
+ # The Amazon Resource Name (ARN) of the ID namespace.
1563
+ # @return [String]
1564
+ #
1565
+ # @!attribute [rw] id_namespace_name
1566
+ # The name of the ID namespace.
1567
+ # @return [String]
1568
+ #
1569
+ # @!attribute [rw] type
1570
+ # The type of ID namespace. There are two types: `SOURCE` and
1571
+ # `TARGET`.
1572
+ #
1573
+ # The `SOURCE` contains configurations for `sourceId` data that will
1574
+ # be processed in an ID mapping workflow.
1575
+ #
1576
+ # The `TARGET` contains a configuration of `targetId` to which all
1577
+ # `sourceIds` will resolve to.
1578
+ # @return [String]
1579
+ #
1580
+ # @!attribute [rw] updated_at
1581
+ # The timestamp of when the ID namespace was last updated.
1582
+ # @return [Time]
1583
+ #
1584
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IdNamespaceSummary AWS API Documentation
1585
+ #
1586
+ class IdNamespaceSummary < Struct.new(
1587
+ :created_at,
1588
+ :description,
1589
+ :id_namespace_arn,
1590
+ :id_namespace_name,
1591
+ :type,
1592
+ :updated_at)
1593
+ SENSITIVE = []
1594
+ include Aws::Structure
1595
+ end
1596
+
979
1597
  # An object which defines an incremental run type and has only
980
1598
  # `incrementalRunType` as a field.
981
1599
  #
@@ -1080,6 +1698,33 @@ module Aws::EntityResolution
1080
1698
  include Aws::Structure
1081
1699
  end
1082
1700
 
1701
+ # An object containing `KMSArn`, `OutputS3Path`, and `RoleArn`.
1702
+ #
1703
+ # @!attribute [rw] kms_arn
1704
+ # Customer KMS ARN for encryption at rest. If not provided, system
1705
+ # will use an Entity Resolution managed KMS key.
1706
+ # @return [String]
1707
+ #
1708
+ # @!attribute [rw] output_s3_path
1709
+ # The S3 path to which Entity Resolution will write the output table.
1710
+ # @return [String]
1711
+ #
1712
+ # @!attribute [rw] role_arn
1713
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1714
+ # assumes this role to access Amazon Web Services resources on your
1715
+ # behalf as part of workflow execution.
1716
+ # @return [String]
1717
+ #
1718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/JobOutputSource AWS API Documentation
1719
+ #
1720
+ class JobOutputSource < Struct.new(
1721
+ :kms_arn,
1722
+ :output_s3_path,
1723
+ :role_arn)
1724
+ SENSITIVE = []
1725
+ include Aws::Structure
1726
+ end
1727
+
1083
1728
  # An object containing the `JobId`, `Status`, `StartTime`, and `EndTime`
1084
1729
  # of a job.
1085
1730
  #
@@ -1183,6 +1828,40 @@ module Aws::EntityResolution
1183
1828
  include Aws::Structure
1184
1829
  end
1185
1830
 
1831
+ # @!attribute [rw] max_results
1832
+ # The maximum number of `IdNamespace` objects returned per page.
1833
+ # @return [Integer]
1834
+ #
1835
+ # @!attribute [rw] next_token
1836
+ # The pagination token from the previous API call.
1837
+ # @return [String]
1838
+ #
1839
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdNamespacesInput AWS API Documentation
1840
+ #
1841
+ class ListIdNamespacesInput < Struct.new(
1842
+ :max_results,
1843
+ :next_token)
1844
+ SENSITIVE = []
1845
+ include Aws::Structure
1846
+ end
1847
+
1848
+ # @!attribute [rw] id_namespace_summaries
1849
+ # A list of `IdNamespaceSummaries` objects.
1850
+ # @return [Array<Types::IdNamespaceSummary>]
1851
+ #
1852
+ # @!attribute [rw] next_token
1853
+ # The pagination token from the previous API call.
1854
+ # @return [String]
1855
+ #
1856
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ListIdNamespacesOutput AWS API Documentation
1857
+ #
1858
+ class ListIdNamespacesOutput < Struct.new(
1859
+ :id_namespace_summaries,
1860
+ :next_token)
1861
+ SENSITIVE = []
1862
+ include Aws::Structure
1863
+ end
1864
+
1186
1865
  # @!attribute [rw] max_results
1187
1866
  # The maximum number of objects returned per page.
1188
1867
  # @return [Integer]
@@ -1396,6 +2075,26 @@ module Aws::EntityResolution
1396
2075
  include Aws::Structure
1397
2076
  end
1398
2077
 
2078
+ # An object containing `ProviderConfiguration` and `ProviderServiceArn`.
2079
+ #
2080
+ # @!attribute [rw] provider_configuration
2081
+ # An object which defines any additional configurations required by
2082
+ # the provider service.
2083
+ # @return [Hash,Array,String,Numeric,Boolean]
2084
+ #
2085
+ # @!attribute [rw] provider_service_arn
2086
+ # The Amazon Resource Name (ARN) of the provider service.
2087
+ # @return [String]
2088
+ #
2089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/NamespaceProviderProperties AWS API Documentation
2090
+ #
2091
+ class NamespaceProviderProperties < Struct.new(
2092
+ :provider_configuration,
2093
+ :provider_service_arn)
2094
+ SENSITIVE = []
2095
+ include Aws::Structure
2096
+ end
2097
+
1399
2098
  # A list of `OutputAttribute` objects, each of which have the fields
1400
2099
  # `Name` and `Hashed`. Each of these objects selects a column to be
1401
2100
  # included in the output table, and whether the values of the column
@@ -1459,6 +2158,25 @@ module Aws::EntityResolution
1459
2158
  include Aws::Structure
1460
2159
  end
1461
2160
 
2161
+ # The input schema supported by provider service.
2162
+ #
2163
+ # @!attribute [rw] provider_schema_attributes
2164
+ # The provider schema attributes.
2165
+ # @return [Array<Types::ProviderSchemaAttribute>]
2166
+ #
2167
+ # @!attribute [rw] schemas
2168
+ # Input schema for the provider service.
2169
+ # @return [Array<Array<String>>]
2170
+ #
2171
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderComponentSchema AWS API Documentation
2172
+ #
2173
+ class ProviderComponentSchema < Struct.new(
2174
+ :provider_schema_attributes,
2175
+ :schemas)
2176
+ SENSITIVE = []
2177
+ include Aws::Structure
2178
+ end
2179
+
1462
2180
  # The required configuration fields to use with the provider service.
1463
2181
  #
1464
2182
  # @note ProviderEndpointConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProviderEndpointConfiguration corresponding to the set member.
@@ -1480,6 +2198,30 @@ module Aws::EntityResolution
1480
2198
  class Unknown < ProviderEndpointConfiguration; end
1481
2199
  end
1482
2200
 
2201
+ # The provider configuration required for different ID namespace types.
2202
+ #
2203
+ # @!attribute [rw] description
2204
+ # The description of the ID namespace.
2205
+ # @return [String]
2206
+ #
2207
+ # @!attribute [rw] provider_source_configuration_definition
2208
+ # Configurations required for the source ID namespace.
2209
+ # @return [Hash,Array,String,Numeric,Boolean]
2210
+ #
2211
+ # @!attribute [rw] provider_target_configuration_definition
2212
+ # Configurations required for the target ID namespace.
2213
+ # @return [Hash,Array,String,Numeric,Boolean]
2214
+ #
2215
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderIdNameSpaceConfiguration AWS API Documentation
2216
+ #
2217
+ class ProviderIdNameSpaceConfiguration < Struct.new(
2218
+ :description,
2219
+ :provider_source_configuration_definition,
2220
+ :provider_target_configuration_definition)
2221
+ SENSITIVE = []
2222
+ include Aws::Structure
2223
+ end
2224
+
1483
2225
  # The required configuration fields to give intermediate access to a
1484
2226
  # provider service.
1485
2227
  #
@@ -1556,6 +2298,35 @@ module Aws::EntityResolution
1556
2298
  include Aws::Structure
1557
2299
  end
1558
2300
 
2301
+ # The provider schema attribute.
2302
+ #
2303
+ # @!attribute [rw] field_name
2304
+ # The field name.
2305
+ # @return [String]
2306
+ #
2307
+ # @!attribute [rw] hashing
2308
+ # The hashing attribute of the provider schema.
2309
+ # @return [Boolean]
2310
+ #
2311
+ # @!attribute [rw] sub_type
2312
+ # The sub type of the provider schema attribute.
2313
+ # @return [String]
2314
+ #
2315
+ # @!attribute [rw] type
2316
+ # The type of the provider schema attribute.
2317
+ # @return [String]
2318
+ #
2319
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/ProviderSchemaAttribute AWS API Documentation
2320
+ #
2321
+ class ProviderSchemaAttribute < Struct.new(
2322
+ :field_name,
2323
+ :hashing,
2324
+ :sub_type,
2325
+ :type)
2326
+ SENSITIVE = []
2327
+ include Aws::Structure
2328
+ end
2329
+
1559
2330
  # A list of `ProviderService` objects, each of which contain the fields
1560
2331
  # `providerName`, `providerServiceArn`, `providerServiceName`, and
1561
2332
  # `providerServiceType`.
@@ -1593,6 +2364,51 @@ module Aws::EntityResolution
1593
2364
  include Aws::Structure
1594
2365
  end
1595
2366
 
2367
+ # @!attribute [rw] arn
2368
+ # The Amazon Resource Name (ARN) of the resource for which the policy
2369
+ # needs to be updated.
2370
+ # @return [String]
2371
+ #
2372
+ # @!attribute [rw] policy
2373
+ # The resource-based policy.
2374
+ # @return [String]
2375
+ #
2376
+ # @!attribute [rw] token
2377
+ # A unique identifier for the current revision of the policy.
2378
+ # @return [String]
2379
+ #
2380
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/PutPolicyInput AWS API Documentation
2381
+ #
2382
+ class PutPolicyInput < Struct.new(
2383
+ :arn,
2384
+ :policy,
2385
+ :token)
2386
+ SENSITIVE = []
2387
+ include Aws::Structure
2388
+ end
2389
+
2390
+ # @!attribute [rw] arn
2391
+ # The Entity Resolution resource ARN.
2392
+ # @return [String]
2393
+ #
2394
+ # @!attribute [rw] policy
2395
+ # The resource-based policy.
2396
+ # @return [String]
2397
+ #
2398
+ # @!attribute [rw] token
2399
+ # A unique identifier for the current revision of the policy.
2400
+ # @return [String]
2401
+ #
2402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/PutPolicyOutput AWS API Documentation
2403
+ #
2404
+ class PutPolicyOutput < Struct.new(
2405
+ :arn,
2406
+ :policy,
2407
+ :token)
2408
+ SENSITIVE = []
2409
+ include Aws::Structure
2410
+ end
2411
+
1596
2412
  # An object which defines the `resolutionType` and the
1597
2413
  # `ruleBasedProperties`.
1598
2414
  #
@@ -1601,8 +2417,8 @@ module Aws::EntityResolution
1601
2417
  # @return [Types::ProviderProperties]
1602
2418
  #
1603
2419
  # @!attribute [rw] resolution_type
1604
- # The type of matching. There are two types of matching:
1605
- # `RULE_MATCHING` and `ML_MATCHING`.
2420
+ # The type of matching. There are three types of matching:
2421
+ # `RULE_MATCHING`, `ML_MATCHING`, and `PROVIDER`.
1606
2422
  # @return [String]
1607
2423
  #
1608
2424
  # @!attribute [rw] rule_based_properties
@@ -1684,30 +2500,32 @@ module Aws::EntityResolution
1684
2500
  include Aws::Structure
1685
2501
  end
1686
2502
 
1687
- # An object containing `FieldName`, `Type`, `GroupName`, and `MatchKey`.
2503
+ # An object containing `FieldName`, `Type`, `GroupName`, `MatchKey`, and
2504
+ # `SubType`.
1688
2505
  #
1689
2506
  # @!attribute [rw] field_name
1690
2507
  # A string containing the field name.
1691
2508
  # @return [String]
1692
2509
  #
1693
2510
  # @!attribute [rw] group_name
1694
- # Instruct Entity Resolution to combine several columns into a unified
1695
- # column with the identical attribute type. For example, when working
1696
- # with columns such as first\_name, middle\_name, and last\_name,
1697
- # assigning them a common `GroupName` will prompt Entity Resolution to
1698
- # concatenate them into a single value.
2511
+ # A string that instructs Entity Resolution to combine several columns
2512
+ # into a unified column with the identical attribute type.
2513
+ #
2514
+ # For example, when working with columns such as `first_name`,
2515
+ # `middle_name`, and `last_name`, assigning them a common `groupName`
2516
+ # will prompt Entity Resolution to concatenate them into a single
2517
+ # value.
1699
2518
  # @return [String]
1700
2519
  #
1701
2520
  # @!attribute [rw] match_key
1702
2521
  # A key that allows grouping of multiple input attributes into a
1703
- # unified matching group. For example, let's consider a scenario
1704
- # where the source table contains various addresses, such as
1705
- # `business_address` and `shipping_address`. By assigning the
1706
- # `MatchKey` *Address* to both attributes, Entity Resolution will
1707
- # match records across these fields to create a consolidated matching
1708
- # group. If no `MatchKey` is specified for a column, it won't be
1709
- # utilized for matching purposes but will still be included in the
1710
- # output table.
2522
+ # unified matching group. For example, consider a scenario where the
2523
+ # source table contains various addresses, such as `business_address`
2524
+ # and `shipping_address`. By assigning a `matchKey` called `address`
2525
+ # to both attributes, Entity Resolution will match records across
2526
+ # these fields to create a consolidated matching group. If no
2527
+ # `matchKey` is specified for a column, it won't be utilized for
2528
+ # matching purposes but will still be included in the output table.
1711
2529
  # @return [String]
1712
2530
  #
1713
2531
  # @!attribute [rw] sub_type
@@ -1766,6 +2584,10 @@ module Aws::EntityResolution
1766
2584
  include Aws::Structure
1767
2585
  end
1768
2586
 
2587
+ # @!attribute [rw] output_source_config
2588
+ # A list of `OutputSource` objects.
2589
+ # @return [Array<Types::IdMappingJobOutputSource>]
2590
+ #
1769
2591
  # @!attribute [rw] workflow_name
1770
2592
  # The name of the ID mapping job to be retrieved.
1771
2593
  # @return [String]
@@ -1773,6 +2595,7 @@ module Aws::EntityResolution
1773
2595
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJobInput AWS API Documentation
1774
2596
  #
1775
2597
  class StartIdMappingJobInput < Struct.new(
2598
+ :output_source_config,
1776
2599
  :workflow_name)
1777
2600
  SENSITIVE = []
1778
2601
  include Aws::Structure
@@ -1782,10 +2605,15 @@ module Aws::EntityResolution
1782
2605
  # The ID of the job.
1783
2606
  # @return [String]
1784
2607
  #
2608
+ # @!attribute [rw] output_source_config
2609
+ # A list of `OutputSource` objects.
2610
+ # @return [Array<Types::IdMappingJobOutputSource>]
2611
+ #
1785
2612
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/StartIdMappingJobOutput AWS API Documentation
1786
2613
  #
1787
2614
  class StartIdMappingJobOutput < Struct.new(
1788
- :job_id)
2615
+ :job_id,
2616
+ :output_source_config)
1789
2617
  SENSITIVE = []
1790
2618
  include Aws::Structure
1791
2619
  end
@@ -1892,7 +2720,8 @@ module Aws::EntityResolution
1892
2720
  #
1893
2721
  # @!attribute [rw] role_arn
1894
2722
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1895
- # assumes this role to access resources on your behalf.
2723
+ # assumes this role to access Amazon Web Services resources on your
2724
+ # behalf.
1896
2725
  # @return [String]
1897
2726
  #
1898
2727
  # @!attribute [rw] workflow_name
@@ -1933,12 +2762,14 @@ module Aws::EntityResolution
1933
2762
  #
1934
2763
  # @!attribute [rw] role_arn
1935
2764
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
1936
- # assumes this role to access resources on your behalf.
2765
+ # assumes this role to access Amazon Web Services resources on your
2766
+ # behalf.
1937
2767
  # @return [String]
1938
2768
  #
1939
2769
  # @!attribute [rw] workflow_arn
1940
2770
  # The Amazon Resource Name (ARN) of the workflow role. Entity
1941
- # Resolution assumes this role to access resources on your behalf.
2771
+ # Resolution assumes this role to access Amazon Web Services resources
2772
+ # on your behalf.
1942
2773
  # @return [String]
1943
2774
  #
1944
2775
  # @!attribute [rw] workflow_name
@@ -1959,6 +2790,105 @@ module Aws::EntityResolution
1959
2790
  include Aws::Structure
1960
2791
  end
1961
2792
 
2793
+ # @!attribute [rw] description
2794
+ # The description of the ID namespace.
2795
+ # @return [String]
2796
+ #
2797
+ # @!attribute [rw] id_mapping_workflow_properties
2798
+ # Determines the properties of `IdMappingWorkflow` where this
2799
+ # `IdNamespace` can be used as a `Source` or a `Target`.
2800
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
2801
+ #
2802
+ # @!attribute [rw] id_namespace_name
2803
+ # The name of the ID namespace.
2804
+ # @return [String]
2805
+ #
2806
+ # @!attribute [rw] input_source_config
2807
+ # A list of `InputSource` objects, which have the fields
2808
+ # `InputSourceARN` and `SchemaName`.
2809
+ # @return [Array<Types::IdNamespaceInputSource>]
2810
+ #
2811
+ # @!attribute [rw] role_arn
2812
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2813
+ # assumes this role to access the resources defined in this
2814
+ # `IdNamespace` on your behalf as part of a workflow run.
2815
+ # @return [String]
2816
+ #
2817
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdNamespaceInput AWS API Documentation
2818
+ #
2819
+ class UpdateIdNamespaceInput < Struct.new(
2820
+ :description,
2821
+ :id_mapping_workflow_properties,
2822
+ :id_namespace_name,
2823
+ :input_source_config,
2824
+ :role_arn)
2825
+ SENSITIVE = []
2826
+ include Aws::Structure
2827
+ end
2828
+
2829
+ # @!attribute [rw] created_at
2830
+ # The timestamp of when the ID namespace was created.
2831
+ # @return [Time]
2832
+ #
2833
+ # @!attribute [rw] description
2834
+ # The description of the ID namespace.
2835
+ # @return [String]
2836
+ #
2837
+ # @!attribute [rw] id_mapping_workflow_properties
2838
+ # Determines the properties of `IdMappingWorkflow` where this
2839
+ # `IdNamespace` can be used as a `Source` or a `Target`.
2840
+ # @return [Array<Types::IdNamespaceIdMappingWorkflowProperties>]
2841
+ #
2842
+ # @!attribute [rw] id_namespace_arn
2843
+ # The Amazon Resource Name (ARN) of the ID namespace.
2844
+ # @return [String]
2845
+ #
2846
+ # @!attribute [rw] id_namespace_name
2847
+ # The name of the ID namespace.
2848
+ # @return [String]
2849
+ #
2850
+ # @!attribute [rw] input_source_config
2851
+ # A list of `InputSource` objects, which have the fields
2852
+ # `InputSourceARN` and `SchemaName`.
2853
+ # @return [Array<Types::IdNamespaceInputSource>]
2854
+ #
2855
+ # @!attribute [rw] role_arn
2856
+ # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
2857
+ # assumes this role to access the resources defined in this
2858
+ # `IdNamespace` on your behalf as part of a workflow run.
2859
+ # @return [String]
2860
+ #
2861
+ # @!attribute [rw] type
2862
+ # The type of ID namespace. There are two types: `SOURCE` and
2863
+ # `TARGET`.
2864
+ #
2865
+ # The `SOURCE` contains configurations for `sourceId` data that will
2866
+ # be processed in an ID mapping workflow.
2867
+ #
2868
+ # The `TARGET` contains a configuration of `targetId` to which all
2869
+ # `sourceIds` will resolve to.
2870
+ # @return [String]
2871
+ #
2872
+ # @!attribute [rw] updated_at
2873
+ # The timestamp of when the ID namespace was last updated.
2874
+ # @return [Time]
2875
+ #
2876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/UpdateIdNamespaceOutput AWS API Documentation
2877
+ #
2878
+ class UpdateIdNamespaceOutput < Struct.new(
2879
+ :created_at,
2880
+ :description,
2881
+ :id_mapping_workflow_properties,
2882
+ :id_namespace_arn,
2883
+ :id_namespace_name,
2884
+ :input_source_config,
2885
+ :role_arn,
2886
+ :type,
2887
+ :updated_at)
2888
+ SENSITIVE = []
2889
+ include Aws::Structure
2890
+ end
2891
+
1962
2892
  # @!attribute [rw] description
1963
2893
  # A description of the workflow.
1964
2894
  # @return [String]