aws-sdk-customerprofiles 1.34.0 → 1.36.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: b9feca08f2fee542d7df1d1b6d42ec6ba17cd821b0164d1adbbf53799e989aa4
4
- data.tar.gz: 8879c8150a2f143c8966750661f7249b11b5aa88f4122b80cf8b9c4714b5941c
3
+ metadata.gz: b2397b7f2d45e6342f64f023dce128e73505e507234c984c18d21902e66e446a
4
+ data.tar.gz: ed7a881e7160fac748fb71aaca71bc340cadd19e74b067a9256576caa7c56111
5
5
  SHA512:
6
- metadata.gz: 7bd33840823b1c608b8887a32852071d3cc85e88be08f1f418a7a9990a6a172a9b11f3eb60becafec11be0dea3089adcb87fea7e58e49f78d6c4160c0d339a43
7
- data.tar.gz: a8b5b9fb704d94b7fd889a38f41327b04fda1b93f025cba070ae9f44cb7a9f82d0eec2600118a3282a77a560cf4f9ce79c0ac65ec5403ffe3736be59998c1ae3
6
+ metadata.gz: 2825abbede415d15a84e0258eb71156b8c87b9d5eb8e2e3c962616034d6bc473147e1e69b2d28ced002cf5683e3a656eaa08d446cd5e489dec016041950b88e9
7
+ data.tar.gz: 7fed9b377a7dc13c01ba8b2bd1b097947eb3133a1ead7d3a9a5be8e10000cf181fa41ddde502499e445266d61dfae4f75d15b98fff4e9763570c3c9ac4cf0128
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2023-08-31)
5
+ ------------------
6
+
7
+ * Feature - Adds sensitive trait to various shapes in Customer Profiles API model.
8
+
9
+ 1.35.0 (2023-07-25)
10
+ ------------------
11
+
12
+ * Feature - Amazon Connect Customer Profiles now supports rule-based resolution to match and merge similar profiles into unified profiles, helping companies deliver faster and more personalized customer service by providing access to relevant customer information for agents and automated experiences.
13
+
4
14
  1.34.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.36.0
@@ -607,6 +607,15 @@ module Aws::CustomerProfiles
607
607
  #
608
608
  # [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
609
609
  #
610
+ # @option params [Types::RuleBasedMatchingRequest] :rule_based_matching
611
+ # The process of matching duplicate profiles using the Rule-Based
612
+ # matching. If `RuleBasedMatching` = true, Amazon Connect Customer
613
+ # Profiles will start to match and merge your profiles according to your
614
+ # configuration in the `RuleBasedMatchingRequest`. You can use the
615
+ # `ListRuleBasedMatches` and `GetSimilarProfiles` API to return and
616
+ # review the results. Also, if you have configured `ExportingConfig` in
617
+ # the `RuleBasedMatchingRequest`, you can download the results from S3.
618
+ #
610
619
  # @option params [Hash<String,String>] :tags
611
620
  # The tags used to organize, track, or control access for this resource.
612
621
  #
@@ -617,6 +626,7 @@ module Aws::CustomerProfiles
617
626
  # * {Types::CreateDomainResponse#default_encryption_key #default_encryption_key} => String
618
627
  # * {Types::CreateDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
619
628
  # * {Types::CreateDomainResponse#matching #matching} => Types::MatchingResponse
629
+ # * {Types::CreateDomainResponse#rule_based_matching #rule_based_matching} => Types::RuleBasedMatchingResponse
620
630
  # * {Types::CreateDomainResponse#created_at #created_at} => Time
621
631
  # * {Types::CreateDomainResponse#last_updated_at #last_updated_at} => Time
622
632
  # * {Types::CreateDomainResponse#tags #tags} => Hash&lt;String,String&gt;
@@ -654,6 +664,32 @@ module Aws::CustomerProfiles
654
664
  # },
655
665
  # },
656
666
  # },
667
+ # rule_based_matching: {
668
+ # enabled: false, # required
669
+ # matching_rules: [
670
+ # {
671
+ # rule: ["string1To255"], # required
672
+ # },
673
+ # ],
674
+ # max_allowed_rule_level_for_merging: 1,
675
+ # max_allowed_rule_level_for_matching: 1,
676
+ # attribute_types_selector: {
677
+ # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
678
+ # address: ["string1To255"],
679
+ # phone_number: ["string1To255"],
680
+ # email_address: ["string1To255"],
681
+ # },
682
+ # conflict_resolution: {
683
+ # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
684
+ # source_name: "string1To255",
685
+ # },
686
+ # exporting_config: {
687
+ # s3_exporting: {
688
+ # s3_bucket_name: "s3BucketName", # required
689
+ # s3_key_name: "s3KeyNameCustomerOutputConfig",
690
+ # },
691
+ # },
692
+ # },
657
693
  # tags: {
