aws-sdk-customerprofiles 1.4.0 → 1.8.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 +288 -14
- data/lib/aws-sdk-customerprofiles/client_api.rb +229 -1
- data/lib/aws-sdk-customerprofiles/types.rb +1091 -13
- metadata +7 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db8dea5ec37ce168bd0de77042d8d201b9d277aea2ece08b8f09ce5a22b47e6f
|
4
|
+
data.tar.gz: 7600a66ad8a0c694acf934814316cf2c460d68e942f294e28e24d57d0110b3ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2f1d8b9536a429e00a3ab02b5572a9c327af3130a250ab07b3e4cb3b0af59f5712fb28bac0bbcc63388c166dc1e27fade6a507908a3f49ce8498d4f6f88c5c8
|
7
|
+
data.tar.gz: cfee1364dbd400490bfe018eea2dbedddcd633a7ac17329036bf1a78985ef6758e1ae0bbd6a0c461fb43afff582e8aa857a1f3cdd4132a7ab729e46cd3540fbc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.8.0 (2021-07-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.7.0 (2021-04-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces GetMatches and MergeProfiles APIs to fetch and merge duplicate profiles
|
13
|
+
|
14
|
+
1.6.0 (2021-04-08)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for Put-Integration API
|
18
|
+
|
19
|
+
1.5.0 (2021-03-26)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - This release adds an optional parameter named FlowDefinition in PutIntegrationRequest.
|
23
|
+
|
4
24
|
1.4.0 (2021-03-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -401,6 +401,10 @@ module Aws::CustomerProfiles
|
|
401
401
|
# operation to enable Amazon Connect Customer Profiles to send messages
|
402
402
|
# to the DeadLetterQueue.
|
403
403
|
#
|
404
|
+
# @option params [Types::MatchingRequest] :matching
|
405
|
+
# The process of matching duplicate profiles. This process runs every
|
406
|
+
# Saturday at 12AM.
|
407
|
+
#
|
404
408
|
# @option params [Hash<String,String>] :tags
|
405
409
|
# The tags used to organize, track, or control access for this resource.
|
406
410
|
#
|
@@ -410,6 +414,7 @@ module Aws::CustomerProfiles
|
|
410
414
|
# * {Types::CreateDomainResponse#default_expiration_days #default_expiration_days} => Integer
|
411
415
|
# * {Types::CreateDomainResponse#default_encryption_key #default_encryption_key} => String
|
412
416
|
# * {Types::CreateDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
|
417
|
+
# * {Types::CreateDomainResponse#matching #matching} => Types::MatchingResponse
|
413
418
|
# * {Types::CreateDomainResponse#created_at #created_at} => Time
|
414
419
|
# * {Types::CreateDomainResponse#last_updated_at #last_updated_at} => Time
|
415
420
|
# * {Types::CreateDomainResponse#tags #tags} => Hash<String,String>
|
@@ -421,6 +426,9 @@ module Aws::CustomerProfiles
|
|
421
426
|
# default_expiration_days: 1, # required
|
422
427
|
# default_encryption_key: "encryptionKey",
|
423
428
|
# dead_letter_queue_url: "sqsQueueUrl",
|
429
|
+
# matching: {
|
430
|
+
# enabled: false, # required
|
431
|
+
# },
|
424
432
|
# tags: {
|
425
433
|
# "TagKey" => "TagValue",
|
426
434
|
# },
|
@@ -432,6 +440,7 @@ module Aws::CustomerProfiles
|
|
432
440
|
# resp.default_expiration_days #=> Integer
|
433
441
|
# resp.default_encryption_key #=> String
|
434
442
|
# resp.dead_letter_queue_url #=> String
|
443
|
+
# resp.matching.enabled #=> Boolean
|
435
444
|
# resp.created_at #=> Time
|
436
445
|
# resp.last_updated_at #=> Time
|
437
446
|
# resp.tags #=> Hash
|
@@ -458,7 +467,7 @@ module Aws::CustomerProfiles
|
|
458
467
|
# A unique account number that you have given to the customer.
|
459
468
|
#
|
460
469
|
# @option params [String] :additional_information
|
461
|
-
# Any additional information relevant to the customer
|
470
|
+
# Any additional information relevant to the customer’s profile.
|
462
471
|
#
|
463
472
|
# @option params [String] :party_type
|
464
473
|
# The type of profile used to describe the customer.
|
@@ -482,8 +491,8 @@ module Aws::CustomerProfiles
|
|
482
491
|
# The gender with which the customer identifies.
|
483
492
|
#
|
484
493
|
# @option params [String] :phone_number
|
485
|
-
# The customer
|
486
|
-
#
|
494
|
+
# The customer’s phone number, which has not been specified as a mobile,
|
495
|
+
# home, or business number.
|
487
496
|
#
|
488
497
|
# @option params [String] :mobile_phone_number
|
489
498
|
# The customer’s mobile phone number.
|
@@ -495,7 +504,7 @@ module Aws::CustomerProfiles
|
|
495
504
|
# The customer’s business phone number.
|
496
505
|
#
|
497
506
|
# @option params [String] :email_address
|
498
|
-
# The customer
|
507
|
+
# The customer’s email address, which has not been specified as a
|
499
508
|
# personal or business address.
|
500
509
|
#
|
501
510
|
# @option params [String] :personal_email_address
|
@@ -824,7 +833,7 @@ module Aws::CustomerProfiles
|
|
824
833
|
# Returns information about a specific domain.
|
825
834
|
#
|
826
835
|
# @option params [required, String] :domain_name
|
827
|
-
#
|
836
|
+
# The unique name of the domain.
|
828
837
|
#
|
829
838
|
# @return [Types::GetDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
830
839
|
#
|
@@ -833,6 +842,7 @@ module Aws::CustomerProfiles
|
|
833
842
|
# * {Types::GetDomainResponse#default_encryption_key #default_encryption_key} => String
|
834
843
|
# * {Types::GetDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
|
835
844
|
# * {Types::GetDomainResponse#stats #stats} => Types::DomainStats
|
845
|
+
# * {Types::GetDomainResponse#matching #matching} => Types::MatchingResponse
|
836
846
|
# * {Types::GetDomainResponse#created_at #created_at} => Time
|
837
847
|
# * {Types::GetDomainResponse#last_updated_at #last_updated_at} => Time
|
838
848
|
# * {Types::GetDomainResponse#tags #tags} => Hash<String,String>
|
@@ -853,6 +863,7 @@ module Aws::CustomerProfiles
|
|
853
863
|
# resp.stats.metering_profile_count #=> Integer
|
854
864
|
# resp.stats.object_count #=> Integer
|
855
865
|
# resp.stats.total_size #=> Integer
|
866
|
+
# resp.matching.enabled #=> Boolean
|
856
867
|
# resp.created_at #=> Time
|
857
868
|
# resp.last_updated_at #=> Time
|
858
869
|
# resp.tags #=> Hash
|
@@ -910,6 +921,90 @@ module Aws::CustomerProfiles
|
|
910
921
|
req.send_request(options)
|
911
922
|
end
|
912
923
|
|
924
|
+
# This API is in preview release for Amazon Connect and subject to
|
925
|
+
# change.
|
926
|
+
#
|
927
|
+
# Before calling this API, use [CreateDomain][1] or [UpdateDomain][2] to
|
928
|
+
# enable identity resolution: set `Matching` to true.
|
929
|
+
#
|
930
|
+
# GetMatches returns potentially matching profiles, based on the results
|
931
|
+
# of the latest run of a machine learning process.
|
932
|
+
#
|
933
|
+
# Amazon Connect runs a batch process every Saturday at 12AM UTC to
|
934
|
+
# identify matching profiles. The results are returned up to seven days
|
935
|
+
# after the Saturday run.
|
936
|
+
#
|
937
|
+
# Amazon Connect uses the following profile attributes to identify
|
938
|
+
# matches:
|
939
|
+
#
|
940
|
+
# * PhoneNumber
|
941
|
+
#
|
942
|
+
# * HomePhoneNumber
|
943
|
+
#
|
944
|
+
# * BusinessPhoneNumber
|
945
|
+
#
|
946
|
+
# * MobilePhoneNumber
|
947
|
+
#
|
948
|
+
# * EmailAddress
|
949
|
+
#
|
950
|
+
# * PersonalEmailAddress
|
951
|
+
#
|
952
|
+
# * BusinessEmailAddress
|
953
|
+
#
|
954
|
+
# * FullName
|
955
|
+
#
|
956
|
+
# * BusinessName
|
957
|
+
#
|
958
|
+
#
|
959
|
+
#
|
960
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_CreateDomain.html
|
961
|
+
# [2]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_UpdateDomain.html
|
962
|
+
#
|
963
|
+
# @option params [String] :next_token
|
964
|
+
# The token for the next set of results. Use the value returned in the
|
965
|
+
# previous response in the next request to retrieve the next set of
|
966
|
+
# results.
|
967
|
+
#
|
968
|
+
# @option params [Integer] :max_results
|
969
|
+
# The maximum number of results to return per page.
|
970
|
+
#
|
971
|
+
# @option params [required, String] :domain_name
|
972
|
+
# The unique name of the domain.
|
973
|
+
#
|
974
|
+
# @return [Types::GetMatchesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
975
|
+
#
|
976
|
+
# * {Types::GetMatchesResponse#next_token #next_token} => String
|
977
|
+
# * {Types::GetMatchesResponse#match_generation_date #match_generation_date} => Time
|
978
|
+
# * {Types::GetMatchesResponse#potential_matches #potential_matches} => Integer
|
979
|
+
# * {Types::GetMatchesResponse#matches #matches} => Array<Types::MatchItem>
|
980
|
+
#
|
981
|
+
# @example Request syntax with placeholder values
|
982
|
+
#
|
983
|
+
# resp = client.get_matches({
|
984
|
+
# next_token: "token",
|
985
|
+
# max_results: 1,
|
986
|
+
# domain_name: "name", # required
|
987
|
+
# })
|
988
|
+
#
|
989
|
+
# @example Response structure
|
990
|
+
#
|
991
|
+
# resp.next_token #=> String
|
992
|
+
# resp.match_generation_date #=> Time
|
993
|
+
# resp.potential_matches #=> Integer
|
994
|
+
# resp.matches #=> Array
|
995
|
+
# resp.matches[0].match_id #=> String
|
996
|
+
# resp.matches[0].profile_ids #=> Array
|
997
|
+
# resp.matches[0].profile_ids[0] #=> String
|
998
|
+
#
|
999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetMatches AWS API Documentation
|
1000
|
+
#
|
1001
|
+
# @overload get_matches(params = {})
|
1002
|
+
# @param [Hash] params ({})
|
1003
|
+
def get_matches(params = {}, options = {})
|
1004
|
+
req = build_request(:get_matches, params)
|
1005
|
+
req.send_request(options)
|
1006
|
+
end
|
1007
|
+
|
913
1008
|
# Returns the object types for a specific domain.
|
914
1009
|
#
|
915
1010
|
# @option params [required, String] :domain_name
|
@@ -1318,6 +1413,109 @@ module Aws::CustomerProfiles
|
|
1318
1413
|
req.send_request(options)
|
1319
1414
|
end
|
1320
1415
|
|
1416
|
+
# This API is in preview release for Amazon Connect and subject to
|
1417
|
+
# change.
|
1418
|
+
#
|
1419
|
+
# Runs an AWS Lambda job that does the following:
|
1420
|
+
#
|
1421
|
+
# 1. All the profileKeys in the `ProfileToBeMerged` will be moved to
|
1422
|
+
# the main profile.
|
1423
|
+
#
|
1424
|
+
# 2. All the objects in the `ProfileToBeMerged` will be moved to the
|
1425
|
+
# main profile.
|
1426
|
+
#
|
1427
|
+
# 3. All the `ProfileToBeMerged` will be deleted at the end.
|
1428
|
+
#
|
1429
|
+
# 4. All the profileKeys in the `ProfileIdsToBeMerged` will be moved to
|
1430
|
+
# the main profile.
|
1431
|
+
#
|
1432
|
+
# 5. Standard fields are merged as follows:
|
1433
|
+
#
|
1434
|
+
# 1. Fields are always "union"-ed if there are no conflicts in
|
1435
|
+
# standard fields or attributeKeys.
|
1436
|
+
#
|
1437
|
+
# 2. When there are conflicting fields:
|
1438
|
+
#
|
1439
|
+
# 1. If no `SourceProfileIds` entry is specified, the main
|
1440
|
+
# Profile value is always taken.
|
1441
|
+
#
|
1442
|
+
# 2. If a `SourceProfileIds` entry is specified, the specified
|
1443
|
+
# profileId is always taken, even if it is a NULL value.
|
1444
|
+
#
|
1445
|
+
# You can use MergeProfiles together with [GetMatches][1], which returns
|
1446
|
+
# potentially matching profiles, or use it with the results of another
|
1447
|
+
# matching system. After profiles have been merged, they cannot be
|
1448
|
+
# separated (unmerged).
|
1449
|
+
#
|
1450
|
+
#
|
1451
|
+
#
|
1452
|
+
# [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
|
1453
|
+
#
|
1454
|
+
# @option params [required, String] :domain_name
|
1455
|
+
# The unique name of the domain.
|
1456
|
+
#
|
1457
|
+
# @option params [required, String] :main_profile_id
|
1458
|
+
# The identifier of the profile to be taken.
|
1459
|
+
#
|
1460
|
+
# @option params [required, Array<String>] :profile_ids_to_be_merged
|
1461
|
+
# The identifier of the profile to be merged into MainProfileId.
|
1462
|
+
#
|
1463
|
+
# @option params [Types::FieldSourceProfileIds] :field_source_profile_ids
|
1464
|
+
# The identifiers of the fields in the profile that has the information
|
1465
|
+
# you want to apply to the merge. For example, say you want to merge
|
1466
|
+
# EmailAddress from Profile1 into MainProfile. This would be the
|
1467
|
+
# identifier of the EmailAddress field in Profile1.
|
1468
|
+
#
|
1469
|
+
# @return [Types::MergeProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1470
|
+
#
|
1471
|
+
# * {Types::MergeProfilesResponse#message #message} => String
|
1472
|
+
#
|
1473
|
+
# @example Request syntax with placeholder values
|
1474
|
+
#
|
1475
|
+
# resp = client.merge_profiles({
|
1476
|
+
# domain_name: "name", # required
|
1477
|
+
# main_profile_id: "uuid", # required
|
1478
|
+
# profile_ids_to_be_merged: ["uuid"], # required
|
1479
|
+
# field_source_profile_ids: {
|
1480
|
+
# account_number: "uuid",
|
1481
|
+
# additional_information: "uuid",
|
1482
|
+
# party_type: "uuid",
|
1483
|
+
# business_name: "uuid",
|
1484
|
+
# first_name: "uuid",
|
1485
|
+
# middle_name: "uuid",
|
1486
|
+
# last_name: "uuid",
|
1487
|
+
# birth_date: "uuid",
|
1488
|
+
# gender: "uuid",
|
1489
|
+
# phone_number: "uuid",
|
1490
|
+
# mobile_phone_number: "uuid",
|
1491
|
+
# home_phone_number: "uuid",
|
1492
|
+
# business_phone_number: "uuid",
|
1493
|
+
# email_address: "uuid",
|
1494
|
+
# personal_email_address: "uuid",
|
1495
|
+
# business_email_address: "uuid",
|
1496
|
+
# address: "uuid",
|
1497
|
+
# shipping_address: "uuid",
|
1498
|
+
# mailing_address: "uuid",
|
1499
|
+
# billing_address: "uuid",
|
1500
|
+
# attributes: {
|
1501
|
+
# "string1To255" => "uuid",
|
1502
|
+
# },
|
1503
|
+
# },
|
1504
|
+
# })
|
1505
|
+
#
|
1506
|
+
# @example Response structure
|
1507
|
+
#
|
1508
|
+
# resp.message #=> String
|
1509
|
+
#
|
1510
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/MergeProfiles AWS API Documentation
|
1511
|
+
#
|
1512
|
+
# @overload merge_profiles(params = {})
|
1513
|
+
# @param [Hash] params ({})
|
1514
|
+
def merge_profiles(params = {}, options = {})
|
1515
|
+
req = build_request(:merge_profiles, params)
|
1516
|
+
req.send_request(options)
|
1517
|
+
end
|
1518
|
+
|
1321
1519
|
# Adds an integration between the service and a third-party service,
|
1322
1520
|
# which includes Amazon AppFlow and Amazon Connect.
|
1323
1521
|
#
|
@@ -1326,7 +1524,7 @@ module Aws::CustomerProfiles
|
|
1326
1524
|
# @option params [required, String] :domain_name
|
1327
1525
|
# The unique name of the domain.
|
1328
1526
|
#
|
1329
|
-
# @option params [
|
1527
|
+
# @option params [String] :uri
|
1330
1528
|
# The URI of the S3 bucket or any other type of data source.
|
1331
1529
|
#
|
1332
1530
|
# @option params [required, String] :object_type_name
|
@@ -1335,6 +1533,10 @@ module Aws::CustomerProfiles
|
|
1335
1533
|
# @option params [Hash<String,String>] :tags
|
1336
1534
|
# The tags used to organize, track, or control access for this resource.
|
1337
1535
|
#
|
1536
|
+
# @option params [Types::FlowDefinition] :flow_definition
|
1537
|
+
# The configuration that controls how Customer Profiles retrieves data
|
1538
|
+
# from the source.
|
1539
|
+
#
|
1338
1540
|
# @return [Types::PutIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1339
1541
|
#
|
1340
1542
|
# * {Types::PutIntegrationResponse#domain_name #domain_name} => String
|
@@ -1348,11 +1550,74 @@ module Aws::CustomerProfiles
|
|
1348
1550
|
#
|
1349
1551
|
# resp = client.put_integration({
|
1350
1552
|
# domain_name: "name", # required
|
1351
|
-
# uri: "string1To255",
|
1553
|
+
# uri: "string1To255",
|
1352
1554
|
# object_type_name: "typeName", # required
|
1353
1555
|
# tags: {
|
1354
1556
|
# "TagKey" => "TagValue",
|
1355
1557
|
# },
|
1558
|
+
# flow_definition: {
|
1559
|
+
# description: "FlowDescription",
|
1560
|
+
# flow_name: "FlowName", # required
|
1561
|
+
# kms_arn: "KmsArn", # required
|
1562
|
+
# source_flow_config: { # required
|
1563
|
+
# connector_profile_name: "ConnectorProfileName",
|
1564
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Marketo, Zendesk, Servicenow, S3
|
1565
|
+
# incremental_pull_config: {
|
1566
|
+
# datetime_type_field_name: "DatetimeTypeFieldName",
|
1567
|
+
# },
|
1568
|
+
# source_connector_properties: { # required
|
1569
|
+
# marketo: {
|
1570
|
+
# object: "Object", # required
|
1571
|
+
# },
|
1572
|
+
# s3: {
|
1573
|
+
# bucket_name: "BucketName", # required
|
1574
|
+
# bucket_prefix: "BucketPrefix",
|
1575
|
+
# },
|
1576
|
+
# salesforce: {
|
1577
|
+
# object: "Object", # required
|
1578
|
+
# enable_dynamic_field_update: false,
|
1579
|
+
# include_deleted_records: false,
|
1580
|
+
# },
|
1581
|
+
# service_now: {
|
1582
|
+
# object: "Object", # required
|
1583
|
+
# },
|
1584
|
+
# zendesk: {
|
1585
|
+
# object: "Object", # required
|
1586
|
+
# },
|
1587
|
+
# },
|
1588
|
+
# },
|
1589
|
+
# tasks: [ # required
|
1590
|
+
# {
|
1591
|
+
# connector_operator: {
|
1592
|
+
# marketo: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1593
|
+
# s3: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1594
|
+
# salesforce: "PROJECTION", # accepts PROJECTION, LESS_THAN, CONTAINS, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1595
|
+
# service_now: "PROJECTION", # accepts PROJECTION, CONTAINS, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1596
|
+
# zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
1597
|
+
# },
|
1598
|
+
# destination_field: "DestinationField",
|
1599
|
+
# source_fields: ["stringTo2048"], # required
|
1600
|
+
# task_properties: {
|
1601
|
+
# "VALUE" => "Property",
|
1602
|
+
# },
|
1603
|
+
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
|
1604
|
+
# },
|
1605
|
+
# ],
|
1606
|
+
# trigger_config: { # required
|
1607
|
+
# trigger_type: "Scheduled", # required, accepts Scheduled, Event, OnDemand
|
1608
|
+
# trigger_properties: {
|
1609
|
+
# scheduled: {
|
1610
|
+
# schedule_expression: "ScheduleExpression", # required
|
1611
|
+
# data_pull_mode: "Incremental", # accepts Incremental, Complete
|
1612
|
+
# schedule_start_time: Time.now,
|
1613
|
+
# schedule_end_time: Time.now,
|
1614
|
+
# timezone: "Timezone",
|
1615
|
+
# schedule_offset: 1,
|
1616
|
+
# first_execution_from: Time.now,
|
1617
|
+
# },
|
1618
|
+
# },
|
1619
|
+
# },
|
1620
|
+
# },
|
1356
1621
|
# })
|
1357
1622
|
#
|
1358
1623
|
# @example Response structure
|
@@ -1722,10 +1987,10 @@ module Aws::CustomerProfiles
|
|
1722
1987
|
# Updates the properties of a domain, including creating or selecting a
|
1723
1988
|
# dead letter queue or an encryption key.
|
1724
1989
|
#
|
1725
|
-
#
|
1990
|
+
# After a domain is created, the name can’t be changed.
|
1726
1991
|
#
|
1727
1992
|
# @option params [required, String] :domain_name
|
1728
|
-
# The unique name
|
1993
|
+
# The unique name of the domain.
|
1729
1994
|
#
|
1730
1995
|
# @option params [Integer] :default_expiration_days
|
1731
1996
|
# The default number of days until the data within the domain expires.
|
@@ -1744,6 +2009,10 @@ module Aws::CustomerProfiles
|
|
1744
2009
|
# operation to enable Amazon Connect Customer Profiles to send messages
|
1745
2010
|
# to the DeadLetterQueue.
|
1746
2011
|
#
|
2012
|
+
# @option params [Types::MatchingRequest] :matching
|
2013
|
+
# The process of matching duplicate profiles. This process runs every
|
2014
|
+
# Saturday at 12AM.
|
2015
|
+
#
|
1747
2016
|
# @option params [Hash<String,String>] :tags
|
1748
2017
|
# The tags used to organize, track, or control access for this resource.
|
1749
2018
|
#
|
@@ -1753,6 +2022,7 @@ module Aws::CustomerProfiles
|
|
1753
2022
|
# * {Types::UpdateDomainResponse#default_expiration_days #default_expiration_days} => Integer
|
1754
2023
|
# * {Types::UpdateDomainResponse#default_encryption_key #default_encryption_key} => String
|
1755
2024
|
# * {Types::UpdateDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
|
2025
|
+
# * {Types::UpdateDomainResponse#matching #matching} => Types::MatchingResponse
|
1756
2026
|
# * {Types::UpdateDomainResponse#created_at #created_at} => Time
|
1757
2027
|
# * {Types::UpdateDomainResponse#last_updated_at #last_updated_at} => Time
|
1758
2028
|
# * {Types::UpdateDomainResponse#tags #tags} => Hash<String,String>
|
@@ -1764,6 +2034,9 @@ module Aws::CustomerProfiles
|
|
1764
2034
|
# default_expiration_days: 1,
|
1765
2035
|
# default_encryption_key: "encryptionKey",
|
1766
2036
|
# dead_letter_queue_url: "sqsQueueUrl",
|
2037
|
+
# matching: {
|
2038
|
+
# enabled: false, # required
|
2039
|
+
# },
|
1767
2040
|
# tags: {
|
1768
2041
|
# "TagKey" => "TagValue",
|
1769
2042
|
# },
|
@@ -1775,6 +2048,7 @@ module Aws::CustomerProfiles
|
|
1775
2048
|
# resp.default_expiration_days #=> Integer
|
1776
2049
|
# resp.default_encryption_key #=> String
|
1777
2050
|
# resp.dead_letter_queue_url #=> String
|
2051
|
+
# resp.matching.enabled #=> Boolean
|
1778
2052
|
# resp.created_at #=> Time
|
1779
2053
|
# resp.last_updated_at #=> Time
|
1780
2054
|
# resp.tags #=> Hash
|
@@ -1803,7 +2077,7 @@ module Aws::CustomerProfiles
|
|
1803
2077
|
# The unique identifier of a customer profile.
|
1804
2078
|
#
|
1805
2079
|
# @option params [String] :additional_information
|
1806
|
-
# Any additional information relevant to the customer
|
2080
|
+
# Any additional information relevant to the customer’s profile.
|
1807
2081
|
#
|
1808
2082
|
# @option params [String] :account_number
|
1809
2083
|
# A unique account number that you have given to the customer.
|
@@ -1830,8 +2104,8 @@ module Aws::CustomerProfiles
|
|
1830
2104
|
# The gender with which the customer identifies.
|
1831
2105
|
#
|
1832
2106
|
# @option params [String] :phone_number
|
1833
|
-
# The customer
|
1834
|
-
#
|
2107
|
+
# The customer’s phone number, which has not been specified as a mobile,
|
2108
|
+
# home, or business number.
|
1835
2109
|
#
|
1836
2110
|
# @option params [String] :mobile_phone_number
|
1837
2111
|
# The customer’s mobile phone number.
|
@@ -1843,7 +2117,7 @@ module Aws::CustomerProfiles
|
|
1843
2117
|
# The customer’s business phone number.
|
1844
2118
|
#
|
1845
2119
|
# @option params [String] :email_address
|
1846
|
-
# The customer
|
2120
|
+
# The customer’s email address, which has not been specified as a
|
1847
2121
|
# personal or business address.
|
1848
2122
|
#
|
1849
2123
|
# @option params [String] :personal_email_address
|
@@ -1972,7 +2246,7 @@ module Aws::CustomerProfiles
|
|
1972
2246
|
params: params,
|
1973
2247
|
config: config)
|
1974
2248
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
1975
|
-
context[:gem_version] = '1.
|
2249
|
+
context[:gem_version] = '1.8.0'
|
1976
2250
|
Seahorse::Client::Request.new(handlers, context)
|
1977
2251
|
end
|
1978
2252
|
|