aws-sdk-customerprofiles 1.9.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +56 -10
- data/lib/aws-sdk-customerprofiles/client_api.rb +6 -0
- data/lib/aws-sdk-customerprofiles/types.rb +101 -22
- metadata +2 -2
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,11 @@
|
|
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
|
+
|
4
9
|
1.9.0 (2021-07-30)
|
5
10
|
------------------
|
6
11
|
|
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
|
#
|
@@ -402,8 +410,15 @@ module Aws::CustomerProfiles
|
|
402
410
|
# to the DeadLetterQueue.
|
403
411
|
#
|
404
412
|
# @option params [Types::MatchingRequest] :matching
|
405
|
-
# The process of matching duplicate profiles.
|
406
|
-
#
|
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
|
407
422
|
#
|
408
423
|
# @option params [Hash<String,String>] :tags
|
409
424
|
# The tags used to organize, track, or control access for this resource.
|
@@ -930,7 +945,7 @@ module Aws::CustomerProfiles
|
|
930
945
|
# GetMatches returns potentially matching profiles, based on the results
|
931
946
|
# of the latest run of a machine learning process.
|
932
947
|
#
|
933
|
-
# Amazon Connect
|
948
|
+
# Amazon Connect starts a batch process every Saturday at 12AM UTC to
|
934
949
|
# identify matching profiles. The results are returned up to seven days
|
935
950
|
# after the Saturday run.
|
936
951
|
#
|
@@ -955,6 +970,13 @@ module Aws::CustomerProfiles
|
|
955
970
|
#
|
956
971
|
# * BusinessName
|
957
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
|
+
#
|
958
980
|
#
|
959
981
|
#
|
960
982
|
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateDomain.html
|
@@ -1049,7 +1071,7 @@ module Aws::CustomerProfiles
|
|
1049
1071
|
# resp.keys #=> Hash
|
1050
1072
|
# resp.keys["name"] #=> Array
|
1051
1073
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1052
|
-
# 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"
|
1053
1075
|
# resp.keys["name"][0].field_names #=> Array
|
1054
1076
|
# resp.keys["name"][0].field_names[0] #=> String
|
1055
1077
|
# resp.created_at #=> Time
|
@@ -1105,7 +1127,7 @@ module Aws::CustomerProfiles
|
|
1105
1127
|
# resp.keys #=> Hash
|
1106
1128
|
# resp.keys["name"] #=> Array
|
1107
1129
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1108
|
-
# 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"
|
1109
1131
|
# resp.keys["name"][0].field_names #=> Array
|
1110
1132
|
# resp.keys["name"][0].field_names[0] #=> String
|
1111
1133
|
#
|
@@ -1350,6 +1372,11 @@ module Aws::CustomerProfiles
|
|
1350
1372
|
# @option params [required, String] :profile_id
|
1351
1373
|
# The unique identifier of a customer profile.
|
1352
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
|
+
#
|
1353
1380
|
# @return [Types::ListProfileObjectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1354
1381
|
#
|
1355
1382
|
# * {Types::ListProfileObjectsResponse#items #items} => Array<Types::ListProfileObjectsItem>
|
@@ -1363,6 +1390,10 @@ module Aws::CustomerProfiles
|
|
1363
1390
|
# domain_name: "name", # required
|
1364
1391
|
# object_type_name: "typeName", # required
|
1365
1392
|
# profile_id: "uuid", # required
|
1393
|
+
# object_filter: {
|
1394
|
+
# key_name: "name", # required
|
1395
|
+
# values: ["string1To255"], # required
|
1396
|
+
# },
|
1366
1397
|
# })
|
1367
1398
|
#
|
1368
1399
|
# @example Response structure
|
@@ -1760,7 +1791,7 @@ module Aws::CustomerProfiles
|
|
1760
1791
|
# keys: {
|
1761
1792
|
# "name" => [
|
1762
1793
|
# {
|
1763
|
-
# 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
|
1764
1795
|
# field_names: ["name"],
|
1765
1796
|
# },
|
1766
1797
|
# ],
|
@@ -1785,7 +1816,7 @@ module Aws::CustomerProfiles
|
|
1785
1816
|
# resp.keys #=> Hash
|
1786
1817
|
# resp.keys["name"] #=> Array
|
1787
1818
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
1788
|
-
# 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"
|
1789
1820
|
# resp.keys["name"][0].field_names #=> Array
|
1790
1821
|
# resp.keys["name"][0].field_names[0] #=> String
|
1791
1822
|
# resp.created_at #=> Time
|
@@ -1989,6 +2020,14 @@ module Aws::CustomerProfiles
|
|
1989
2020
|
#
|
1990
2021
|
# After a domain is created, the name can’t be changed.
|
1991
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
|
2030
|
+
#
|
1992
2031
|
# @option params [required, String] :domain_name
|
1993
2032
|
# The unique name of the domain.
|
1994
2033
|
#
|
@@ -2010,8 +2049,15 @@ module Aws::CustomerProfiles
|
|
2010
2049
|
# to the DeadLetterQueue.
|
2011
2050
|
#
|
2012
2051
|
# @option params [Types::MatchingRequest] :matching
|
2013
|
-
# The process of matching duplicate profiles.
|
2014
|
-
#
|
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
|
2015
2061
|
#
|
2016
2062
|
# @option params [Hash<String,String>] :tags
|
2017
2063
|
# The tags used to organize, track, or control access for this resource.
|
@@ -2246,7 +2292,7 @@ module Aws::CustomerProfiles
|
|
2246
2292
|
params: params,
|
2247
2293
|
config: config)
|
2248
2294
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
2249
|
-
context[:gem_version] = '1.
|
2295
|
+
context[:gem_version] = '1.10.0'
|
2250
2296
|
Seahorse::Client::Request.new(handlers, context)
|
2251
2297
|
end
|
2252
2298
|
|
@@ -97,6 +97,7 @@ module Aws::CustomerProfiles
|
|
97
97
|
MergeProfilesRequest = Shapes::StructureShape.new(name: 'MergeProfilesRequest')
|
98
98
|
MergeProfilesResponse = Shapes::StructureShape.new(name: 'MergeProfilesResponse')
|
99
99
|
Object = Shapes::StringShape.new(name: 'Object')
|
100
|
+
ObjectFilter = Shapes::StructureShape.new(name: 'ObjectFilter')
|
100
101
|
ObjectTypeField = Shapes::StructureShape.new(name: 'ObjectTypeField')
|
101
102
|
ObjectTypeKey = Shapes::StructureShape.new(name: 'ObjectTypeKey')
|
102
103
|
ObjectTypeKeyList = Shapes::ListShape.new(name: 'ObjectTypeKeyList')
|
@@ -513,6 +514,7 @@ module Aws::CustomerProfiles
|
|
513
514
|
ListProfileObjectsRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: name, required: true, location: "uri", location_name: "DomainName"))
|
514
515
|
ListProfileObjectsRequest.add_member(:object_type_name, Shapes::ShapeRef.new(shape: typeName, required: true, location_name: "ObjectTypeName"))
|
515
516
|
ListProfileObjectsRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: uuid, required: true, location_name: "ProfileId"))
|
517
|
+
ListProfileObjectsRequest.add_member(:object_filter, Shapes::ShapeRef.new(shape: ObjectFilter, location_name: "ObjectFilter"))
|
516
518
|
ListProfileObjectsRequest.struct_class = Types::ListProfileObjectsRequest
|
517
519
|
|
518
520
|
ListProfileObjectsResponse.add_member(:items, Shapes::ShapeRef.new(shape: ProfileObjectList, location_name: "Items"))
|
@@ -549,6 +551,10 @@ module Aws::CustomerProfiles
|
|
549
551
|
MergeProfilesResponse.add_member(:message, Shapes::ShapeRef.new(shape: message, location_name: "Message"))
|
550
552
|
MergeProfilesResponse.struct_class = Types::MergeProfilesResponse
|
551
553
|
|
554
|
+
ObjectFilter.add_member(:key_name, Shapes::ShapeRef.new(shape: name, required: true, location_name: "KeyName"))
|
555
|
+
ObjectFilter.add_member(:values, Shapes::ShapeRef.new(shape: requestValueList, required: true, location_name: "Values"))
|
556
|
+
ObjectFilter.struct_class = Types::ObjectFilter
|
557
|
+
|
552
558
|
ObjectTypeField.add_member(:source, Shapes::ShapeRef.new(shape: text, location_name: "Source"))
|
553
559
|
ObjectTypeField.add_member(:target, Shapes::ShapeRef.new(shape: text, location_name: "Target"))
|
554
560
|
ObjectTypeField.add_member(:content_type, Shapes::ShapeRef.new(shape: FieldContentType, location_name: "ContentType"))
|
@@ -254,8 +254,15 @@ module Aws::CustomerProfiles
|
|
254
254
|
# @return [String]
|
255
255
|
#
|
256
256
|
# @!attribute [rw] matching
|
257
|
-
# The process of matching duplicate profiles.
|
258
|
-
#
|
257
|
+
# The process of matching duplicate profiles. If Matching = true,
|
258
|
+
# Amazon Connect Customer Profiles starts a weekly batch process every
|
259
|
+
# Saturday at 12AM UTC to detect duplicate profiles in your domains.
|
260
|
+
# After that batch process completes, use the [GetMatches][1] API to
|
261
|
+
# return and review the results.
|
262
|
+
#
|
263
|
+
#
|
264
|
+
#
|
265
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
259
266
|
# @return [Types::MatchingRequest]
|
260
267
|
#
|
261
268
|
# @!attribute [rw] tags
|
@@ -297,8 +304,15 @@ module Aws::CustomerProfiles
|
|
297
304
|
# @return [String]
|
298
305
|
#
|
299
306
|
# @!attribute [rw] matching
|
300
|
-
# The process of matching duplicate profiles.
|
301
|
-
#
|
307
|
+
# The process of matching duplicate profiles. If Matching = true,
|
308
|
+
# Amazon Connect Customer Profiles starts a weekly batch process every
|
309
|
+
# Saturday at 12AM UTC to detect duplicate profiles in your domains.
|
310
|
+
# After that batch process completes, use the [GetMatches][1] API to
|
311
|
+
# return and review the results.
|
312
|
+
#
|
313
|
+
#
|
314
|
+
#
|
315
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
302
316
|
# @return [Types::MatchingResponse]
|
303
317
|
#
|
304
318
|
# @!attribute [rw] created_at
|
@@ -1110,8 +1124,15 @@ module Aws::CustomerProfiles
|
|
1110
1124
|
# @return [Types::DomainStats]
|
1111
1125
|
#
|
1112
1126
|
# @!attribute [rw] matching
|
1113
|
-
# The process of matching duplicate profiles.
|
1114
|
-
#
|
1127
|
+
# The process of matching duplicate profiles. If Matching = true,
|
1128
|
+
# Amazon Connect Customer Profiles starts a weekly batch process every
|
1129
|
+
# Saturday at 12AM UTC to detect duplicate profiles in your domains.
|
1130
|
+
# After that batch process completes, use the [GetMatches][1] API to
|
1131
|
+
# return and review the results.
|
1132
|
+
#
|
1133
|
+
#
|
1134
|
+
#
|
1135
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
1115
1136
|
# @return [Types::MatchingResponse]
|
1116
1137
|
#
|
1117
1138
|
# @!attribute [rw] created_at
|
@@ -1853,6 +1874,10 @@ module Aws::CustomerProfiles
|
|
1853
1874
|
# domain_name: "name", # required
|
1854
1875
|
# object_type_name: "typeName", # required
|
1855
1876
|
# profile_id: "uuid", # required
|
1877
|
+
# object_filter: {
|
1878
|
+
# key_name: "name", # required
|
1879
|
+
# values: ["string1To255"], # required
|
1880
|
+
# },
|
1856
1881
|
# }
|
1857
1882
|
#
|
1858
1883
|
# @!attribute [rw] next_token
|
@@ -1875,6 +1900,12 @@ module Aws::CustomerProfiles
|
|
1875
1900
|
# The unique identifier of a customer profile.
|
1876
1901
|
# @return [String]
|
1877
1902
|
#
|
1903
|
+
# @!attribute [rw] object_filter
|
1904
|
+
# Applies a filter to the response to include profile objects with the
|
1905
|
+
# specified index values. This filter is only supported for
|
1906
|
+
# ObjectTypeName \_asset and \_case.
|
1907
|
+
# @return [Types::ObjectFilter]
|
1908
|
+
#
|
1878
1909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListProfileObjectsRequest AWS API Documentation
|
1879
1910
|
#
|
1880
1911
|
class ListProfileObjectsRequest < Struct.new(
|
@@ -1882,7 +1913,8 @@ module Aws::CustomerProfiles
|
|
1882
1913
|
:max_results,
|
1883
1914
|
:domain_name,
|
1884
1915
|
:object_type_name,
|
1885
|
-
:profile_id
|
1916
|
+
:profile_id,
|
1917
|
+
:object_filter)
|
1886
1918
|
SENSITIVE = []
|
1887
1919
|
include Aws::Structure
|
1888
1920
|
end
|
@@ -2088,6 +2120,38 @@ module Aws::CustomerProfiles
|
|
2088
2120
|
include Aws::Structure
|
2089
2121
|
end
|
2090
2122
|
|
2123
|
+
# The filter applied to ListProfileObjects response to include profile
|
2124
|
+
# objects with the specified index values. This filter is only supported
|
2125
|
+
# for ObjectTypeName \_asset and \_case.
|
2126
|
+
#
|
2127
|
+
# @note When making an API call, you may pass ObjectFilter
|
2128
|
+
# data as a hash:
|
2129
|
+
#
|
2130
|
+
# {
|
2131
|
+
# key_name: "name", # required
|
2132
|
+
# values: ["string1To255"], # required
|
2133
|
+
# }
|
2134
|
+
#
|
2135
|
+
# @!attribute [rw] key_name
|
2136
|
+
# A searchable identifier of a standard profile object. The predefined
|
2137
|
+
# keys you can use to search for \_asset include: \_assetId,
|
2138
|
+
# \_assetName, \_serialNumber. The predefined keys you can use to
|
2139
|
+
# search for \_case include: \_caseId.
|
2140
|
+
# @return [String]
|
2141
|
+
#
|
2142
|
+
# @!attribute [rw] values
|
2143
|
+
# A list of key values.
|
2144
|
+
# @return [Array<String>]
|
2145
|
+
#
|
2146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ObjectFilter AWS API Documentation
|
2147
|
+
#
|
2148
|
+
class ObjectFilter < Struct.new(
|
2149
|
+
:key_name,
|
2150
|
+
:values)
|
2151
|
+
SENSITIVE = []
|
2152
|
+
include Aws::Structure
|
2153
|
+
end
|
2154
|
+
|
2091
2155
|
# Represents a field in a ProfileObjectType.
|
2092
2156
|
#
|
2093
2157
|
# @note When making an API call, you may pass ObjectTypeField
|
@@ -2132,21 +2196,22 @@ module Aws::CustomerProfiles
|
|
2132
2196
|
# data as a hash:
|
2133
2197
|
#
|
2134
2198
|
# {
|
2135
|
-
# standard_identifiers: ["PROFILE"], # accepts PROFILE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
2199
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
2136
2200
|
# field_names: ["name"],
|
2137
2201
|
# }
|
2138
2202
|
#
|
2139
2203
|
# @!attribute [rw] standard_identifiers
|
2140
2204
|
# The types of keys that a ProfileObject can have. Each ProfileObject
|
2141
|
-
# can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE
|
2142
|
-
# that this key can be used to tie an object to a
|
2143
|
-
#
|
2144
|
-
#
|
2145
|
-
#
|
2146
|
-
#
|
2147
|
-
#
|
2148
|
-
# profile
|
2149
|
-
#
|
2205
|
+
# can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE, ASSET
|
2206
|
+
# or CASE means that this key can be used to tie an object to a
|
2207
|
+
# PROFILE, ASSET or CASE respectively. UNIQUE means that it can be
|
2208
|
+
# used to uniquely identify an object. If a key a is marked as
|
2209
|
+
# SECONDARY, it will be used to search for profiles after all other
|
2210
|
+
# PROFILE keys have been searched. A LOOKUP\_ONLY key is only used to
|
2211
|
+
# match a profile but is not persisted to be used for searching of the
|
2212
|
+
# profile. A NEW\_ONLY key is only used if the profile does not
|
2213
|
+
# already exist before the object is ingested, otherwise it is only
|
2214
|
+
# used for matching objects to profiles.
|
2150
2215
|
# @return [Array<String>]
|
2151
2216
|
#
|
2152
2217
|
# @!attribute [rw] field_names
|
@@ -2496,7 +2561,7 @@ module Aws::CustomerProfiles
|
|
2496
2561
|
# keys: {
|
2497
2562
|
# "name" => [
|
2498
2563
|
# {
|
2499
|
-
# standard_identifiers: ["PROFILE"], # accepts PROFILE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
2564
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
|
2500
2565
|
# field_names: ["name"],
|
2501
2566
|
# },
|
2502
2567
|
# ],
|
@@ -3317,8 +3382,15 @@ module Aws::CustomerProfiles
|
|
3317
3382
|
# @return [String]
|
3318
3383
|
#
|
3319
3384
|
# @!attribute [rw] matching
|
3320
|
-
# The process of matching duplicate profiles.
|
3321
|
-
#
|
3385
|
+
# The process of matching duplicate profiles. If Matching = true,
|
3386
|
+
# Amazon Connect Customer Profiles starts a weekly batch process every
|
3387
|
+
# Saturday at 12AM UTC to detect duplicate profiles in your domains.
|
3388
|
+
# After that batch process completes, use the [GetMatches][1] API to
|
3389
|
+
# return and review the results.
|
3390
|
+
#
|
3391
|
+
#
|
3392
|
+
#
|
3393
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
3322
3394
|
# @return [Types::MatchingRequest]
|
3323
3395
|
#
|
3324
3396
|
# @!attribute [rw] tags
|
@@ -3360,8 +3432,15 @@ module Aws::CustomerProfiles
|
|
3360
3432
|
# @return [String]
|
3361
3433
|
#
|
3362
3434
|
# @!attribute [rw] matching
|
3363
|
-
# The process of matching duplicate profiles.
|
3364
|
-
#
|
3435
|
+
# The process of matching duplicate profiles. If Matching = true,
|
3436
|
+
# Amazon Connect Customer Profiles starts a weekly batch process every
|
3437
|
+
# Saturday at 12AM UTC to detect duplicate profiles in your domains.
|
3438
|
+
# After that batch process completes, use the [GetMatches][1] API to
|
3439
|
+
# return and review the results.
|
3440
|
+
#
|
3441
|
+
#
|
3442
|
+
#
|
3443
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
3365
3444
|
# @return [Types::MatchingResponse]
|
3366
3445
|
#
|
3367
3446
|
# @!attribute [rw] created_at
|
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.
|
4
|
+
version: 1.10.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: 2021-
|
11
|
+
date: 2021-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|