658
694
  # "TagKey" => "TagValue",
659
695
  # },
@@ -677,6 +713,24 @@ module Aws::CustomerProfiles
677
713
  # resp.matching.auto_merging.min_allowed_confidence_score_for_merging #=> Float
678
714
  # resp.matching.exporting_config.s3_exporting.s3_bucket_name #=> String
679
715
  # resp.matching.exporting_config.s3_exporting.s3_key_name #=> String
716
+ # resp.rule_based_matching.enabled #=> Boolean
717
+ # resp.rule_based_matching.matching_rules #=> Array
718
+ # resp.rule_based_matching.matching_rules[0].rule #=> Array
719
+ # resp.rule_based_matching.matching_rules[0].rule[0] #=> String
720
+ # resp.rule_based_matching.status #=> String, one of "PENDING", "IN_PROGRESS", "ACTIVE"
721
+ # resp.rule_based_matching.max_allowed_rule_level_for_merging #=> Integer
722
+ # resp.rule_based_matching.max_allowed_rule_level_for_matching #=> Integer
723
+ # resp.rule_based_matching.attribute_types_selector.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
724
+ # resp.rule_based_matching.attribute_types_selector.address #=> Array
725
+ # resp.rule_based_matching.attribute_types_selector.address[0] #=> String
726
+ # resp.rule_based_matching.attribute_types_selector.phone_number #=> Array
727
+ # resp.rule_based_matching.attribute_types_selector.phone_number[0] #=> String
728
+ # resp.rule_based_matching.attribute_types_selector.email_address #=> Array
729
+ # resp.rule_based_matching.attribute_types_selector.email_address[0] #=> String
730
+ # resp.rule_based_matching.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
731
+ # resp.rule_based_matching.conflict_resolution.source_name #=> String
732
+ # resp.rule_based_matching.exporting_config.s3_exporting.s3_bucket_name #=> String
733
+ # resp.rule_based_matching.exporting_config.s3_exporting.s3_key_name #=> String
680
734
  # resp.created_at #=> Time
681
735
  # resp.last_updated_at #=> Time
682
736
  # resp.tags #=> Hash
@@ -961,22 +1015,22 @@ module Aws::CustomerProfiles
961
1015
  #
962
1016
  # resp = client.create_profile({
963
1017
  # domain_name: "name", # required
964
- # account_number: "string1To255",
965
- # additional_information: "string1To1000",
1018
+ # account_number: "sensitiveString1To255",
1019
+ # additional_information: "sensitiveString1To1000",
966
1020
  # party_type: "INDIVIDUAL", # accepts INDIVIDUAL, BUSINESS, OTHER
967
- # business_name: "string1To255",
968
- # first_name: "string1To255",
969
- # middle_name: "string1To255",
970
- # last_name: "string1To255",
971
- # birth_date: "string1To255",
1021
+ # business_name: "sensitiveString1To255",
1022
+ # first_name: "sensitiveString1To255",
1023
+ # middle_name: "sensitiveString1To255",
1024
+ # last_name: "sensitiveString1To255",
1025
+ # birth_date: "sensitiveString1To255",
972
1026
  # gender: "MALE", # accepts MALE, FEMALE, UNSPECIFIED
973
- # phone_number: "string1To255",
974
- # mobile_phone_number: "string1To255",
975
- # home_phone_number: "string1To255",
976
- # business_phone_number: "string1To255",
977
- # email_address: "string1To255",
978
- # personal_email_address: "string1To255",
979
- # business_email_address: "string1To255",
1027
+ # phone_number: "sensitiveString1To255",
1028
+ # mobile_phone_number: "sensitiveString1To255",
1029
+ # home_phone_number: "sensitiveString1To255",
1030
+ # business_phone_number: "sensitiveString1To255",
1031
+ # email_address: "sensitiveString1To255",
1032
+ # personal_email_address: "sensitiveString1To255",
1033
+ # business_email_address: "sensitiveString1To255",
980
1034
  # address: {
981
1035
  # address_1: "string1To255",
982
1036
  # address_2: "string1To255",
