aws-sdk-customerprofiles 1.20.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9807cd1cb915479c1936925a7323284eb6ea79bcd367161b21a6f5077320955b
4
- data.tar.gz: 31957275151a4ccddf2381596a4fc8c1c33c46a999d88f243230788c4ae1e2ab
3
+ metadata.gz: 65457f6c8b50e184e428481d7e9fab32ee5595ebbe0059f217fc3b43de88762d
4
+ data.tar.gz: d1b2fb4511410140a8e73a9bcf3523f898ae20fa55f22846c86ce4673b24fb84
5
5
  SHA512:
6
- metadata.gz: 6583830c8f9436e3f9932a23cc95bfc8116a614d1fe40026be982e25b1d034e6ddd495576b102a795645bd75a337f773c1ac7ee4208e0632f978872d72b0af5a
7
- data.tar.gz: 8c28098fa6d8a3e5f4b446b2e4e8a18c844f7288943a744fd671a3c4a8a469b7ec797172132be1050767e4f7600c2f3e2ed934439198e44f6d380672362bc6c2
6
+ metadata.gz: 8bfa23fc150f5db905a2b7727377f8675a522824ae033041617ba4974be8ae7c5a49ffd967f3c02c4b6af6077469801a82765d07c132727c79b9b97c5dedd489
7
+ data.tar.gz: 9468e32571e866ae96a468fcd75bcd2bf76b6a3b8878402e0c1358653d3dd2eadfa28fc0d86f6ff38bf9f5b51a269d666134694b1d842d0e1ee59cc26d65bc33
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2022-09-13)
5
+ ------------------
6
+
7
+ * Feature - Added isUnstructured in response for Customer Profiles Integration APIs
8
+
9
+ 1.21.0 (2022-06-30)
10
+ ------------------
11
+
12
+ * Feature - This release adds the optional MinAllowedConfidenceScoreForMerging parameter to the CreateDomain, UpdateDomain, and GetAutoMergingPreview APIs in Customer Profiles. This parameter is used as a threshold to influence the profile auto-merging step of the Identity Resolution process.
13
+
4
14
  1.20.0 (2022-02-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.22.0
@@ -352,7 +352,7 @@ module Aws::CustomerProfiles
352
352
  # @!group API Operations
353
353
 
354
354
  # Associates a new key value with a specific profile, such as a Contact
355
- # Trace Record (CTR) ContactId.
355
+ # Record ContactId.
356
356
  #
357
357
  # A profile object can have a single unique key and any number of
358
358
  # additional keys that can be used to identify the profile that it
@@ -362,7 +362,13 @@ module Aws::CustomerProfiles
362
362
  # The unique identifier of a customer profile.
363
363
  #
364
364
  # @option params [required, String] :key_name
365
- # A searchable identifier of a customer profile.
365
+ # A searchable identifier of a customer profile. The predefined keys you
366
+ # can use include: \_account, \_profileId, \_assetId, \_caseId,
367
+ # \_orderId, \_fullName, \_phone, \_email, \_ctrContactId,
368
+ # \_marketoLeadId, \_salesforceAccountId, \_salesforceContactId,
369
+ # \_salesforceAssetId, \_zendeskUserId, \_zendeskExternalId,
370
+ # \_zendeskTicketId, \_serviceNowSystemId, \_serviceNowIncidentId,
371
+ # \_segmentUserId, \_shopifyCustomerId, \_shopifyOrderId.
366
372
  #
367
373
  # @option params [required, Array<String>] :values
368
374
  # A list of key values.
@@ -492,6 +498,7 @@ module Aws::CustomerProfiles
492
498
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
493
499
  # source_name: "string1To255",
494
500
  # },
501
+ # min_allowed_confidence_score_for_merging: 1.0,
495
502
  # },
496
503
  # exporting_config: {
497
504
  # s3_exporting: {
@@ -520,6 +527,7 @@ module Aws::CustomerProfiles
520
527
  # resp.matching.auto_merging.consolidation.matching_attributes_list[0][0] #=> String
521
528
  # resp.matching.auto_merging.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
522
529
  # resp.matching.auto_merging.conflict_resolution.source_name #=> String
530
+ # resp.matching.auto_merging.min_allowed_confidence_score_for_merging #=> Float
523
531
  # resp.matching.exporting_config.s3_exporting.s3_bucket_name #=> String
524
532
  # resp.matching.exporting_config.s3_exporting.s3_key_name #=> String
525
533
  # resp.created_at #=> Time
@@ -1095,6 +1103,10 @@ module Aws::CustomerProfiles
1095
1103
  # How the auto-merging process should resolve conflicts between
1096
1104
  # different profiles.
1097
1105
  #
1106
+ # @option params [Float] :min_allowed_confidence_score_for_merging
1107
+ # Minimum confidence score required for profiles within a matching group
1108
+ # to be merged during the auto-merge process.
1109
+ #
1098
1110
  # @return [Types::GetAutoMergingPreviewResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1099
1111
  #
1100
1112
  # * {Types::GetAutoMergingPreviewResponse#domain_name #domain_name} => String
@@ -1115,6 +1127,7 @@ module Aws::CustomerProfiles
1115
1127
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
1116
1128
  # source_name: "string1To255",
1117
1129
  # },
1130
+ # min_allowed_confidence_score_for_merging: 1.0,
1118
1131
  # })
1119
1132
  #
1120
1133
  # @example Response structure
@@ -1175,6 +1188,7 @@ module Aws::CustomerProfiles
1175
1188
  # resp.matching.auto_merging.consolidation.matching_attributes_list[0][0] #=> String
1176
1189
  # resp.matching.auto_merging.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
1177
1190
  # resp.matching.auto_merging.conflict_resolution.source_name #=> String
1191
+ # resp.matching.auto_merging.min_allowed_confidence_score_for_merging #=> Float
1178
1192
  # resp.matching.exporting_config.s3_exporting.s3_bucket_name #=> String
1179
1193
  # resp.matching.exporting_config.s3_exporting.s3_key_name #=> String
1180
1194
  # resp.created_at #=> Time
@@ -1245,6 +1259,7 @@ module Aws::CustomerProfiles
1245
1259
  # resp.auto_merging.consolidation.matching_attributes_list[0][0] #=> String
1246
1260
  # resp.auto_merging.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
1247
1261
  # resp.auto_merging.conflict_resolution.source_name #=> String
1262
+ # resp.auto_merging.min_allowed_confidence_score_for_merging #=> Float
1248
1263
  # resp.exporting_location.s3_exporting.s3_bucket_name #=> String
1249
1264
  # resp.exporting_location.s3_exporting.s3_key_name #=> String
1250
1265
  # resp.job_stats.number_of_profiles_reviewed #=> Integer
@@ -1278,6 +1293,7 @@ module Aws::CustomerProfiles
1278
1293
  # * {Types::GetIntegrationResponse#tags #tags} => Hash&lt;String,String&gt;
1279
1294
  # * {Types::GetIntegrationResponse#object_type_names #object_type_names} => Hash&lt;String,String&gt;
1280
1295
  # * {Types::GetIntegrationResponse#workflow_id #workflow_id} => String
1296
+ # * {Types::GetIntegrationResponse#is_unstructured #is_unstructured} => Boolean
1281
1297
  #
1282
1298
  # @example Request syntax with placeholder values
1283
1299
  #
@@ -1298,6 +1314,7 @@ module Aws::CustomerProfiles
1298
1314
  # resp.object_type_names #=> Hash
1299
1315
  # resp.object_type_names["string1To255"] #=> String
1300
1316
  # resp.workflow_id #=> String
1317
+ # resp.is_unstructured #=> Boolean
1301
1318
  #
1302
1319
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegration AWS API Documentation
1303
1320
  #
@@ -1670,6 +1687,7 @@ module Aws::CustomerProfiles
1670
1687
  # resp.items[0].object_type_names #=> Hash
1671
1688
  # resp.items[0].object_type_names["string1To255"] #=> String
1672
1689
  # resp.items[0].workflow_id #=> String
1690
+ # resp.items[0].is_unstructured #=> Boolean
1673
1691
  # resp.next_token #=> String
1674
1692
  #
1675
1693
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListAccountIntegrations AWS API Documentation
@@ -1815,6 +1833,7 @@ module Aws::CustomerProfiles
1815
1833
  # resp.items[0].object_type_names #=> Hash
1816
1834
  # resp.items[0].object_type_names["string1To255"] #=> String
1817
1835
  # resp.items[0].workflow_id #=> String
1836
+ # resp.items[0].is_unstructured #=> Boolean
1818
1837
  # resp.next_token #=> String
1819
1838
  #
1820
1839
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrations AWS API Documentation
@@ -2166,6 +2185,14 @@ module Aws::CustomerProfiles
2166
2185
  #
2167
2186
  # An integration can belong to only one domain.
2168
2187
  #
2188
+ # To add or remove tags on an existing Integration, see [ TagResource
2189
+ # ][1]/[ UntagResource][2].
2190
+ #
2191
+ #
2192
+ #
2193
+ # [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_TagResource.html
2194
+ # [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UntagResource.html
2195
+ #
2169
2196
  # @option params [required, String] :domain_name
2170
2197
  # The unique name of the domain.
2171
2198
  #
@@ -2201,6 +2228,7 @@ module Aws::CustomerProfiles
2201
2228
  # * {Types::PutIntegrationResponse#tags #tags} => Hash&lt;String,String&gt;
2202
2229
  # * {Types::PutIntegrationResponse#object_type_names #object_type_names} => Hash&lt;String,String&gt;
2203
2230
  # * {Types::PutIntegrationResponse#workflow_id #workflow_id} => String
2231
+ # * {Types::PutIntegrationResponse#is_unstructured #is_unstructured} => Boolean
2204
2232
  #
2205
2233
  # @example Request syntax with placeholder values
2206
2234
  #
@@ -2291,6 +2319,7 @@ module Aws::CustomerProfiles
2291
2319
  # resp.object_type_names #=> Hash
2292
2320
  # resp.object_type_names["string1To255"] #=> String
2293
2321
  # resp.workflow_id #=> String
2322
+ # resp.is_unstructured #=> Boolean
2294
2323
  #
2295
2324
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegration AWS API Documentation
2296
2325
  #
@@ -2303,10 +2332,10 @@ module Aws::CustomerProfiles
2303
2332
 
2304
2333
  # Adds additional objects to customer profiles of a given ObjectType.
2305
2334
  #
2306
- # When adding a specific profile object, like a Contact Trace Record
2307
- # (CTR), an inferred profile can get created if it is not mapped to an
2308
- # existing profile. The resulting profile will only have a phone number
2309
- # populated in the standard ProfileObject. Any additional CTRs with the
2335
+ # When adding a specific profile object, like a Contact Record, an
2336
+ # inferred profile can get created if it is not mapped to an existing
2337
+ # profile. The resulting profile will only have a phone number populated
2338
+ # in the standard ProfileObject. Any additional Contact Records with the
2310
2339
  # same phone number will be mapped to the same inferred profile.
2311
2340
  #
2312
2341
  # When a ProfileObject is created and if a ProfileObjectType already
@@ -2352,6 +2381,14 @@ module Aws::CustomerProfiles
2352
2381
 
2353
2382
  # Defines a ProfileObjectType.
2354
2383
  #
2384
+ # To add or remove tags on an existing ObjectType, see [
2385
+ # TagResource][1]/[UntagResource][2].
2386
+ #
2387
+ #
2388
+ #
2389
+ # [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_TagResource.html
2390
+ # [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UntagResource.html
2391
+ #
2355
2392
  # @option params [required, String] :domain_name
2356
2393
  # The unique name of the domain.
2357
2394
  #
@@ -2362,7 +2399,14 @@ module Aws::CustomerProfiles
2362
2399
  # Description of the profile object type.
2363
2400
  #
2364
2401
  # @option params [String] :template_id
2365
- # A unique identifier for the object template.
2402
+ # A unique identifier for the object template. For some attributes in
2403
+ # the request, the service will use the default value from the object
2404
+ # template when TemplateId is present. If these attributes are present
2405
+ # in the request, the service may return a `BadRequestException`. These
2406
+ # attributes include: AllowProfileCreation,
2407
+ # SourceLastUpdatedTimestampFormat, Fields, and Keys. For example, if
2408
+ # AllowProfileCreation is set to true when TemplateId is set, the
2409
+ # service may return a `BadRequestException`.
2366
2410
  #
2367
2411
  # @option params [Integer] :expiration_days
2368
2412
  # The number of days until the data in the object expires.
@@ -2667,11 +2711,16 @@ module Aws::CustomerProfiles
2667
2711
  # [Cross-service confused deputy prevention][3] for sample policies that
2668
2712
  # you should apply.
2669
2713
  #
2714
+ # To add or remove tags on an existing Domain, see
2715
+ # [TagResource][4]/[UntagResource][5].
2716
+ #
2670
2717
  #
2671
2718
  #
2672
2719
  # [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateDomain.html
2673
2720
  # [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
2674
2721
  # [3]: https://docs.aws.amazon.com/connect/latest/adminguide/cross-service-confused-deputy-prevention.html
2722
+ # [4]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_TagResource.html
2723
+ # [5]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UntagResource.html
2675
2724
  #
2676
2725
  # @option params [required, String] :domain_name
2677
2726
  # The unique name of the domain.
@@ -2747,6 +2796,7 @@ module Aws::CustomerProfiles
2747
2796
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
2748
2797
  # source_name: "string1To255",
2749
2798
  # },
2799
+ # min_allowed_confidence_score_for_merging: 1.0,
2750
2800
  # },
2751
2801
  # exporting_config: {
2752
2802
  # s3_exporting: {
@@ -2775,6 +2825,7 @@ module Aws::CustomerProfiles
2775
2825
  # resp.matching.auto_merging.consolidation.matching_attributes_list[0][0] #=> String
2776
2826
  # resp.matching.auto_merging.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
2777
2827
  # resp.matching.auto_merging.conflict_resolution.source_name #=> String
2828
+ # resp.matching.auto_merging.min_allowed_confidence_score_for_merging #=> Float
2778
2829
  # resp.matching.exporting_config.s3_exporting.s3_bucket_name #=> String
2779
2830
  # resp.matching.exporting_config.s3_exporting.s3_key_name #=> String
2780
2831
  # resp.created_at #=> Time
@@ -2974,7 +3025,7 @@ module Aws::CustomerProfiles
2974
3025
  params: params,
2975
3026
  config: config)
