aws-sdk-entityresolution 1.31.0 → 1.33.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2f56397d267013d707081767d19a4258b26b73948c4a6bc1511b3fcfdbadb50
4
- data.tar.gz: 6b0259bd6e9a5d10925cd03c48058bec75423d0e75f92c2b46c16f409c58d63c
3
+ metadata.gz: 3252da2ab50c569ed4a7243ce08562e2dce7e887e3757c33414b3b0f76773daa
4
+ data.tar.gz: 673f72002c3c5d75c775be993b1c917a0758a2d09af0c43671ef8d7deeb1f2b7
5
5
  SHA512:
6
- metadata.gz: e2fd00c161ff033eff641e358a8bf1b8febb06b0c90d6138cc66fc3a39da643b64fc5aa988944df3c13a33ce017afdc1b258986b3a1d23d769cfd452ef0036cd
7
- data.tar.gz: 3bb4b2e6728c22b4ad77caa03fc15b3caa6aea5b1ccd3f0bbdc0f574265d5b0241f65c3d04891a53b8d0bc1c59865c2b028338350b7abb35e6230ea3454eccee
6
+ metadata.gz: 2f9078af2d471bfb524dfe86007a90253bb4d681c77930ed804731883c06b424edc502f93e601cec0a3c29f23c59a3ff0f740da3baae15b737720571e3051ec3
7
+ data.tar.gz: 164bb319a2f48286d5bccca2ac3721363e483cc66fa0061144a5ef30f6dca7741e98983d30a29544406837d6493086e813096d3d9de381997e19bfff0671f846
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2025-07-31)
5
+ ------------------
6
+
7
+ * Feature - Add support for creating advanced rule-based matching workflows in AWS Entity Resolution.
8
+
9
+ 1.32.0 (2025-07-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.31.0 (2025-06-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.33.0
@@ -95,7 +95,7 @@ module Aws::EntityResolution
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::EntityResolution
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::EntityResolution
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::EntityResolution
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::EntityResolution
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -583,7 +593,7 @@ module Aws::EntityResolution
583
593
  # Creates an `IdMappingWorkflow` object which stores the configuration
584
594
  # of the data processing job to be run. Each `IdMappingWorkflow` must
585
595
  # have a unique workflow name. To modify an existing workflow, use the
586
- # `UpdateIdMappingWorkflow` API.
596
+ # UpdateIdMappingWorkflow API.
587
597
  #
588
598
  # @option params [required, String] :workflow_name
589
599
  # The name of the workflow. There can't be multiple
@@ -598,7 +608,7 @@ module Aws::EntityResolution
598
608
  #
599
609
  # @option params [Array<Types::IdMappingWorkflowOutputSource>] :output_source_config
600
610
  # A list of `IdMappingWorkflowOutputSource` objects, each of which
601
- # contains fields `OutputS3Path` and `Output`.
611
+ # contains fields `outputS3Path` and `KMSArn`.
602
612
  #
603
613
  # @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
604
614
  # An object which defines the ID mapping technique and any additional
@@ -704,7 +714,7 @@ module Aws::EntityResolution
704
714
  # Creates an ID namespace object which will help customers provide
705
715
  # metadata explaining their dataset and how to use it. Each ID namespace
706
716
  # must have a unique name. To modify an existing ID namespace, use the
707
- # `UpdateIdNamespace` API.
717
+ # UpdateIdNamespace API.
708
718
  #
709
719
  # @option params [required, String] :id_namespace_name
710
720
  # The name of the ID namespace.
@@ -825,10 +835,12 @@ module Aws::EntityResolution
825
835
  req.send_request(options)
826
836
  end
827
837
 
828
- # Creates a `MatchingWorkflow` object which stores the configuration of
829
- # the data processing job to be run. It is important to note that there
830
- # should not be a pre-existing `MatchingWorkflow` with the same name. To
831
- # modify an existing workflow, utilize the `UpdateMatchingWorkflow` API.
838
+ # Creates a matching workflow that defines the configuration for a data
839
+ # processing job. The workflow name must be unique. To modify an
840
+ # existing workflow, use `UpdateMatchingWorkflow`.
841
+ #
842
+ # For workflows where `resolutionType` is ML\_MATCHING, incremental
843
+ # processing is not supported.
832
844
  #
833
845
  # @option params [required, String] :workflow_name
834
846
  # The name of the workflow. There can't be multiple `MatchingWorkflows`
@@ -843,15 +855,19 @@ module Aws::EntityResolution
843
855
  #
844
856
  # @option params [required, Array<Types::OutputSource>] :output_source_config
845
857
  # A list of `OutputSource` objects, each of which contains fields
846
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
858
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
847
859
  #
848
860
  # @option params [required, Types::ResolutionTechniques] :resolution_techniques
849
861
  # An object which defines the `resolutionType` and the
850
862
  # `ruleBasedProperties`.
851
863
  #
852
864
  # @option params [Types::IncrementalRunConfig] :incremental_run_config
853
- # An object which defines an incremental run type and has only
854
- # `incrementalRunType` as a field.
865
+ # Optional. An object that defines the incremental run type. This object
866
+ # contains only the `incrementalRunType` field, which appears as
867
+ # "Automatic" in the console.
868
+ #
869
+ # For workflows where `resolutionType` is `ML_MATCHING`, incremental
870
+ # processing is not supported.
855
871
  #
856
872
  # @option params [required, String] :role_arn
857
873
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -909,6 +925,14 @@ module Aws::EntityResolution
909
925
  # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
910
926
  # match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
911
927
  # },
928
+ # rule_condition_properties: {
929
+ # rules: [ # required
930
+ # {
931
+ # rule_name: "RuleConditionRuleNameString", # required
932
+ # condition: "RuleConditionConditionString", # required
933
+ # },
934
+ # ],
935
+ # },
912
936
  # provider_properties: {
913
937
  # provider_service_arn: "ProviderServiceArn", # required
914
938
  # provider_configuration: {
@@ -950,6 +974,9 @@ module Aws::EntityResolution
950
974
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
951
975
  # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
952
976
  # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
977
+ # resp.resolution_techniques.rule_condition_properties.rules #=> Array
978
+ # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
979
+ # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
953
980
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
954
981
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
955
982
  # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
@@ -1592,6 +1619,9 @@ module Aws::EntityResolution
1592
1619
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
1593
1620
  # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1594
1621
  # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
1622
+ # resp.resolution_techniques.rule_condition_properties.rules #=> Array
1623
+ # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
1624
+ # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
1595
1625
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
1596
1626
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
1597
1627
  # resp.created_at #=> Time
@@ -2280,9 +2310,9 @@ module Aws::EntityResolution
2280
2310
  end
2281
2311
 
2282
2312
  # Updates an existing `IdMappingWorkflow`. This method is identical to
2283
- # `CreateIdMappingWorkflow`, except it uses an HTTP `PUT` request
2284
- # instead of a `POST` request, and the `IdMappingWorkflow` must already
2285
- # exist for the method to succeed.
2313
+ # CreateIdMappingWorkflow, except it uses an HTTP `PUT` request instead
2314
+ # of a `POST` request, and the `IdMappingWorkflow` must already exist
2315
+ # for the method to succeed.
2286
2316
  #
2287
2317
  # @option params [required, String] :workflow_name
2288
2318
  # The name of the workflow.
@@ -2296,7 +2326,7 @@ module Aws::EntityResolution
2296
2326
  #
2297
2327
  # @option params [Array<Types::IdMappingWorkflowOutputSource>] :output_source_config
2298
2328
  # A list of `OutputSource` objects, each of which contains fields
2299
- # `OutputS3Path` and `KMSArn`.
2329
+ # `outputS3Path` and `KMSArn`.
2300
2330
  #
2301
2331
  # @option params [required, Types::IdMappingTechniques] :id_mapping_techniques
2302
2332
  # An object which defines the ID mapping technique and any additional
@@ -2495,10 +2525,11 @@ module Aws::EntityResolution
2495
2525
  req.send_request(options)
2496
2526
  end
2497
2527
 
2498
- # Updates an existing `MatchingWorkflow`. This method is identical to
2499
- # `CreateMatchingWorkflow`, except it uses an HTTP `PUT` request instead
2500
- # of a `POST` request, and the `MatchingWorkflow` must already exist for
2501
- # the method to succeed.
2528
+ # Updates an existing matching workflow. The workflow must already exist
2529
+ # for this operation to succeed.
2530
+ #
2531
+ # For workflows where `resolutionType` is ML\_MATCHING, incremental
2532
+ # processing is not supported.
2502
2533
  #
2503
2534
  # @option params [required, String] :workflow_name
2504
2535
  # The name of the workflow to be retrieved.
@@ -2512,15 +2543,19 @@ module Aws::EntityResolution
2512
2543
  #
2513
2544
  # @option params [required, Array<Types::OutputSource>] :output_source_config
2514
2545
  # A list of `OutputSource` objects, each of which contains fields
2515
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
2546
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
2516
2547
  #
2517
2548
  # @option params [required, Types::ResolutionTechniques] :resolution_techniques
2518
2549
  # An object which defines the `resolutionType` and the
2519
2550
  # `ruleBasedProperties`.
2520
2551
  #
2521
2552
  # @option params [Types::IncrementalRunConfig] :incremental_run_config
2522
- # An object which defines an incremental run type and has only
2523
- # `incrementalRunType` as a field.
2553
+ # Optional. An object that defines the incremental run type. This object
2554
+ # contains only the `incrementalRunType` field, which appears as
2555
+ # "Automatic" in the console.
2556
+ #
2557
+ # For workflows where `resolutionType` is `ML_MATCHING`, incremental
2558
+ # processing is not supported.
2524
2559
  #
2525
2560
  # @option params [required, String] :role_arn
2526
2561
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -2574,6 +2609,14 @@ module Aws::EntityResolution
2574
2609
  # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
2575
2610
  # match_purpose: "IDENTIFIER_GENERATION", # accepts IDENTIFIER_GENERATION, INDEXING
2576
2611
  # },
2612
+ # rule_condition_properties: {
2613
+ # rules: [ # required
2614
+ # {
2615
+ # rule_name: "RuleConditionRuleNameString", # required
2616
+ # condition: "RuleConditionConditionString", # required
2617
+ # },
2618
+ # ],
2619
+ # },
2577
2620
  # provider_properties: {
2578
2621
  # provider_service_arn: "ProviderServiceArn", # required
2579
2622
  # provider_configuration: {
@@ -2611,6 +2654,9 @@ module Aws::EntityResolution
2611
2654
  # resp.resolution_techniques.rule_based_properties.rules[0].matching_keys[0] #=> String
2612
2655
  # resp.resolution_techniques.rule_based_properties.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
2613
2656
  # resp.resolution_techniques.rule_based_properties.match_purpose #=> String, one of "IDENTIFIER_GENERATION", "INDEXING"
2657
+ # resp.resolution_techniques.rule_condition_properties.rules #=> Array
2658
+ # resp.resolution_techniques.rule_condition_properties.rules[0].rule_name #=> String
2659
+ # resp.resolution_techniques.rule_condition_properties.rules[0].condition #=> String
2614
2660
  # resp.resolution_techniques.provider_properties.provider_service_arn #=> String
2615
2661
  # resp.resolution_techniques.provider_properties.intermediate_source_configuration.intermediate_s3_path #=> String
2616
2662
  # resp.incremental_run_config.incremental_run_type #=> String, one of "IMMEDIATE"
@@ -2709,7 +2755,7 @@ module Aws::EntityResolution
2709
2755
  tracer: tracer
2710
2756
  )
2711
2757
  context[:gem_name] = 'aws-sdk-entityresolution'
2712
- context[:gem_version] = '1.31.0'
2758
+ context[:gem_version] = '1.33.0'
2713
2759
  Seahorse::Client::Request.new(handlers, context)
2714
2760
  end
2715
2761
 
@@ -204,6 +204,11 @@ module Aws::EntityResolution
204
204
  Rule = Shapes::StructureShape.new(name: 'Rule')
205
205
  RuleBasedProperties = Shapes::StructureShape.new(name: 'RuleBasedProperties')
206
206
  RuleBasedPropertiesRulesList = Shapes::ListShape.new(name: 'RuleBasedPropertiesRulesList')
207
+ RuleCondition = Shapes::StructureShape.new(name: 'RuleCondition')
208
+ RuleConditionConditionString = Shapes::StringShape.new(name: 'RuleConditionConditionString')
209
+ RuleConditionProperties = Shapes::StructureShape.new(name: 'RuleConditionProperties')
210
+ RuleConditionPropertiesRulesList = Shapes::ListShape.new(name: 'RuleConditionPropertiesRulesList')
211
+ RuleConditionRuleNameString = Shapes::StringShape.new(name: 'RuleConditionRuleNameString')
207
212
  RuleMatchingKeysList = Shapes::ListShape.new(name: 'RuleMatchingKeysList')
208
213
  RuleRuleNameString = Shapes::StringShape.new(name: 'RuleRuleNameString')
209
214
  S3Path = Shapes::StringShape.new(name: 'S3Path')
@@ -852,6 +857,7 @@ module Aws::EntityResolution
852
857
 
853
858
  ResolutionTechniques.add_member(:resolution_type, Shapes::ShapeRef.new(shape: ResolutionType, required: true, location_name: "resolutionType"))
854
859
  ResolutionTechniques.add_member(:rule_based_properties, Shapes::ShapeRef.new(shape: RuleBasedProperties, location_name: "ruleBasedProperties"))
860
+ ResolutionTechniques.add_member(:rule_condition_properties, Shapes::ShapeRef.new(shape: RuleConditionProperties, location_name: "ruleConditionProperties"))
855
861
  ResolutionTechniques.add_member(:provider_properties, Shapes::ShapeRef.new(shape: ProviderProperties, location_name: "providerProperties"))
856
862
  ResolutionTechniques.struct_class = Types::ResolutionTechniques
857
863
 
@@ -869,6 +875,15 @@ module Aws::EntityResolution
869
875
 
870
876
  RuleBasedPropertiesRulesList.member = Shapes::ShapeRef.new(shape: Rule)
871
877
 
878
+ RuleCondition.add_member(:rule_name, Shapes::ShapeRef.new(shape: RuleConditionRuleNameString, required: true, location_name: "ruleName"))
879
+ RuleCondition.add_member(:condition, Shapes::ShapeRef.new(shape: RuleConditionConditionString, required: true, location_name: "condition"))
880
+ RuleCondition.struct_class = Types::RuleCondition
881
+
882
+ RuleConditionProperties.add_member(:rules, Shapes::ShapeRef.new(shape: RuleConditionPropertiesRulesList, required: true, location_name: "rules"))
883
+ RuleConditionProperties.struct_class = Types::RuleConditionProperties
884
+
885
+ RuleConditionPropertiesRulesList.member = Shapes::ShapeRef.new(shape: RuleCondition)
886
+
872
887
  RuleMatchingKeysList.member = Shapes::ShapeRef.new(shape: AttributeName)
873
888
 
874
889
  SchemaInputAttribute.add_member(:field_name, Shapes::ShapeRef.new(shape: AttributeName, required: true, location_name: "fieldName"))
@@ -175,7 +175,7 @@ module Aws::EntityResolution
175
175
  #
176
176
  # @!attribute [rw] output_source_config
177
177
  # A list of `IdMappingWorkflowOutputSource` objects, each of which
178
- # contains fields `OutputS3Path` and `Output`.
178
+ # contains fields `outputS3Path` and `KMSArn`.
179
179
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
180
180
  #
181
181
  # @!attribute [rw] id_mapping_techniques
@@ -228,7 +228,7 @@ module Aws::EntityResolution
228
228
  #
229
229
  # @!attribute [rw] output_source_config
230
230
  # A list of `IdMappingWorkflowOutputSource` objects, each of which
231
- # contains fields `OutputS3Path` and `Output`.
231
+ # contains fields `outputS3Path` and `KMSArn`.
232
232
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
233
233
  #
234
234
  # @!attribute [rw] id_mapping_techniques
@@ -395,7 +395,7 @@ module Aws::EntityResolution
395
395
  #
396
396
  # @!attribute [rw] output_source_config
397
397
  # A list of `OutputSource` objects, each of which contains fields
398
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
398
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
399
399
  # @return [Array<Types::OutputSource>]
400
400
  #
401
401
  # @!attribute [rw] resolution_techniques
@@ -404,8 +404,12 @@ module Aws::EntityResolution
404
404
  # @return [Types::ResolutionTechniques]
405
405
  #
406
406
  # @!attribute [rw] incremental_run_config
407
- # An object which defines an incremental run type and has only
408
- # `incrementalRunType` as a field.
407
+ # Optional. An object that defines the incremental run type. This
408
+ # object contains only the `incrementalRunType` field, which appears
409
+ # as "Automatic" in the console.
410
+ #
411
+ # For workflows where `resolutionType` is `ML_MATCHING`, incremental
412
+ # processing is not supported.
409
413
  # @return [Types::IncrementalRunConfig]
410
414
  #
411
415
  # @!attribute [rw] role_arn
@@ -454,7 +458,7 @@ module Aws::EntityResolution
454
458
  #
455
459
  # @!attribute [rw] output_source_config
456
460
  # A list of `OutputSource` objects, each of which contains fields
457
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
461
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
458
462
  # @return [Array<Types::OutputSource>]
459
463
  #
460
464
  # @!attribute [rw] resolution_techniques
@@ -930,7 +934,7 @@ module Aws::EntityResolution
930
934
  #
931
935
  # @!attribute [rw] output_source_config
932
936
  # A list of `OutputSource` objects, each of which contains fields
933
- # `OutputS3Path` and `KMSArn`.
937
+ # `outputS3Path` and `KMSArn`.
934
938
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
935
939
  #
936
940
  # @!attribute [rw] id_mapping_techniques
@@ -1190,7 +1194,7 @@ module Aws::EntityResolution
1190
1194
  #
1191
1195
  # @!attribute [rw] output_source_config
1192
1196
  # A list of `OutputSource` objects, each of which contains fields
1193
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
1197
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
1194
1198
  # @return [Array<Types::OutputSource>]
1195
1199
  #
1196
1200
  # @!attribute [rw] resolution_techniques
@@ -1489,7 +1493,7 @@ module Aws::EntityResolution
1489
1493
  include Aws::Structure
1490
1494
  end
1491
1495
 
1492
- # An object containing `KMSArn`, `OutputS3Path`, and `RoleARN`.
1496
+ # An object containing `KMSArn`, `outputS3Path`, and `roleARN`.
1493
1497
  #
1494
1498
  # @!attribute [rw] role_arn
1495
1499
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -1533,17 +1537,17 @@ module Aws::EntityResolution
1533
1537
  # The comparison type. You can either choose `ONE_TO_ONE` or
1534
1538
  # `MANY_TO_MANY` as the `attributeMatchingModel`.
1535
1539
  #
1536
- # If you choose `MANY_TO_MANY`, the system can match attributes across
1537
- # the sub-types of an attribute type. For example, if the value of the
1538
- # `Email` field of Profile A matches the value of the `BusinessEmail`
1539
- # field of Profile B, the two profiles are matched on the `Email`
1540
- # attribute type.
1541
- #
1542
1540
  # If you choose `ONE_TO_ONE`, the system can only match attributes if
1543
1541
  # the sub-types are an exact match. For example, for the `Email`
1544
1542
  # attribute type, the system will only consider it a match if the
1545
1543
  # value of the `Email` field of Profile A matches the value of the
1546
1544
  # `Email` field of Profile B.
1545
+ #
1546
+ # If you choose `MANY_TO_MANY`, the system can match attributes across
1547
+ # the sub-types of an attribute type. For example, if the value of the
1548
+ # `Email` field of Profile A matches the value of the `BusinessEmail`
1549
+ # field of Profile B, the two profiles are matched on the `Email`
1550
+ # attribute type.
1547
1551
  # @return [String]
1548
1552
  #
1549
1553
  # @!attribute [rw] record_matching_model
@@ -1595,7 +1599,7 @@ module Aws::EntityResolution
1595
1599
  include Aws::Structure
1596
1600
  end
1597
1601
 
1598
- # An object containing `InputSourceARN`, `SchemaName`, and `Type`.
1602
+ # An object containing `inputSourceARN`, `schemaName`, and `type`.
1599
1603
  #
1600
1604
  # @!attribute [rw] input_source_arn
1601
1605
  # An Glue table Amazon Resource Name (ARN) or a matching workflow ARN
@@ -1693,8 +1697,8 @@ module Aws::EntityResolution
1693
1697
  include Aws::Structure
1694
1698
  end
1695
1699
 
1696
- # An object containing `IdMappingType`, `ProviderProperties`, and
1697
- # `RuleBasedProperties`.
1700
+ # An object containing `idMappingType`, `providerProperties`, and
1701
+ # `ruleBasedProperties`.
1698
1702
  #
1699
1703
  # @!attribute [rw] id_mapping_type
1700
1704
  # The type of ID mapping.
@@ -1720,7 +1724,7 @@ module Aws::EntityResolution
1720
1724
  include Aws::Structure
1721
1725
  end
1722
1726
 
1723
- # An object containing `InputSourceARN` and `SchemaName`.
1727
+ # An object containing `inputSourceARN` and `schemaName`.
1724
1728
  #
1725
1729
  # @!attribute [rw] input_source_arn
1726
1730
  # An Glue table Amazon Resource Name (ARN) or a matching workflow ARN
@@ -1792,11 +1796,19 @@ module Aws::EntityResolution
1792
1796
  include Aws::Structure
1793
1797
  end
1794
1798
 
1795
- # An object which defines an incremental run type and has only
1796
- # `incrementalRunType` as a field.
1799
+ # Optional. An object that defines the incremental run type. This object
1800
+ # contains only the `incrementalRunType` field, which appears as
1801
+ # "Automatic" in the console.
1802
+ #
1803
+ # For workflows where `resolutionType` is `ML_MATCHING`, incremental
1804
+ # processing is not supported.
1797
1805
  #
1798
1806
  # @!attribute [rw] incremental_run_type
1799
- # The type of incremental run. It takes only one value: `IMMEDIATE`.
1807
+ # The type of incremental run. The only valid value is `IMMEDIATE`.
1808
+ # This appears as "Automatic" in the console.
1809
+ #
1810
+ # For workflows where `resolutionType` is `ML_MATCHING`, incremental
1811
+ # processing is not supported.
1800
1812
  # @return [String]
1801
1813
  #
1802
1814
  # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/IncrementalRunConfig AWS API Documentation
@@ -1807,8 +1819,8 @@ module Aws::EntityResolution
1807
1819
  include Aws::Structure
1808
1820
  end
1809
1821
 
1810
- # An object containing `InputSourceARN`, `SchemaName`, and
1811
- # `ApplyNormalization`.
1822
+ # An object containing `inputSourceARN`, `schemaName`, and
1823
+ # `applyNormalization`.
1812
1824
  #
1813
1825
  # @!attribute [rw] input_source_arn
1814
1826
  # An Glue table Amazon Resource Name (ARN) for the input source table.
@@ -1866,8 +1878,8 @@ module Aws::EntityResolution
1866
1878
  include Aws::Structure
1867
1879
  end
1868
1880
 
1869
- # An object containing `InputRecords`, `TotalRecordsProcessed`,
1870
- # `MatchIDs`, and `RecordsNotProcessed`.
1881
+ # An object containing `inputRecords`, `totalRecordsProcessed`,
1882
+ # `matchIDs`, and `recordsNotProcessed`.
1871
1883
  #
1872
1884
  # @!attribute [rw] input_records
1873
1885
  # The total number of input records.
@@ -1896,7 +1908,7 @@ module Aws::EntityResolution
1896
1908
  include Aws::Structure
1897
1909
  end
1898
1910
 
1899
- # An object containing `KMSArn`, `OutputS3Path`, and `RoleArn`.
1911
+ # An object containing `KMSArn`, `outputS3Path`, and `roleArn`.
1900
1912
  #
1901
1913
  # @!attribute [rw] role_arn
1902
1914
  # The Amazon Resource Name (ARN) of the IAM role. Entity Resolution
@@ -1923,7 +1935,7 @@ module Aws::EntityResolution
1923
1935
  include Aws::Structure
1924
1936
  end
1925
1937
 
1926
- # An object containing the `JobId`, `Status`, `StartTime`, and `EndTime`
1938
+ # An object containing the `jobId`, `status`, `startTime`, and `endTime`
1927
1939
  # of a job.
1928
1940
  #
1929
1941
  # @!attribute [rw] job_id
@@ -2119,8 +2131,8 @@ module Aws::EntityResolution
2119
2131
 
2120
2132
  # @!attribute [rw] workflow_summaries
2121
2133
  # A list of `MatchingWorkflowSummary` objects, each of which contain
2122
- # the fields `WorkflowName`, `WorkflowArn`, `CreatedAt`, and
2123
- # `UpdatedAt`.
2134
+ # the fields `workflowName`, `workflowArn`, `resolutionType`,
2135
+ # `createdAt`, and `updatedAt`.
2124
2136
  # @return [Array<Types::MatchingWorkflowSummary>]
2125
2137
  #
2126
2138
  # @!attribute [rw] next_token
@@ -2279,7 +2291,8 @@ module Aws::EntityResolution
2279
2291
  end
2280
2292
 
2281
2293
  # A list of `MatchingWorkflowSummary` objects, each of which contain the
2282
- # fields `WorkflowName`, `WorkflowArn`, `CreatedAt`, `UpdatedAt`.
2294
+ # fields `workflowName`, `workflowArn`, `resolutionType`, `createdAt`,
2295
+ # `updatedAt`.
2283
2296
  #
2284
2297
  # @!attribute [rw] workflow_name
2285
2298
  # The name of the workflow.
@@ -2316,7 +2329,7 @@ module Aws::EntityResolution
2316
2329
  include Aws::Structure
2317
2330
  end
2318
2331
 
2319
- # An object containing `ProviderConfiguration` and `ProviderServiceArn`.
2332
+ # An object containing `providerConfiguration` and `providerServiceArn`.
2320
2333
  #
2321
2334
  # @!attribute [rw] provider_service_arn
2322
2335
  # The Amazon Resource Name (ARN) of the provider service.
@@ -2352,17 +2365,17 @@ module Aws::EntityResolution
2352
2365
  # The comparison type. You can either choose `ONE_TO_ONE` or
2353
2366
  # `MANY_TO_MANY` as the `attributeMatchingModel`.
2354
2367
  #
2355
- # If you choose `MANY_TO_MANY`, the system can match attributes across
2356
- # the sub-types of an attribute type. For example, if the value of the
2357
- # `Email` field of Profile A matches the value of `BusinessEmail`
2358
- # field of Profile B, the two profiles are matched on the `Email`
2359
- # attribute type.
2360
- #
2361
2368
  # If you choose `ONE_TO_ONE`, the system can only match attributes if
2362
2369
  # the sub-types are an exact match. For example, for the `Email`
2363
2370
  # attribute type, the system will only consider it a match if the
2364
2371
  # value of the `Email` field of Profile A matches the value of the
2365
2372
  # `Email` field of Profile B.
2373
+ #
2374
+ # If you choose `MANY_TO_MANY`, the system can match attributes across
2375
+ # the sub-types of an attribute type. For example, if the value of the
2376
+ # `Email` field of Profile A matches the value of `BusinessEmail`
2377
+ # field of Profile B, the two profiles are matched on the `Email`
2378
+ # attribute type.
2366
2379
  # @return [String]
2367
2380
  #
2368
2381
  # @!attribute [rw] record_matching_models
@@ -2754,9 +2767,13 @@ module Aws::EntityResolution
2754
2767
  #
2755
2768
  # @!attribute [rw] rule_based_properties
2756
2769
  # An object which defines the list of matching rules to run and has a
2757
- # field `Rules`, which is a list of rule objects.
2770
+ # field `rules`, which is a list of rule objects.
2758
2771
  # @return [Types::RuleBasedProperties]
2759
2772
  #
2773
+ # @!attribute [rw] rule_condition_properties
2774
+ # An object containing the `rules` for a matching workflow.
2775
+ # @return [Types::RuleConditionProperties]
2776
+ #
2760
2777
  # @!attribute [rw] provider_properties
2761
2778
  # The properties of the provider service.
2762
2779
  # @return [Types::ProviderProperties]
@@ -2766,6 +2783,7 @@ module Aws::EntityResolution
2766
2783
  class ResolutionTechniques < Struct.new(
2767
2784
  :resolution_type,
2768
2785
  :rule_based_properties,
2786
+ :rule_condition_properties,
2769
2787
  :provider_properties)
2770
2788
  SENSITIVE = []
2771
2789
  include Aws::Structure
@@ -2784,7 +2802,7 @@ module Aws::EntityResolution
2784
2802
  include Aws::Structure
2785
2803
  end
2786
2804
 
2787
- # An object containing `RuleName`, and `MatchingKeys`.
2805
+ # An object containing the `ruleName` and `matchingKeys`.
2788
2806
  #
2789
2807
  # @!attribute [rw] rule_name
2790
2808
  # A name for the matching rule.
@@ -2806,8 +2824,7 @@ module Aws::EntityResolution
2806
2824
  end
2807
2825
 
2808
2826
  # An object which defines the list of matching rules to run in a
2809
- # matching workflow. RuleBasedProperties contain a `Rules` field, which
2810
- # is a list of rule objects.
2827
+ # matching workflow.
2811
2828
  #
2812
2829
  # @!attribute [rw] rules
2813
2830
  # A list of `Rule` objects, each of which have fields `RuleName` and
@@ -2815,20 +2832,20 @@ module Aws::EntityResolution
2815
2832
  # @return [Array<Types::Rule>]
2816
2833
  #
2817
2834
  # @!attribute [rw] attribute_matching_model
2818
- # The comparison type. You can either choose `ONE_TO_ONE` or
2819
- # `MANY_TO_MANY` as the `attributeMatchingModel`.
2820
- #
2821
- # If you choose `MANY_TO_MANY`, the system can match attributes across
2822
- # the sub-types of an attribute type. For example, if the value of the
2823
- # `Email` field of Profile A and the value of `BusinessEmail` field of
2824
- # Profile B matches, the two profiles are matched on the `Email`
2825
- # attribute type.
2835
+ # The comparison type. You can choose `ONE_TO_ONE` or `MANY_TO_MANY`
2836
+ # as the `attributeMatchingModel`.
2826
2837
  #
2827
2838
  # If you choose `ONE_TO_ONE`, the system can only match attributes if
2828
2839
  # the sub-types are an exact match. For example, for the `Email`
2829
2840
  # attribute type, the system will only consider it a match if the
2830
2841
  # value of the `Email` field of Profile A matches the value of the
2831
2842
  # `Email` field of Profile B.
2843
+ #
2844
+ # If you choose `MANY_TO_MANY`, the system can match attributes across
2845
+ # the sub-types of an attribute type. For example, if the value of the
2846
+ # `Email` field of Profile A and the value of `BusinessEmail` field of
2847
+ # Profile B matches, the two profiles are matched on the `Email`
2848
+ # attribute type.
2832
2849
  # @return [String]
2833
2850
  #
2834
2851
  # @!attribute [rw] match_purpose
@@ -2851,6 +2868,56 @@ module Aws::EntityResolution
2851
2868
  include Aws::Structure
2852
2869
  end
2853
2870
 
2871
+ # An object that defines the `ruleCondition` and the `ruleName` to use
2872
+ # in a matching workflow.
2873
+ #
2874
+ # @!attribute [rw] rule_name
2875
+ # A name for the matching rule.
2876
+ #
2877
+ # For example: `Rule1`
2878
+ # @return [String]
2879
+ #
2880
+ # @!attribute [rw] condition
2881
+ # A statement that specifies the conditions for a matching rule.
2882
+ #
2883
+ # If your data is accurate, use an Exact matching function: `Exact` or
2884
+ # `ExactManyToMany`.
2885
+ #
2886
+ # If your data has variations in spelling or pronunciation, use a
2887
+ # Fuzzy matching function: `Cosine`, `Levenshtein`, or `Soundex`.
2888
+ #
2889
+ # Use operators if you want to combine (`AND`), separate (`OR`), or
2890
+ # group matching functions `(...)`.
2891
+ #
2892
+ # For example: `(Cosine(a, 10) AND Exact(b, true)) OR
2893
+ # ExactManyToMany(c, d)`
2894
+ # @return [String]
2895
+ #
2896
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/RuleCondition AWS API Documentation
2897
+ #
2898
+ class RuleCondition < Struct.new(
2899
+ :rule_name,
2900
+ :condition)
2901
+ SENSITIVE = []
2902
+ include Aws::Structure
2903
+ end
2904
+
2905
+ # The properties of a rule condition that provides the ability to use
2906
+ # more complex syntax.
2907
+ #
2908
+ # @!attribute [rw] rules
2909
+ # A list of rule objects, each of which have fields `ruleName` and
2910
+ # `condition`.
2911
+ # @return [Array<Types::RuleCondition>]
2912
+ #
2913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/entityresolution-2018-05-10/RuleConditionProperties AWS API Documentation
2914
+ #
2915
+ class RuleConditionProperties < Struct.new(
2916
+ :rules)
2917
+ SENSITIVE = []
2918
+ include Aws::Structure
2919
+ end
2920
+
2854
2921
  # A configuration object for defining input data fields in Entity
2855
2922
  # Resolution. The `SchemaInputAttribute` specifies how individual fields
2856
2923
  # in your input data should be processed and matched.
@@ -2944,8 +3011,8 @@ module Aws::EntityResolution
2944
3011
  include Aws::Structure
2945
3012
  end
2946
3013
 
2947
- # An object containing `SchemaName`, `SchemaArn`, `CreatedAt`,
2948
- # and`UpdatedAt`.
3014
+ # An object containing `schemaName`, `schemaArn`, `createdAt`,
3015
+ # `updatedAt`, and `hasWorkflows`.
2949
3016
  #
2950
3017
  # @!attribute [rw] schema_name
2951
3018
  # The name of the schema.
@@ -3109,7 +3176,7 @@ module Aws::EntityResolution
3109
3176
  #
3110
3177
  # @!attribute [rw] output_source_config
3111
3178
  # A list of `OutputSource` objects, each of which contains fields
3112
- # `OutputS3Path` and `KMSArn`.
3179
+ # `outputS3Path` and `KMSArn`.
3113
3180
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
3114
3181
  #
3115
3182
  # @!attribute [rw] id_mapping_techniques
@@ -3157,7 +3224,7 @@ module Aws::EntityResolution
3157
3224
  #
3158
3225
  # @!attribute [rw] output_source_config
3159
3226
  # A list of `OutputSource` objects, each of which contains fields
3160
- # `OutputS3Path` and `KMSArn`.
3227
+ # `outputS3Path` and `KMSArn`.
3161
3228
  # @return [Array<Types::IdMappingWorkflowOutputSource>]
3162
3229
  #
3163
3230
  # @!attribute [rw] id_mapping_techniques
@@ -3299,7 +3366,7 @@ module Aws::EntityResolution
3299
3366
  #
3300
3367
  # @!attribute [rw] output_source_config
3301
3368
  # A list of `OutputSource` objects, each of which contains fields
3302
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
3369
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
3303
3370
  # @return [Array<Types::OutputSource>]
3304
3371
  #
3305
3372
  # @!attribute [rw] resolution_techniques
@@ -3308,8 +3375,12 @@ module Aws::EntityResolution
3308
3375
  # @return [Types::ResolutionTechniques]
3309
3376
  #
3310
3377
  # @!attribute [rw] incremental_run_config
3311
- # An object which defines an incremental run type and has only
3312
- # `incrementalRunType` as a field.
3378
+ # Optional. An object that defines the incremental run type. This
3379
+ # object contains only the `incrementalRunType` field, which appears
3380
+ # as "Automatic" in the console.
3381
+ #
3382
+ # For workflows where `resolutionType` is `ML_MATCHING`, incremental
3383
+ # processing is not supported.
3313
3384
  # @return [Types::IncrementalRunConfig]
3314
3385
  #
3315
3386
  # @!attribute [rw] role_arn
@@ -3347,7 +3418,7 @@ module Aws::EntityResolution
3347
3418
  #
3348
3419
  # @!attribute [rw] output_source_config
3349
3420
  # A list of `OutputSource` objects, each of which contains fields
3350
- # `OutputS3Path`, `ApplyNormalization`, and `Output`.
3421
+ # `outputS3Path`, `applyNormalization`, `KMSArn`, and `output`.
3351
3422
  # @return [Array<Types::OutputSource>]
3352
3423
  #
3353
3424
  # @!attribute [rw] resolution_techniques
@@ -54,7 +54,7 @@ module Aws::EntityResolution
54
54
  autoload :EndpointProvider, 'aws-sdk-entityresolution/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-entityresolution/endpoints'
56
56
 
57
- GEM_VERSION = '1.31.0'
57
+ GEM_VERSION = '1.33.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -260,6 +261,14 @@ module Aws
260
261
  attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
261
262
  match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")?
262
263
  }?,