@@ -1028,8 +1082,8 @@ module Aws::CustomerProfiles
1028
1082
  # attributes: {
1029
1083
  # "string1To255" => "string1To255",
1030
1084
  # },
1031
- # party_type_string: "string1To255",
1032
- # gender_string: "string1To255",
1085
+ # party_type_string: "sensitiveString1To255",
1086
+ # gender_string: "sensitiveString1To255",
1033
1087
  # })
1034
1088
  #
1035
1089
  # @example Response structure
@@ -1520,6 +1574,7 @@ module Aws::CustomerProfiles
1520
1574
  # * {Types::GetDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
1521
1575
  # * {Types::GetDomainResponse#stats #stats} => Types::DomainStats
1522
1576
  # * {Types::GetDomainResponse#matching #matching} => Types::MatchingResponse
1577
+ # * {Types::GetDomainResponse#rule_based_matching #rule_based_matching} => Types::RuleBasedMatchingResponse
1523
1578
  # * {Types::GetDomainResponse#created_at #created_at} => Time
1524
1579
  # * {Types::GetDomainResponse#last_updated_at #last_updated_at} => Time
1525
1580
  # * {Types::GetDomainResponse#tags #tags} => Hash&lt;String,String&gt;
@@ -1552,6 +1607,24 @@ module Aws::CustomerProfiles
1552
1607
  # resp.matching.auto_merging.min_allowed_confidence_score_for_merging #=> Float
1553
1608
  # resp.matching.exporting_config.s3_exporting.s3_bucket_name #=> String
1554
1609
  # resp.matching.exporting_config.s3_exporting.s3_key_name #=> String
1610
+ # resp.rule_based_matching.enabled #=> Boolean
1611
+ # resp.rule_based_matching.matching_rules #=> Array
1612
+ # resp.rule_based_matching.matching_rules[0].rule #=> Array
1613
+ # resp.rule_based_matching.matching_rules[0].rule[0] #=> String
1614
+ # resp.rule_based_matching.status #=> String, one of "PENDING", "IN_PROGRESS", "ACTIVE"
1615
+ # resp.rule_based_matching.max_allowed_rule_level_for_merging #=> Integer
1616
+ # resp.rule_based_matching.max_allowed_rule_level_for_matching #=> Integer
1617
+ # resp.rule_based_matching.attribute_types_selector.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
1618
+ # resp.rule_based_matching.attribute_types_selector.address #=> Array
1619
+ # resp.rule_based_matching.attribute_types_selector.address[0] #=> String
1620
+ # resp.rule_based_matching.attribute_types_selector.phone_number #=> Array
1621
+ # resp.rule_based_matching.attribute_types_selector.phone_number[0] #=> String
1622
+ # resp.rule_based_matching.attribute_types_selector.email_address #=> Array
1623
+ # resp.rule_based_matching.attribute_types_selector.email_address[0] #=> String
1624
+ # resp.rule_based_matching.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
1625
+ # resp.rule_based_matching.conflict_resolution.source_name #=> String
1626
+ # resp.rule_based_matching.exporting_config.s3_exporting.s3_bucket_name #=> String
1627
+ # resp.rule_based_matching.exporting_config.s3_exporting.s3_key_name #=> String
1555
1628
  # resp.created_at #=> Time
1556
1629
  # resp.last_updated_at #=> Time
1557
1630
  # resp.tags #=> Hash
@@ -1947,6 +2020,68 @@ module Aws::CustomerProfiles
1947
2020
  req.send_request(options)
1948
2021
  end
1949
2022
 