2976
3027
  context[:gem_name] = 'aws-sdk-customerprofiles'
2977
- context[:gem_version] = '1.20.0'
3028
+ context[:gem_version] = '1.22.0'
2978
3029
  Seahorse::Client::Request.new(handlers, context)
2979
3030
  end
2980
3031
 
@@ -61,6 +61,7 @@ module Aws::CustomerProfiles
61
61
  DomainList = Shapes::ListShape.new(name: 'DomainList')
62
62
  DomainStats = Shapes::StructureShape.new(name: 'DomainStats')
63
63
  Double = Shapes::FloatShape.new(name: 'Double')
64
+ Double0To1 = Shapes::FloatShape.new(name: 'Double0To1')
64
65
  ExportingConfig = Shapes::StructureShape.new(name: 'ExportingConfig')
65
66
  ExportingLocation = Shapes::StructureShape.new(name: 'ExportingLocation')
66
67
  FieldContentType = Shapes::StringShape.new(name: 'FieldContentType')
@@ -296,6 +297,7 @@ module Aws::CustomerProfiles
296
297
  AutoMerging.add_member(:enabled, Shapes::ShapeRef.new(shape: optionalBoolean, required: true, location_name: "Enabled"))
297
298
  AutoMerging.add_member(:consolidation, Shapes::ShapeRef.new(shape: Consolidation, location_name: "Consolidation"))
298
299
  AutoMerging.add_member(:conflict_resolution, Shapes::ShapeRef.new(shape: ConflictResolution, location_name: "ConflictResolution"))
300
+ AutoMerging.add_member(:min_allowed_confidence_score_for_merging, Shapes::ShapeRef.new(shape: Double0To1, location_name: "MinAllowedConfidenceScoreForMerging"))
299
301
  AutoMerging.struct_class = Types::AutoMerging
300
302
 
301
303
  BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: message, location_name: "Message"))
@@ -482,6 +484,7 @@ module Aws::CustomerProfiles
482
484
  GetAutoMergingPreviewRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
483
485
  GetAutoMergingPreviewRequest.add_member(:consolidation, Shapes::ShapeRef.new(shape: Consolidation, required: true, location_name: "Consolidation"))
484
486
  GetAutoMergingPreviewRequest.add_member(:conflict_resolution, Shapes::ShapeRef.new(shape: ConflictResolution, required: true, location_name: "ConflictResolution"))
487
+ GetAutoMergingPreviewRequest.add_member(:min_allowed_confidence_score_for_merging, Shapes::ShapeRef.new(shape: Double0To1, location_name: "MinAllowedConfidenceScoreForMerging"))
485
488
  GetAutoMergingPreviewRequest.struct_class = Types::GetAutoMergingPreviewRequest
