aws-sdk-customerprofiles 1.6.0 → 1.10.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +269 -16
- data/lib/aws-sdk-customerprofiles/client_api.rb +112 -0
- data/lib/aws-sdk-customerprofiles/types.rb +475 -23
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d08270ee45732b3861cd2b3d6f649c34b5e0025c6335b5266274cc363a3b973f
|
4
|
+
data.tar.gz: 9c070744ed8e28f7c2e2c5138edeb822cfbf65f5a65e1da8dc3a88d2973547aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89effe39941773b84ebdf628675adb04260b2a45ceebd6dc1d6d05d0872d26e8d5ff611833669afbdbcc2c7707464c91d714a1f724d8c6d00b0a4456905f53ff
|
7
|
+
data.tar.gz: 3085171dd3999f03434fc035db404f53b22e00af341ab74a7cba654e87375936c300cdf58246d5627078aff204d6eb81c183981d26b5253c5774904e82ad3478
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.10.0 (2021-08-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces Standard Profile Objects, namely Asset and Case which contain values populated by data from third party systems and belong to a specific profile. This release adds an optional parameter, ObjectFilter to the ListProfileObjects API in order to search for these Standard Objects.
|
8
|
+
|
9
|
+
1.9.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.8.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.7.0 (2021-04-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release introduces GetMatches and MergeProfiles APIs to fetch and merge duplicate profiles
|
23
|
+
|
4
24
|
1.6.0 (2021-04-08)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -383,6 +383,14 @@ module Aws::CustomerProfiles
|
|
383
383
|
# Each Amazon Connect instance can be associated with only one domain.
|
384
384
|
# Multiple Amazon Connect instances can be associated with one domain.
|
385
385
|
#
|
386
|
+
# Use this API or [UpdateDomain][1] to enable [identity resolution][2]\:
|
387
|
+
# set `Matching` to true.
|
388
|
+
#
|
389
|
+
#
|
390
|
+
#
|
391
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UpdateDomain.html
|
392
|
+
# [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
393
|
+
#
|
386
394
|
# @option params [required, String] :domain_name
|
387
395
|
# The unique name of the domain.
|
388
396
|
#
|
@@ -401,6 +409,17 @@ module Aws::CustomerProfiles
|
|
401
409
|
# operation to enable Amazon Connect Customer Profiles to send messages
|
402
410
|
# to the DeadLetterQueue.
|
403
411
|
#
|
412
|
+
# @option params [Types::MatchingRequest] :matching
|
413
|
+
# The process of matching duplicate profiles. If Matching = true, Amazon
|
414
|
+
# Connect Customer Profiles starts a weekly batch process every Saturday
|
415
|
+
# at 12AM UTC to detect duplicate profiles in your domains. After that
|
416
|
+
# batch process completes, use the [GetMatches][1] API to return and
|
417
|
+
# review the results.
|
418
|
+
#
|
419
|
+
#
|
420
|
+
#
|
421
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
422
|
+
#
|
404
423
|
# @option params [Hash<String,String>] :tags
|
405
424
|
# The tags used to organize, track, or control access for this resource.
|
406
425
|
#
|
@@ -410,6 +429,7 @@ module Aws::CustomerProfiles
|
|
410
429
|
# * {Types::CreateDomainResponse#default_expiration_days #default_expiration_days} => Integer
|
411
430
|
# * {Types::CreateDomainResponse#default_encryption_key #default_encryption_key} => String
|
412
431
|
# * {Types::CreateDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
|
432
|
+
# * {Types::CreateDomainResponse#matching #matching} => Types::MatchingResponse
|
413
433
|
# * {Types::CreateDomainResponse#created_at #created_at} => Time
|
414
434
|
# * {Types::CreateDomainResponse#last_updated_at #last_updated_at} => Time
|
415
435
|
# * {Types::CreateDomainResponse#tags #tags} => Hash<String,String>
|
@@ -421,6 +441,9 @@ module Aws::CustomerProfiles
|
|
421
441
|
# default_expiration_days: 1, # required
|
422
442
|
# default_encryption_key: "encryptionKey",
|
423
443
|
# dead_letter_queue_url: "sqsQueueUrl",
|
444
|
+
# matching: {
|
445
|
+
# enabled: false, # required
|
446
|
+
# },
|
424
447
|
# tags: {
|
425
448
|
# "TagKey" => "TagValue",
|
426
449
|
# },
|
@@ -432,6 +455,7 @@ module Aws::CustomerProfiles
|
|
432
455
|
# resp.default_expiration_days #=> Integer
|
433
456
|
# resp.default_encryption_key #=> String
|
434
457
|
# resp.dead_letter_queue_url #=> String
|
458
|
+
# resp.matching.enabled #=> Boolean
|
435
459
|
# resp.created_at #=> Time
|
436
460
|
# resp.last_updated_at #=> Time
|
437
461
|
# resp.tags #=> Hash
|
@@ -458,7 +482,7 @@ module Aws::CustomerProfiles
|
|
458
482
|
# A unique account number that you have given to the customer.
|
459
483
|
#
|
460
484
|
# @option params [String] :additional_information
|
461
|
-
# Any additional information relevant to the customer
|
485
|
+
# Any additional information relevant to the customer’s profile.
|
462
486
|
#
|
463
487
|
# @option params [String] :party_type
|
464
488
|
# The type of profile used to describe the customer.
|
@@ -482,8 +506,8 @@ module Aws::CustomerProfiles
|
|
482
506
|
# The gender with which the customer identifies.
|
483
507
|
#
|
484
508
|
# @option params [String] :phone_number
|
485
|
-
# The customer
|
486
|
-
#
|
509
|
+
# The customer’s phone number, which has not been specified as a mobile,
|
510
|
+
# home, or business number.
|
487
511
|
#
|
488
512
|
# @option params [String] :mobile_phone_number
|
489
513
|
# The customer’s mobile phone number.
|
@@ -495,7 +519,7 @@ module Aws::CustomerProfiles
|
|
495
519
|
# The customer’s business phone number.
|
496
520
|
#
|
497
521
|
# @option params [String] :email_address
|
498
|
-
# The customer
|
522
|
+
# The customer’s email address, which has not been specified as a
|
499
523
|
# personal or business address.
|
500
524
|
#
|
501
525
|
# @option params [String] :personal_email_address
|
@@ -824,7 +848,7 @@ module Aws::CustomerProfiles
|
|
824
848
|
# Returns information about a specific domain.
|
825
849
|
#
|
826
850
|
# @option params [required, String] :domain_name
|
827
|
-
#
|
851
|
+
# The unique name of the domain.
|
828
852
|
#
|
829
853
|
# @return [Types::GetDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
830
854
|
#
|
@@ -833,6 +857,7 @@ module Aws::CustomerProfiles
|
|
833
857
|
# * {Types::GetDomainResponse#default_encryption_key #default_encryption_key} => String
|
834
858
|
# * {Types::GetDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
|
835
859
|
# * {Types::GetDomainResponse#stats #stats} => Types::DomainStats
|
860
|
+
# * {Types::GetDomainResponse#matching #matching} => Types::MatchingResponse
|
836
861
|
# * {Types::GetDomainResponse#created_at #created_at} => Time
|
837
862
|
# * {Types::GetDomainResponse#last_updated_at #last_updated_at} => Time
|
838
863
|
# * {Types::GetDomainResponse#tags #tags} => Hash<String,String>
|
@@ -853,6 +878,7 @@ module Aws::CustomerProfiles
|
|
853
878
|
# resp.stats.metering_profile_count #=> Integer
|
854
879
|
# resp.stats.object_count #=> Integer
|
855
880
|
# resp.stats.total_size #=> Integer
|
881
|
+
# resp.matching.enabled #=> Boolean
|
856
882
|
# resp.created_at #=> Time
|
857
883
|
# resp.last_updated_at #=> Time
|
858
884
|
# resp.tags #=> Hash
|
@@ -910,6 +936,97 @@ module Aws::CustomerProfiles
|
|
910
936
|
req.send_request(options)
|
911
937
|
end
|
912
938
|
|
939
|
+
# This API is in preview release for Amazon Connect and subject to
|
940
|
+
# change.
|
941
|
+
#
|
942
|
+
# Before calling this API, use [CreateDomain][1] or [UpdateDomain][2] to
|
943
|
+
# enable identity resolution: set `Matching` to true.
|
944
|
+
#
|
945
|
+
# GetMatches returns potentially matching profiles, based on the results
|
946
|
+
# of the latest run of a machine learning process.
|
947
|
+
#
|
948
|
+
# Amazon Connect starts a batch process every Saturday at 12AM UTC to
|
949
|
+
# identify matching profiles. The results are returned up to seven days
|
950
|
+
# after the Saturday run.
|
951
|
+
#
|
952
|
+
# Amazon Connect uses the following profile attributes to identify
|
953
|
+
# matches:
|
954
|
+
#
|
955
|
+
# * PhoneNumber
|
956
|
+
#
|
957
|
+
# * HomePhoneNumber
|
958
|
+
#
|
959
|
+
# * BusinessPhoneNumber
|
960
|
+
#
|
961
|
+
# * MobilePhoneNumber
|
962
|
+
#
|
963
|
+
# * EmailAddress
|
964
|
+
#
|
965
|
+
# * PersonalEmailAddress
|
966
|
+
#
|
967
|
+
# * BusinessEmailAddress
|
968
|
+
#
|
969
|
+
# * FullName
|
970
|
+
#
|
971
|
+
# * BusinessName
|
972
|
+
#
|
973
|
+
# For example, two or more profiles—with spelling mistakes such as
|
974
|
+
# **John Doe** and **Jhn Doe**, or different casing email addresses such
|
975
|
+
# as **JOHN\_DOE@ANYCOMPANY.COM** and **johndoe@anycompany.com**, or
|
976
|
+
# different phone number formats such as **555-010-0000** and
|
977
|
+
# **+1-555-010-0000**—can be detected as belonging to the same customer
|
978
|
+
# **John Doe** and merged into a unified profile.
|
979
|
+
#
|
980
|
+
#
|
981
|
+
#
|
982
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateDomain.html
|
983
|
+
# [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UpdateDomain.html
|
984
|
+
#
|
985
|
+
# @option params [String] :next_token
|
986
|
+
# The token for the next set of results. Use the value returned in the
|
987
|
+
# previous response in the next request to retrieve the next set of
|
988
|
+
# results.
|
989
|
+
#
|
990
|
+
# @option params [Integer] :max_results
|
991
|
+
# The maximum number of results to return per page.
|
992
|
+
#
|
993
|
+
# @option params [required, String] :domain_name
|
994
|
+
# The unique name of the domain.
|
995
|
+
#
|
996
|
+
# @return [Types::GetMatchesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
997
|
+
#
|
998
|
+
# * {Types::GetMatchesResponse#next_token #next_token} => String
|
999
|
+
# * {Types::GetMatchesResponse#match_generation_date #match_generation_date} => Time
|
1000
|
+
# * {Types::GetMatchesResponse#potential_matches #potential_matches} => Integer
|
1001
|
+
# * {Types::GetMatchesResponse#matches #matches} => Array<Types::MatchItem>
|
1002
|
+
#
|
1003
|
+
# @example Request syntax with placeholder values
|
1004
|
+
#
|
1005
|
+
# resp = client.get_matches({
|
1006
|
+
# next_token: "token",
|
1007
|
+
# max_results: 1,
|
1008
|
+
# domain_name: "name", # required
|
1009
|
+
# })
|
1010
|
+
#
|
1011
|
+
# @example Response structure
|
1012
|
+
#
|
1013
|
+
# resp.next_token #=> String
|
1014
|
+
# resp.match_generation_date #=> Time
|
1015
|
+
# resp.potential_matches #=> Integer
|
1016
|
+
# resp.matches #=> Array
|
1017
|
+
# resp.matches[0].match_id #=> String
|
1018
|
+
# resp.matches[0].profile_ids #=> Array
|
1019
|
+
# resp.matches[0].profile_ids[0] #=> String
|
1020
|
+
#
|
1021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetMatches AWS API Documentation
|
1022
|
+
#
|
1023
|
+
# @overload get_matches(params = {})
|
1024
|
+
# @param [Hash] params ({})
|
1025
|
+
def get_matches(params = {}, options = {})
|
1026
|
+
req = build_request(:get_matches, params)
|
1027
|
+
req.send_request(options)
|
1028
|
+
end
|
1029
|
+
|
913
1030
|
# Returns the object types for a specific domain.
|
914
1031
|
#
|
915
1032
|
# @option params [required, String] :domain_name
|
@@ -954,7 +1071,7 @@ module Aws::CustomerProfiles
|
|
954
1071
|
# resp.keys #=> Hash
|
955
1072
|
# resp.keys["name"] #=> Array
|
956
1073
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
957
|
-
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1074
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
958
1075
|
# resp.keys["name"][0].field_names #=> Array
|
959
1076
|
# resp.keys["name"][0].field_names[0] #=> String
|
960
1077
|
# resp.created_at #=> Time
|
@@ -1010,7 +1127,7 @@ module Aws::CustomerProfiles
|
|
1010
1127
|
# resp.keys #=> Hash
|
1011
1128
|
# resp.keys["name"] #=> Array
|
1012
1129
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1013
|
-
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1130
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1014
1131
|
# resp.keys["name"][0].field_names #=> Array
|
1015
1132
|
# resp.keys["name"][0].field_names[0] #=> String
|
1016
1133
|
#
|
@@ -1255,6 +1372,11 @@ module Aws::CustomerProfiles
|
|
1255
1372
|
# @option params [required, String] :profile_id
|
1256
1373
|
# The unique identifier of a customer profile.
|
1257
1374
|
#
|
1375
|
+
# @option params [Types::ObjectFilter] :object_filter
|
1376
|
+
# Applies a filter to the response to include profile objects with the
|
1377
|
+
# specified index values. This filter is only supported for
|
1378
|
+
# ObjectTypeName \_asset and \_case.
|
1379
|
+
#
|
1258
1380
|
# @return [Types::ListProfileObjectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1259
1381
|
#
|
1260
1382
|
# * {Types::ListProfileObjectsResponse#items #items} => Array<Types::ListProfileObjectsItem>
|
@@ -1268,6 +1390,10 @@ module Aws::CustomerProfiles
|
|
1268
1390
|
# domain_name: "name", # required
|
1269
1391
|
# object_type_name: "typeName", # required
|
1270
1392
|
# profile_id: "uuid", # required
|
1393
|
+
# object_filter: {
|
1394
|
+
# key_name: "name", # required
|
1395
|
+
# values: ["string1To255"], # required
|
1396
|
+
# },
|
1271
1397
|
# })
|
1272
1398
|
#
|
1273
1399
|
# @example Response structure
|
@@ -1318,6 +1444,109 @@ module Aws::CustomerProfiles
|
|
1318
1444
|
req.send_request(options)
|
1319
1445
|
end
|
1320
1446
|
|
1447
|
+
# This API is in preview release for Amazon Connect and subject to
|
1448
|
+
# change.
|
1449
|
+
#
|
1450
|
+
# Runs an AWS Lambda job that does the following:
|
1451
|
+
#
|
1452
|
+
# 1. All the profileKeys in the `ProfileToBeMerged` will be moved to
|
1453
|
+
# the main profile.
|
1454
|
+
#
|
1455
|
+
# 2. All the objects in the `ProfileToBeMerged` will be moved to the
|
1456
|
+
# main profile.
|
1457
|
+
#
|
1458
|
+
# 3. All the `ProfileToBeMerged` will be deleted at the end.
|
1459
|
+
#
|
1460
|
+
# 4. All the profileKeys in the `ProfileIdsToBeMerged` will be moved to
|
1461
|
+
# the main profile.
|
1462
|
+
#
|
1463
|
+
# 5. Standard fields are merged as follows:
|
1464
|
+
#
|
1465
|
+
# 1. Fields are always "union"-ed if there are no conflicts in
|
1466
|
+
# standard fields or attributeKeys.
|
1467
|
+
#
|
1468
|
+
# 2. When there are conflicting fields:
|
1469
|
+
#
|
1470
|
+
# 1. If no `SourceProfileIds` entry is specified, the main
|
1471
|
+
# Profile value is always taken.
|
1472
|
+
#
|
1473
|
+
# 2. If a `SourceProfileIds` entry is specified, the specified
|
1474
|
+
# profileId is always taken, even if it is a NULL value.
|
1475
|
+
#
|
1476
|
+
# You can use MergeProfiles together with [GetMatches][1], which returns
|
1477
|
+
# potentially matching profiles, or use it with the results of another
|
1478
|
+
# matching system. After profiles have been merged, they cannot be
|
1479
|
+
# separated (unmerged).
|
1480
|
+
#
|
1481
|
+
#
|
1482
|
+
#
|
1483
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
1484
|
+
#
|
1485
|
+
# @option params [required, String] :domain_name
|
1486
|
+
# The unique name of the domain.
|
1487
|
+
#
|
1488
|
+
# @option params [required, String] :main_profile_id
|
1489
|
+
# The identifier of the profile to be taken.
|
1490
|
+
#
|
1491
|
+
# @option params [required, Array<String>] :profile_ids_to_be_merged
|
1492
|
+
# The identifier of the profile to be merged into MainProfileId.
|
1493
|
+
#
|
1494
|
+
# @option params [Types::FieldSourceProfileIds] :field_source_profile_ids
|
1495
|
+
# The identifiers of the fields in the profile that has the information
|
1496
|
+
# you want to apply to the merge. For example, say you want to merge
|
1497
|
+
# EmailAddress from Profile1 into MainProfile. This would be the
|
1498
|
+
# identifier of the EmailAddress field in Profile1.
|
1499
|
+
#
|
1500
|
+
# @return [Types::MergeProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1501
|
+
#
|
1502
|
+
# * {Types::MergeProfilesResponse#message #message} => String
|
1503
|
+
#
|
1504
|
+
# @example Request syntax with placeholder values
|
1505
|
+
#
|
1506
|
+
# resp = client.merge_profiles({
|
1507
|
+
# domain_name: "name", # required
|
1508
|
+
# main_profile_id: "uuid", # required
|
1509
|
+
# profile_ids_to_be_merged: ["uuid"], # required
|
1510
|
+
# field_source_profile_ids: {
|
1511
|
+
# account_number: "uuid",
|
1512
|
+
# additional_information: "uuid",
|
1513
|
+
# party_type: "uuid",
|
1514
|
+
# business_name: "uuid",
|
1515
|
+
# first_name: "uuid",
|
1516
|
+
# middle_name: "uuid",
|
1517
|
+
# last_name: "uuid",
|
1518
|
+
# birth_date: "uuid",
|
1519
|
+
# gender: "uuid",
|
1520
|
+
# phone_number: "uuid",
|
1521
|
+
# mobile_phone_number: "uuid",
|
1522
|
+
# home_phone_number: "uuid",
|
1523
|
+
# business_phone_number: "uuid",
|
1524
|
+
# email_address: "uuid",
|
1525
|
+
# personal_email_address: "uuid",
|
1526
|
+
# business_email_address: "uuid",
|
1527
|
+
# address: "uuid",
|
1528
|
+
# shipping_address: "uuid",
|
1529
|
+
# mailing_address: "uuid",
|
1530
|
+
# billing_address: "uuid",
|
1531
|
+
# attributes: {
|
1532
|
+
# "string1To255" => "uuid",
|
1533
|
+
# },
|
1534
|
+
# },
|
1535
|
+
# })
|
1536
|
+
#
|
1537
|
+
# @example Response structure
|
1538
|
+
#
|
1539
|
+
# resp.message #=> String
|
1540
|
+
#
|
1541
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/MergeProfiles AWS API Documentation
|
1542
|
+
#
|
1543
|
+
# @overload merge_profiles(params = {})
|
1544
|
+
# @param [Hash] params ({})
|
1545
|
+
def merge_profiles(params = {}, options = {})
|
1546
|
+
req = build_request(:merge_profiles, params)
|
1547
|
+
req.send_request(options)
|
1548
|
+
end
|
1549
|
+
|
1321
1550
|
# Adds an integration between the service and a third-party service,
|
1322
1551
|
# which includes Amazon AppFlow and Amazon Connect.
|
1323
1552
|
#
|
@@ -1562,7 +1791,7 @@ module Aws::CustomerProfiles
|
|
1562
1791
|
# keys: {
|
1563
1792
|
# "name" => [
|
1564
1793
|
# {
|
1565
|
-
# standard_identifiers: ["PROFILE"], # accepts PROFILE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
1794
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
1566
1795
|
# field_names: ["name"],
|
1567
1796
|
# },
|
1568
1797
|
# ],
|
@@ -1587,7 +1816,7 @@ module Aws::CustomerProfiles
|
|
1587
1816
|
# resp.keys #=> Hash
|
1588
1817
|
# resp.keys["name"] #=> Array
|
1589
1818
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1590
|
-
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1819
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
|
1591
1820
|
# resp.keys["name"][0].field_names #=> Array
|
1592
1821
|
# resp.keys["name"][0].field_names[0] #=> String
|
1593
1822
|
# resp.created_at #=> Time
|
@@ -1789,10 +2018,18 @@ module Aws::CustomerProfiles
|
|
1789
2018
|
# Updates the properties of a domain, including creating or selecting a
|
1790
2019
|
# dead letter queue or an encryption key.
|
1791
2020
|
#
|
1792
|
-
#
|
2021
|
+
# After a domain is created, the name can’t be changed.
|
2022
|
+
#
|
2023
|
+
# Use this API or [CreateDomain][1] to enable [identity resolution][2]\:
|
2024
|
+
# set `Matching` to true.
|
2025
|
+
#
|
2026
|
+
#
|
2027
|
+
#
|
2028
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateDomain.html
|
2029
|
+
# [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
1793
2030
|
#
|
1794
2031
|
# @option params [required, String] :domain_name
|
1795
|
-
# The unique name
|
2032
|
+
# The unique name of the domain.
|
1796
2033
|
#
|
1797
2034
|
# @option params [Integer] :default_expiration_days
|
1798
2035
|
# The default number of days until the data within the domain expires.
|
@@ -1811,6 +2048,17 @@ module Aws::CustomerProfiles
|
|
1811
2048
|
# operation to enable Amazon Connect Customer Profiles to send messages
|
1812
2049
|
# to the DeadLetterQueue.
|
1813
2050
|
#
|
2051
|
+
# @option params [Types::MatchingRequest] :matching
|
2052
|
+
# The process of matching duplicate profiles. If Matching = true, Amazon
|
2053
|
+
# Connect Customer Profiles starts a weekly batch process every Saturday
|
2054
|
+
# at 12AM UTC to detect duplicate profiles in your domains. After that
|
2055
|
+
# batch process completes, use the [GetMatches][1] API to return and
|
2056
|
+
# review the results.
|
2057
|
+
#
|
2058
|
+
#
|
2059
|
+
#
|
2060
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
2061
|
+
#
|
1814
2062
|
# @option params [Hash<String,String>] :tags
|
1815
2063
|
# The tags used to organize, track, or control access for this resource.
|
1816
2064
|
#
|
@@ -1820,6 +2068,7 @@ module Aws::CustomerProfiles
|
|
1820
2068
|
# * {Types::UpdateDomainResponse#default_expiration_days #default_expiration_days} => Integer
|
1821
2069
|
# * {Types::UpdateDomainResponse#default_encryption_key #default_encryption_key} => String
|
1822
2070
|
# * {Types::UpdateDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
|
2071
|
+
# * {Types::UpdateDomainResponse#matching #matching} => Types::MatchingResponse
|
1823
2072
|
# * {Types::UpdateDomainResponse#created_at #created_at} => Time
|
1824
2073
|
# * {Types::UpdateDomainResponse#last_updated_at #last_updated_at} => Time
|
1825
2074
|
# * {Types::UpdateDomainResponse#tags #tags} => Hash<String,String>
|
@@ -1831,6 +2080,9 @@ module Aws::CustomerProfiles
|
|
1831
2080
|
# default_expiration_days: 1,
|
1832
2081
|
# default_encryption_key: "encryptionKey",
|
1833
2082
|
# dead_letter_queue_url: "sqsQueueUrl",
|
2083
|
+
# matching: {
|
2084
|
+
# enabled: false, # required
|
2085
|
+
# },
|
1834
2086
|
# tags: {
|
1835
2087
|
# "TagKey" => "TagValue",
|
1836
2088
|
# },
|
@@ -1842,6 +2094,7 @@ module Aws::CustomerProfiles
|
|
1842
2094
|
# resp.default_expiration_days #=> Integer
|
1843
2095
|
# resp.default_encryption_key #=> String
|
1844
2096
|
# resp.dead_letter_queue_url #=> String
|
2097
|
+
# resp.matching.enabled #=> Boolean
|
1845
2098
|
# resp.created_at #=> Time
|
1846
2099
|
# resp.last_updated_at #=> Time
|
1847
2100
|
# resp.tags #=> Hash
|
@@ -1870,7 +2123,7 @@ module Aws::CustomerProfiles
|
|
1870
2123
|
# The unique identifier of a customer profile.
|
1871
2124
|
#
|
1872
2125
|
# @option params [String] :additional_information
|
1873
|
-
# Any additional information relevant to the customer
|
2126
|
+
# Any additional information relevant to the customer’s profile.
|
1874
2127
|
#
|
1875
2128
|
# @option params [String] :account_number
|
1876
2129
|
# A unique account number that you have given to the customer.
|
@@ -1897,8 +2150,8 @@ module Aws::CustomerProfiles
|
|
1897
2150
|
# The gender with which the customer identifies.
|
1898
2151
|
#
|
1899
2152
|
# @option params [String] :phone_number
|
1900
|
-
# The customer
|
1901
|
-
#
|
2153
|
+
# The customer’s phone number, which has not been specified as a mobile,
|
2154
|
+
# home, or business number.
|
1902
2155
|
#
|
1903
2156
|
# @option params [String] :mobile_phone_number
|
1904
2157
|
# The customer’s mobile phone number.
|
@@ -1910,7 +2163,7 @@ module Aws::CustomerProfiles
|
|
1910
2163
|
# The customer’s business phone number.
|
1911
2164
|
#
|
1912
2165
|
# @option params [String] :email_address
|
1913
|
-
# The customer
|
2166
|
+
# The customer’s email address, which has not been specified as a
|
1914
2167
|
# personal or business address.
|
1915
2168
|
#
|
1916
2169
|
# @option params [String] :personal_email_address
|
@@ -2039,7 +2292,7 @@ module Aws::CustomerProfiles
|
|
2039
2292
|
params: params,
|
2040
2293
|
config: config)
|
2041
2294
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
2042
|
-
context[:gem_version] = '1.
|
2295
|
+
context[:gem_version] = '1.10.0'
|
2043
2296
|
Seahorse::Client::Request.new(handlers, context)
|
2044
2297
|
end
|
2045
2298
|
|