2023
+ # Returns a set of profiles that belong to the same matching group using
2024
+ # the `matchId` or `profileId`. You can also specify the type of
2025
+ # matching that you want for finding similar profiles using either
2026
+ # `RULE_BASED_MATCHING` or `ML_BASED_MATCHING`.
2027
+ #
2028
+ # @option params [String] :next_token
2029
+ # The pagination token from the previous `GetSimilarProfiles` API call.
2030
+ #
2031
+ # @option params [Integer] :max_results
2032
+ # The maximum number of objects returned per page.
2033
+ #
2034
+ # @option params [required, String] :domain_name
2035
+ # The unique name of the domain.
2036
+ #
2037
+ # @option params [required, String] :match_type
2038
+ # Specify the type of matching to get similar profiles for.
2039
+ #
2040
+ # @option params [required, String] :search_key
2041
+ # The string indicating the search key to be used.
2042
+ #
2043
+ # @option params [required, String] :search_value
2044
+ # The string based on `SearchKey` to be searched for similar profiles.
2045
+ #
2046
+ # @return [Types::GetSimilarProfilesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2047
+ #
2048
+ # * {Types::GetSimilarProfilesResponse#profile_ids #profile_ids} => Array&lt;String&gt;
2049
+ # * {Types::GetSimilarProfilesResponse#match_id #match_id} => String
2050
+ # * {Types::GetSimilarProfilesResponse#match_type #match_type} => String
2051
+ # * {Types::GetSimilarProfilesResponse#rule_level #rule_level} => Integer
2052
+ # * {Types::GetSimilarProfilesResponse#confidence_score #confidence_score} => Float
2053
+ # * {Types::GetSimilarProfilesResponse#next_token #next_token} => String
2054
+ #
2055
+ # @example Request syntax with placeholder values
2056
+ #
2057
+ # resp = client.get_similar_profiles({
2058
+ # next_token: "token",
2059
+ # max_results: 1,
2060
+ # domain_name: "name", # required
2061
+ # match_type: "RULE_BASED_MATCHING", # required, accepts RULE_BASED_MATCHING, ML_BASED_MATCHING
2062
+ # search_key: "string1To255", # required
2063
+ # search_value: "string1To255", # required
2064
+ # })
2065
+ #
2066
+ # @example Response structure
2067
+ #
2068
+ # resp.profile_ids #=> Array
2069
+ # resp.profile_ids[0] #=> String
2070
+ # resp.match_id #=> String
2071
+ # resp.match_type #=> String, one of "RULE_BASED_MATCHING", "ML_BASED_MATCHING"
2072
+ # resp.rule_level #=> Integer
2073
+ # resp.confidence_score #=> Float
2074
+ # resp.next_token #=> String
2075
+ #
2076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetSimilarProfiles AWS API Documentation
2077
+ #
2078
+ # @overload get_similar_profiles(params = {})
2079
+ # @param [Hash] params ({})
2080
+ def get_similar_profiles(params = {}, options = {})
2081
+ req = build_request(:get_similar_profiles, params)
2082
+ req.send_request(options)
2083
+ end
2084
+
1950
2085
  # Get details of specified workflow.
1951
2086
  #
1952
2087
  # @option params [required, String] :domain_name
@@ -2539,6 +2674,46 @@ module Aws::CustomerProfiles
2539
2674
  req.send_request(options)
2540
2675
  end
2541
2676
 
2677
+ # Returns a set of `MatchIds` that belong to the given domain.
2678
+ #
2679
+ # @option params [String] :next_token
2680
+ # The pagination token from the previous `ListRuleBasedMatches` API
2681
+ # call.
2682
+ #
2683
+ # @option params [Integer] :max_results
2684
+ # The maximum number of `MatchIds` returned per page.
2685
+ #
2686
+ # @option params [required, String] :domain_name
2687
+ # The unique name of the domain.
2688
+ #
2689
+ # @return [Types::ListRuleBasedMatchesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2690
+ #
2691
+ # * {Types::ListRuleBasedMatchesResponse#match_ids #match_ids} => Array&lt;String&gt;
2692
+ # * {Types::ListRuleBasedMatchesResponse#next_token #next_token} => String
2693
+ #
2694
+ # @example Request syntax with placeholder values
2695
+ #
2696
+ # resp = client.list_rule_based_matches({
2697
+ # next_token: "token",
2698
+ # max_results: 1,
2699
+ # domain_name: "name", # required
2700
+ # })
2701
+ #
2702
+ # @example Response structure
2703
+ #
2704
+ # resp.match_ids #=> Array
2705
+ # resp.match_ids[0] #=> String
2706
+ # resp.next_token #=> String
2707
+ #
2708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListRuleBasedMatches AWS API Documentation
2709
+ #
2710
+ # @overload list_rule_based_matches(params = {})
2711
+ # @param [Hash] params ({})
2712
+ def list_rule_based_matches(params = {}, options = {})
2713
+ req = build_request(:list_rule_based_matches, params)
2714
+ req.send_request(options)
2715
+ end
2716
+
2542
2717
  # Displays the tags associated with an Amazon Connect Customer Profiles
2543
2718
  # resource. In Connect Customer Profiles, domains, profile object types,
2544
2719
  # and integrations can be tagged.
@@ -3009,7 +3184,7 @@ module Aws::CustomerProfiles
3009
3184
  # resp = client.put_profile_object_type({
3010
3185
  # domain_name: "name", # required
3011
3186
  # object_type_name: "typeName", # required
3012
- # description: "text", # required
3187
+ # description: "sensitiveText", # required
3013
3188
  # template_id: "name",
3014
3189
  # expiration_days: 1,
3015
3190
  # encryption_key: "encryptionKey",
@@ -3440,6 +3615,15 @@ module Aws::CustomerProfiles
3440
3615
  #
3441
3616
  # [1]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_GetMatches.html
3442
3617
  #
3618
+ # @option params [Types::RuleBasedMatchingRequest] :rule_based_matching
3619
+ # The process of matching duplicate profiles using the rule-Based
3620
+ # matching. If `RuleBasedMatching` = true, Amazon Connect Customer
3621
+ # Profiles will start to match and merge your profiles according to your
3622
+ # configuration in the `RuleBasedMatchingRequest`. You can use the
3623
+ # `ListRuleBasedMatches` and `GetSimilarProfiles` API to return and
3624
+ # review the results. Also, if you have configured `ExportingConfig` in
3625
+ # the `RuleBasedMatchingRequest`, you can download the results from S3.
3626
+ #
3443
3627
  # @option params [Hash<String,String>] :tags
3444
3628
  # The tags used to organize, track, or control access for this resource.
3445
3629
  #
@@ -3450,6 +3634,7 @@ module Aws::CustomerProfiles
3450
3634
  # * {Types::UpdateDomainResponse#default_encryption_key #default_encryption_key} => String
3451
3635
  # * {Types::UpdateDomainResponse#dead_letter_queue_url #dead_letter_queue_url} => String
3452
3636
  # * {Types::UpdateDomainResponse#matching #matching} => Types::MatchingResponse
3637
+ # * {Types::UpdateDomainResponse#rule_based_matching #rule_based_matching} => Types::RuleBasedMatchingResponse
3453
3638
  # * {Types::UpdateDomainResponse#created_at #created_at} => Time
3454
3639
  # * {Types::UpdateDomainResponse#last_updated_at #last_updated_at} => Time
3455
3640
  # * {Types::UpdateDomainResponse#tags #tags} => Hash&lt;String,String&gt;
@@ -3487,6 +3672,32 @@ module Aws::CustomerProfiles
3487
3672
  # },
3488
3673
  # },
3489
3674
  # },
3675
+ # rule_based_matching: {
3676
+ # enabled: false, # required
3677
+ # matching_rules: [
3678
+ # {
3679
+ # rule: ["string1To255"], # required
3680
+ # },
3681
+ # ],
3682
+ # max_allowed_rule_level_for_merging: 1,
3683
+ # max_allowed_rule_level_for_matching: 1,
3684
+ # attribute_types_selector: {
3685
+ # attribute_matching_model: "ONE_TO_ONE", # required, accepts ONE_TO_ONE, MANY_TO_MANY
3686
+ # address: ["string1To255"],
3687
+ # phone_number: ["string1To255"],
3688
+ # email_address: ["string1To255"],
3689
+ # },
3690
+ # conflict_resolution: {
3691
+ # conflict_resolving_model: "RECENCY", # required, accepts RECENCY, SOURCE
3692
+ # source_name: "string1To255",
3693
+ # },
3694
+ # exporting_config: {
3695
+ # s3_exporting: {
3696
+ # s3_bucket_name: "s3BucketName", # required
3697
+ # s3_key_name: "s3KeyNameCustomerOutputConfig",
3698
+ # },
3699
+ # },
3700
+ # },
3490
3701
  # tags: {
3491
3702
  # "TagKey" => "TagValue",
3492
3703
  # },
@@ -3510,6 +3721,24 @@ module Aws::CustomerProfiles
3510
3721
  # resp.matching.auto_merging.min_allowed_confidence_score_for_merging #=> Float
3511
3722
  # resp.matching.exporting_config.s3_exporting.s3_bucket_name #=> String
3512
3723
  # resp.matching.exporting_config.s3_exporting.s3_key_name #=> String
3724
+ # resp.rule_based_matching.enabled #=> Boolean
3725
+ # resp.rule_based_matching.matching_rules #=> Array
3726
+ # resp.rule_based_matching.matching_rules[0].rule #=> Array
3727
+ # resp.rule_based_matching.matching_rules[0].rule[0] #=> String
3728
+ # resp.rule_based_matching.status #=> String, one of "PENDING", "IN_PROGRESS", "ACTIVE"
3729
+ # resp.rule_based_matching.max_allowed_rule_level_for_merging #=> Integer
3730
+ # resp.rule_based_matching.max_allowed_rule_level_for_matching #=> Integer
3731
+ # resp.rule_based_matching.attribute_types_selector.attribute_matching_model #=> String, one of "ONE_TO_ONE", "MANY_TO_MANY"
3732
+ # resp.rule_based_matching.attribute_types_selector.address #=> Array
3733
+ # resp.rule_based_matching.attribute_types_selector.address[0] #=> String
3734
+ # resp.rule_based_matching.attribute_types_selector.phone_number #=> Array
3735
+ # resp.rule_based_matching.attribute_types_selector.phone_number[0] #=> String
3736
+ # resp.rule_based_matching.attribute_types_selector.email_address #=> Array
3737
+ # resp.rule_based_matching.attribute_types_selector.email_address[0] #=> String
3738
+ # resp.rule_based_matching.conflict_resolution.conflict_resolving_model #=> String, one of "RECENCY", "SOURCE"
3739
+ # resp.rule_based_matching.conflict_resolution.source_name #=> String
3740
+ # resp.rule_based_matching.exporting_config.s3_exporting.s3_bucket_name #=> String
3741
+ # resp.rule_based_matching.exporting_config.s3_exporting.s3_key_name #=> String
3513
3742
  # resp.created_at #=> Time
3514
3743
  # resp.last_updated_at #=> Time
3515
3744
  # resp.tags #=> Hash
@@ -3618,22 +3847,22 @@ module Aws::CustomerProfiles
3618
3847
  # resp = client.update_profile({
3619
3848
  # domain_name: "name", # required
3620
3849
  # profile_id: "uuid", # required
3621
- # additional_information: "string0To1000",
3622
- # account_number: "string0To255",
3850
+ # additional_information: "sensitiveString0To1000",
3851
+ # account_number: "sensitiveString0To255",
3623
3852
  # party_type: "INDIVIDUAL", # accepts INDIVIDUAL, BUSINESS, OTHER
3624
- # business_name: "string0To255",
3625
- # first_name: "string0To255",
3626
- # middle_name: "string0To255",
3627
- # last_name: "string0To255",
3628
- # birth_date: "string0To255",
3853
+ # business_name: "sensitiveString0To255",
3854
+ # first_name: "sensitiveString0To255",
3855
+ # middle_name: "sensitiveString0To255",
3856
+ # last_name: "sensitiveString0To255",
3857
+ # birth_date: "sensitiveString0To255",
3629
3858
  # gender: "MALE", # accepts MALE, FEMALE, UNSPECIFIED
3630
- # phone_number: "string0To255",
3631
- # mobile_phone_number: "string0To255",
3632
- # home_phone_number: "string0To255",
3633
- # business_phone_number: "string0To255",
3634
- # email_address: "string0To255",
3635
- # personal_email_address: "string0To255",
3636
- # business_email_address: "string0To255",
3859
+ # phone_number: "sensitiveString0To255",
3860
+ # mobile_phone_number: "sensitiveString0To255",
3861
+ # home_phone_number: "sensitiveString0To255",
3862
+ # business_phone_number: "sensitiveString0To255",
3863
+ # email_address: "sensitiveString0To255",
3864
+ # personal_email_address: "sensitiveString0To255",
3865
+ # business_email_address: "sensitiveString0To255",
3637
3866
  # address: {
3638
3867
  # address_1: "string0To255",
3639
3868
  # address_2: "string0To255",
@@ -3685,8 +3914,8 @@ module Aws::CustomerProfiles
3685
3914
  # attributes: {
3686
3915
  # "string1To255" => "string0To255",
3687
3916
  # },
3688
- # party_type_string: "string0To255",
3689
- # gender_string: "string0To255",
3917
+ # party_type_string: "sensitiveString0To255",
3918
+ # gender_string: "sensitiveString0To255",
3690
3919
  # })
3691
3920
  #
3692
3921
  # @example Response structure
@@ -3715,7 +3944,7 @@ module Aws::CustomerProfiles
3715
3944
  params: params,
3716
3945
  config: config)
3717
3946
  context[:gem_name] = 'aws-sdk-customerprofiles'
3718
- context[:gem_version] = '1.34.0'
3947
+ context[:gem_version] = '1.36.0'
3719
3948
  Seahorse::Client::Request.new(handlers, context)
3720
3949
  end
3721
3950