264
+ rule_condition_properties: {
265
+ rules: Array[
266
+ {
267
+ rule_name: ::String,
268
+ condition: ::String
269
+ },
270
+ ]
271
+ }?,
263
272
  provider_properties: {
264
273
  provider_service_arn: ::String,
265
274
  provider_configuration: {
@@ -836,6 +845,14 @@ module Aws
836
845
  attribute_matching_model: ("ONE_TO_ONE" | "MANY_TO_MANY"),
837
846
  match_purpose: ("IDENTIFIER_GENERATION" | "INDEXING")?
838
847
  }?,
848
+ rule_condition_properties: {
849
+ rules: Array[
850
+ {
851
+ rule_name: ::String,
852
+ condition: ::String
853
+ },
854
+ ]
855
+ }?,
839
856
  provider_properties: {
840
857
  provider_service_arn: ::String,
841
858
  provider_configuration: {
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -751,6 +751,7 @@ module Aws::EntityResolution
751
751
  class ResolutionTechniques
752
752
  attr_accessor resolution_type: ("RULE_MATCHING" | "ML_MATCHING" | "PROVIDER")
753
753
  attr_accessor rule_based_properties: Types::RuleBasedProperties
754
+ attr_accessor rule_condition_properties: Types::RuleConditionProperties
754
755
  attr_accessor provider_properties: Types::ProviderProperties
755
756
  SENSITIVE: []
756
757
  end
@@ -773,6 +774,17 @@ module Aws::EntityResolution
773
774
  SENSITIVE: []
774
775
  end
775
776
 
777
+ class RuleCondition
778
+ attr_accessor rule_name: ::String
779
+ attr_accessor condition: ::String
780
+ SENSITIVE: []
781
+ end
782
+
783
+ class RuleConditionProperties
784
+ attr_accessor rules: ::Array[Types::RuleCondition]
785
+ SENSITIVE: []
786
+ end
787
+
776
788
  class SchemaInputAttribute
777
789
  attr_accessor field_name: ::String
778
790
  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" | "IPV4" | "IPV6" | "MAID")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-entityresolution
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.33.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.228.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement