aws-sdk-entityresolution 1.14.0 → 1.15.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.
data/sig/client.rbs CHANGED
@@ -119,7 +119,7 @@ module Aws
119
119
  def create_id_mapping_workflow: (
120
120
  ?description: ::String,
121
121
  id_mapping_techniques: {
122
- id_mapping_type: ("PROVIDER"),
122
+ id_mapping_type: ("PROVIDER" | "RULE_BASED"),
123
123
  provider_properties: {
124
124
  intermediate_source_configuration: {
125
125
  intermediate_s3_path: ::String
@@ -127,6 +127,17 @@ module Aws
127
127
  provider_configuration: {
128
128
  }?,
129
129
  provider_service_arn: ::String
130
+ }?,
131
+ rule_based_properties: {
132
+ attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
133
+ record_matching_model: ("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET"),
134
+ rule_definition_type: ("SOURCE" | "TARGET"),
135
+ rules: Array[
136
+ {
137
+ matching_keys: Array[::String],
138
+ rule_name: ::String
139
+ },
140
+ ]?
130
141
  }?
131
142
  },
132
143
  input_source_config: Array[
@@ -142,7 +153,7 @@ module Aws
142
153
  output_s3_path: ::String
143
154
  },
144
155
  ],
145
- role_arn: ::String,
156
+ ?role_arn: ::String,
146
157
  ?tags: Hash[::String, ::String],
147
158
  workflow_name: ::String
148
159
  ) -> _CreateIdMappingWorkflowResponseSuccess
@@ -166,11 +177,22 @@ module Aws
166
177
  ?description: ::String,
167
178
  ?id_mapping_workflow_properties: Array[
168
179
  {
169
- id_mapping_type: ("PROVIDER"),
180
+ id_mapping_type: ("PROVIDER" | "RULE_BASED"),
170
181
  provider_properties: {
171
182
  provider_configuration: {
172
183
  }?,
173
184
  provider_service_arn: ::String
185
+ }?,
186
+ rule_based_properties: {
187
+ attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")?,
188
+ record_matching_models: Array[("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")]?,
189
+ rule_definition_types: Array[("SOURCE" | "TARGET")]?,
190
+ rules: Array[
191
+ {
192
+ matching_keys: Array[::String],
193
+ rule_name: ::String
194
+ },
195
+ ]?
174
196
  }?
175
197
  },
176
198
  ],
@@ -236,6 +258,7 @@ module Aws
236
258
  resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