486
489
 
487
490
  GetAutoMergingPreviewResponse.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "DomainName"))
@@ -533,6 +536,7 @@ module Aws::CustomerProfiles
533
536
  GetIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
534
537
  GetIntegrationResponse.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
535
538
  GetIntegrationResponse.add_member(:workflow_id, Shapes::ShapeRef.new(shape: string1To255, location_name: "WorkflowId"))
539
+ GetIntegrationResponse.add_member(:is_unstructured, Shapes::ShapeRef.new(shape: optionalBoolean, location_name: "IsUnstructured"))
536
540
  GetIntegrationResponse.struct_class = Types::GetIntegrationResponse
537
541
 
538
542
  GetMatchesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: token, location: "querystring", location_name: "next-token"))
@@ -678,6 +682,7 @@ module Aws::CustomerProfiles
678
682
  ListIntegrationItem.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
679
683
  ListIntegrationItem.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
680
684
  ListIntegrationItem.add_member(:workflow_id, Shapes::ShapeRef.new(shape: string1To255, location_name: "WorkflowId"))
685
+ ListIntegrationItem.add_member(:is_unstructured, Shapes::ShapeRef.new(shape: optionalBoolean, location_name: "IsUnstructured"))
681
686
  ListIntegrationItem.struct_class = Types::ListIntegrationItem
682
687
 
683
688
  ListIntegrationsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
@@ -868,6 +873,7 @@ module Aws::CustomerProfiles
868
873
  PutIntegrationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
869
874
  PutIntegrationResponse.add_member(:object_type_names, Shapes::ShapeRef.new(shape: ObjectTypeNames, location_name: "ObjectTypeNames"))
870
875
  PutIntegrationResponse.add_member(:workflow_id, Shapes::ShapeRef.new(shape: string1To255, location_name: "WorkflowId"))
876
+ PutIntegrationResponse.add_member(:is_unstructured, Shapes::ShapeRef.new(shape: optionalBoolean, location_name: "IsUnstructured"))
871
877
  PutIntegrationResponse.struct_class = Types::PutIntegrationResponse
872
878
 
873
879
  PutProfileObjectRequest.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, required: true, location_name: "ObjectTypeName"))
@@ -38,7 +38,13 @@ module Aws::CustomerProfiles
38
38
  # @return [String]
39
39
  #
40
40
  # @!attribute [rw] key_name
41
- # A searchable identifier of a customer profile.
41
+ # A searchable identifier of a customer profile. The predefined keys
42
+ # you can use include: \_account, \_profileId, \_assetId, \_caseId,
43
+ # \_orderId, \_fullName, \_phone, \_email, \_ctrContactId,
44
+ # \_marketoLeadId, \_salesforceAccountId, \_salesforceContactId,
45
+ # \_salesforceAssetId, \_zendeskUserId, \_zendeskExternalId,
46
+ # \_zendeskTicketId, \_serviceNowSystemId, \_serviceNowIncidentId,
47
+ # \_segmentUserId, \_shopifyCustomerId, \_shopifyOrderId.
42
48
  # @return [String]
43
49
  #
44
50
  # @!attribute [rw] values
@@ -376,6 +382,7 @@ module Aws::CustomerProfiles
376
382
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
377
383
  # source_name: "string1To255",
378
384
  # },
385
+ # min_allowed_confidence_score_for_merging: 1.0,
379
386
  # }
380
387
  #
381
388
  # @!attribute [rw] enabled
@@ -395,12 +402,20 @@ module Aws::CustomerProfiles
395
402
  # which `EmailAddress` should be used?
396
403
  # @return [Types::ConflictResolution]
397
404
  #
405
+ # @!attribute [rw] min_allowed_confidence_score_for_merging
406
+ # A number between 0 and 1 that represents the minimum confidence
407
+ # score required for profiles within a matching group to be merged
408
+ # during the auto-merge process. A higher score means higher
409
+ # similarity required to merge profiles.
410
+ # @return [Float]
411
+ #
398
412
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/AutoMerging AWS API Documentation
399
413
  #
400
414
  class AutoMerging < Struct.new(
401
415
  :enabled,
402
416
  :consolidation,
403
- :conflict_resolution)
417
+ :conflict_resolution,
418
+ :min_allowed_confidence_score_for_merging)
404
419
  SENSITIVE = []
405
420
  include Aws::Structure
406
421
  end
@@ -580,6 +595,7 @@ module Aws::CustomerProfiles
580
595
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
581
596
  # source_name: "string1To255",
582
597
  # },
598
+ # min_allowed_confidence_score_for_merging: 1.0,
583
599
  # },
584
600
  # exporting_config: {
585
601
  # s3_exporting: {
@@ -1691,6 +1707,7 @@ module Aws::CustomerProfiles
1691
1707
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
1692
1708
  # source_name: "string1To255",
1693
1709
  # },
1710
+ # min_allowed_confidence_score_for_merging: 1.0,
1694
1711
  # }
1695
1712
  #
1696
1713
  # @!attribute [rw] domain_name
@@ -1706,12 +1723,18 @@ module Aws::CustomerProfiles
1706
1723
  # different profiles.
1707
1724
  # @return [Types::ConflictResolution]
1708
1725
  #
1726
+ # @!attribute [rw] min_allowed_confidence_score_for_merging
1727
+ # Minimum confidence score required for profiles within a matching
1728
+ # group to be merged during the auto-merge process.
1729
+ # @return [Float]
1730
+ #
1709
1731
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetAutoMergingPreviewRequest AWS API Documentation
1710
1732
  #
1711
1733
  class GetAutoMergingPreviewRequest < Struct.new(
1712
1734
  :domain_name,
1713
1735
  :consolidation,
1714
- :conflict_resolution)
1736
+ :conflict_resolution,
1737
+ :min_allowed_confidence_score_for_merging)
1715
1738
  SENSITIVE = []
1716
1739
  include Aws::Structure
1717
1740
  end
@@ -2013,6 +2036,12 @@ module Aws::CustomerProfiles
2013
2036
  # Unique identifier for the workflow.
2014
2037
  # @return [String]
2015
2038
  #
2039
+ # @!attribute [rw] is_unstructured
2040
+ # Boolean to indicate if the Flow associated with the Integration is
2041
+ # created via Appflow console or with ObjectTypeName equals
2042
+ # \_unstructured via API/CLI in flowDefinition
2043
+ # @return [Boolean]
2044
+ #
2016
2045
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegrationResponse AWS API Documentation
2017
2046
  #
2018
2047
  class GetIntegrationResponse < Struct.new(
@@ -2023,7 +2052,8 @@ module Aws::CustomerProfiles
2023
2052
  :last_updated_at,
2024
2053
  :tags,
2025
2054
  :object_type_names,
2026
- :workflow_id)
2055
+ :workflow_id,
2056
+ :is_unstructured)
2027
2057
  SENSITIVE = []
2028
2058
  include Aws::Structure
2029
2059
  end
@@ -2871,6 +2901,12 @@ module Aws::CustomerProfiles
2871
2901
  # Unique identifier for the workflow.
2872
2902
  # @return [String]
2873
2903
  #
2904
+ # @!attribute [rw] is_unstructured
2905
+ # Boolean to indicate if the Flow associated with the Integration is
2906
+ # created via Appflow console or with ObjectTypeName equals
2907
+ # \_unstructured via API/CLI in flowDefinition
2908
+ # @return [Boolean]
2909
+ #
2874
2910
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrationItem AWS API Documentation
2875
2911
  #
2876
2912
  class ListIntegrationItem < Struct.new(
@@ -2881,7 +2917,8 @@ module Aws::CustomerProfiles
2881
2917
  :last_updated_at,
2882
2918
  :tags,
2883
2919
  :object_type_names,
2884
- :workflow_id)
2920
+ :workflow_id,
2921
+ :is_unstructured)
2885
2922
  SENSITIVE = []
2886
2923
  include Aws::Structure
2887
2924
  end
@@ -3369,9 +3406,15 @@ module Aws::CustomerProfiles
3369
3406
  # @return [Array<String>]
3370
3407
  #
3371
3408
  # @!attribute [rw] confidence_score
3372
- # A number between 0 and 1 that represents the confidence level of
3373
- # assigning profiles to a matching group. A score of 1 likely
3374
- # indicates an exact match.
3409
+ # A number between 0 and 1, where a higher score means higher
3410
+ # similarity. Examining match confidence scores lets you distinguish
3411
+ # between groups of similar records in which the system is highly
3412
+ # confident (which you may decide to merge), groups of similar records
3413
+ # about which the system is uncertain (which you may decide to have
3414
+ # reviewed by a human), and groups of similar records that the system
3415
+ # deems to be unlikely (which you may decide to reject). Given
3416
+ # confidence scores vary as per the data input, it should not be used
3417
+ # an absolute measure of matching quality.
3375
3418
  # @return [Float]
3376
3419
  #
3377
3420
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/MatchItem AWS API Documentation
@@ -3406,6 +3449,7 @@ module Aws::CustomerProfiles
3406
3449
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
3407
3450
  # source_name: "string1To255",
3408
3451
  # },
3452
+ # min_allowed_confidence_score_for_merging: 1.0,
3409
3453
  # },
3410
3454
  # exporting_config: {
3411
3455
  # s3_exporting: {
@@ -3943,6 +3987,12 @@ module Aws::CustomerProfiles
3943
3987
  # Unique identifier for the workflow.
3944
3988
  # @return [String]
3945
3989
  #
3990
+ # @!attribute [rw] is_unstructured
3991
+ # Boolean to indicate if the Flow associated with the Integration is
3992
+ # created via Appflow console or with ObjectTypeName equals
3993
+ # \_unstructured via API/CLI in flowDefinition
3994
+ # @return [Boolean]
3995
+ #
3946
3996
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationResponse AWS API Documentation
3947
3997
  #
3948
3998
  class PutIntegrationResponse < Struct.new(
@@ -3953,7 +4003,8 @@ module Aws::CustomerProfiles
3953
4003
  :last_updated_at,
3954
4004
  :tags,
3955
4005
  :object_type_names,
3956
- :workflow_id)
4006
+ :workflow_id,
4007
+ :is_unstructured)
3957
4008
  SENSITIVE = []
3958
4009
  include Aws::Structure
3959
4010
  end
@@ -4047,7 +4098,14 @@ module Aws::CustomerProfiles
4047
4098
  # @return [String]
4048
4099
  #
4049
4100
  # @!attribute [rw] template_id
4050
- # A unique identifier for the object template.
4101
+ # A unique identifier for the object template. For some attributes in
4102
+ # the request, the service will use the default value from the object
4103
+ # template when TemplateId is present. If these attributes are present
4104
+ # in the request, the service may return a `BadRequestException`.
4105
+ # These attributes include: AllowProfileCreation,
4106
+ # SourceLastUpdatedTimestampFormat, Fields, and Keys. For example, if
4107
+ # AllowProfileCreation is set to true when TemplateId is set, the
4108
+ # service may return a `BadRequestException`.
4051
4109
  # @return [String]
4052
4110
  #
4053
4111
  # @!attribute [rw] expiration_days
@@ -4899,6 +4957,7 @@ module Aws::CustomerProfiles
4899
4957
  # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
4900
4958
  # source_name: "string1To255",
4901
4959
  # },
4960
+ # min_allowed_confidence_score_for_merging: 1.0,
4902
4961
  # },
4903
4962
  # exporting_config: {
4904
4963
  # s3_exporting: {
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-customerprofiles/customizations'
48
48
  # @!group service
49
49
  module Aws::CustomerProfiles
50
50
 
51
- GEM_VERSION = '1.20.0'
51
+ GEM_VERSION = '1.22.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-customerprofiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.22.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: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core