237
259
  rule_based_properties: {
238
260
  attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
261
+ match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")?,
239
262
  rules: Array[
240
263
  {
241
264
  matching_keys: Array[::String],
@@ -264,6 +287,7 @@ module Aws
264
287
  {
265
288
  field_name: ::String,
266
289
  group_name: ::String?,
290
+ hashed: bool?,
267
291
  match_key: ::String?,
268
292
  sub_type: ::String?,
269
293
  type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
@@ -657,7 +681,7 @@ module Aws
657
681
  def update_id_mapping_workflow: (
658
682
  ?description: ::String,
659
683
  id_mapping_techniques: {
660
- id_mapping_type: ("PROVIDER"),
684
+ id_mapping_type: ("PROVIDER" | "RULE_BASED"),
661
685
  provider_properties: {
662
686
  intermediate_source_configuration: {
663
687
  intermediate_s3_path: ::String
@@ -665,6 +689,17 @@ module Aws
665
689
  provider_configuration: {
666
690
  }?,
667
691
  provider_service_arn: ::String
692
+ }?,
693
+ rule_based_properties: {
694
+ attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
695
+ record_matching_model: ("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET"),
696
+ rule_definition_type: ("SOURCE" | "TARGET"),
697
+ rules: Array[
698
+ {
699
+ matching_keys: Array[::String],
700
+ rule_name: ::String
701
+ },
702
+ ]?
668
703
  }?
669
704
  },
670
705
  input_source_config: Array[
@@ -680,7 +715,7 @@ module Aws
680
715
  output_s3_path: ::String
681
716
  },
682
717
  ],
683
- role_arn: ::String,
718
+ ?role_arn: ::String,
684
719
  workflow_name: ::String
685
720
  ) -> _UpdateIdMappingWorkflowResponseSuccess
686
721
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdMappingWorkflowResponseSuccess
@@ -702,11 +737,22 @@ module Aws
702
737
  ?description: ::String,
703
738
  ?id_mapping_workflow_properties: Array[
704
739
  {
705
- id_mapping_type: ("PROVIDER"),
740
+ id_mapping_type: ("PROVIDER" | "RULE_BASED"),
706
741
  provider_properties: {
707
742
  provider_configuration: {
708
743
  }?,
709
744
  provider_service_arn: ::String
745
+ }?,
746
+ rule_based_properties: {
747
+ attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")?,
748
+ record_matching_models: Array[("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")]?,
749
+ rule_definition_types: Array[("SOURCE" | "TARGET")]?,
750
+ rules: Array[
751
+ {
752
+ matching_keys: Array[::String],
753
+ rule_name: ::String
754
+ },
755
+ ]?
710
756
  }?
711
757
  },
712
758
  ],
@@ -769,6 +815,7 @@ module Aws
769
815
  resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER"),
770
816
  rule_based_properties: {
771
817
  attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
818
+ match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")?,
772
819
  rules: Array[
773
820
  {
774
821
  matching_keys: Array[::String],
@@ -796,6 +843,7 @@ module Aws
796
843
  {
797
844
  field_name: ::String,
798
845
  group_name: ::String?,
846
+ hashed: bool?,
799
847
  match_key: ::String?,
800
848
  sub_type: ::String?,
801
849
  type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
data/sig/types.rbs CHANGED
@@ -373,6 +373,9 @@ module Aws::EntityResolution
373
373
  class IdMappingJobMetrics
374
374
  attr_accessor input_records: ::Integer
375
375
  attr_accessor records_not_processed: ::Integer
376
+ attr_accessor total_mapped_records: ::Integer
377
+ attr_accessor total_mapped_source_records: ::Integer
378
+ attr_accessor total_mapped_target_records: ::Integer
376
379
  attr_accessor total_records_processed: ::Integer
377
380
  SENSITIVE: []
378
381
  end
@@ -384,9 +387,18 @@ module Aws::EntityResolution
384
387
  SENSITIVE: []
385
388
  end
386
389
 
390
+ class IdMappingRuleBasedProperties
391
+ attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
392
+ attr_accessor record_matching_model: ("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")
393
+ attr_accessor rule_definition_type: ("SOURCE" | "TARGET")
394
+ attr_accessor rules: ::Array[Types::Rule]
395
+ SENSITIVE: []
396
+ end
397
+
387
398
  class IdMappingTechniques
388
- attr_accessor id_mapping_type: ("PROVIDER")
399
+ attr_accessor id_mapping_type: ("PROVIDER" | "RULE_BASED")
389
400
  attr_accessor provider_properties: Types::ProviderProperties
401
+ attr_accessor rule_based_properties: Types::IdMappingRuleBasedProperties
390
402
  SENSITIVE: []
391
403
  end
392
404
 
@@ -411,9 +423,15 @@ module Aws::EntityResolution
411
423
  SENSITIVE: []
412
424
  end
413
425
 
426
+ class IdNamespaceIdMappingWorkflowMetadata
427
+ attr_accessor id_mapping_type: ("PROVIDER" | "RULE_BASED")
428
+ SENSITIVE: []
429
+ end
430
+
414
431
  class IdNamespaceIdMappingWorkflowProperties
415
- attr_accessor id_mapping_type: ("PROVIDER")
432
+ attr_accessor id_mapping_type: ("PROVIDER" | "RULE_BASED")
416
433
  attr_accessor provider_properties: Types::NamespaceProviderProperties
434
+ attr_accessor rule_based_properties: Types::NamespaceRuleBasedProperties
417
435
  SENSITIVE: []
418
436
  end
419
437
 
@@ -426,6 +444,7 @@ module Aws::EntityResolution
426
444
  class IdNamespaceSummary
427
445
  attr_accessor created_at: ::Time
428
446
  attr_accessor description: ::String
447
+ attr_accessor id_mapping_workflow_properties: ::Array[Types::IdNamespaceIdMappingWorkflowMetadata]
429
448
  attr_accessor id_namespace_arn: ::String
430
449
  attr_accessor id_namespace_name: ::String
431
450
  attr_accessor type: ("SOURCE" | "TARGET")
@@ -590,6 +609,14 @@ module Aws::EntityResolution
590
609
  SENSITIVE: []
591
610
  end
592
611
 
612
+ class NamespaceRuleBasedProperties
613
+ attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
614
+ attr_accessor record_matching_models: ::Array[("ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET")]
615
+ attr_accessor rule_definition_types: ::Array[("SOURCE" | "TARGET")]
616
+ attr_accessor rules: ::Array[Types::Rule]
617
+ SENSITIVE: []
618
+ end
619
+
593
620
  class OutputAttribute
594
621
  attr_accessor hashed: bool
595
622
  attr_accessor name: ::String
@@ -700,6 +727,7 @@ module Aws::EntityResolution
700
727
 
701
728
  class RuleBasedProperties
702
729
  attr_accessor attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY")
730
+ attr_accessor match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")
703
731
  attr_accessor rules: ::Array[Types::Rule]
704
732
  SENSITIVE: []
705
733
  end
@@ -707,6 +735,7 @@ module Aws::EntityResolution
707
735
  class SchemaInputAttribute
708
736
  attr_accessor field_name: ::String
709
737
  attr_accessor group_name: ::String
738
+ attr_accessor hashed: bool
710
739
  attr_accessor match_key: ::String
711
740
  attr_accessor sub_type: ::String
712
741
  attr_accessor type: ("NAME" | "NAME_FIRST" | "NAME_MIDDLE" | "NAME_LAST" | "ADDRESS" | "ADDRESS_STREET1" | "ADDRESS_STREET2" | "ADDRESS_STREET3" | "ADDRESS_CITY" | "ADDRESS_STATE" | "ADDRESS_COUNTRY" | "ADDRESS_POSTALCODE" | "PHONE" | "PHONE_NUMBER" | "PHONE_COUNTRYCODE" | "EMAIL_ADDRESS" | "UNIQUE_ID" | "DATE" | "STRING" | "PROVIDER_ID")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-entityresolution
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS EntityResolution (AWSEntityResolution).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email: