aws-sdk-customerprofiles 1.63.0 → 1.65.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: def9b3532a00945017ad5022cd6c571ae1dd68502e67ce1193eb9701687e4cac
4
- data.tar.gz: b3d29eb92ce96bac809a2a3e64d708d86abb56beec3feefbd5577011e9906094
3
+ metadata.gz: 57983d301343c1108fb02a4e1e4e39bbb81805f0cd5866e4196a9792c6ea40bf
4
+ data.tar.gz: 8056541db005d9a976e66a76797995cb40ee0ffd49d4e38199d7c75d4068f4af
5
5
  SHA512:
6
- metadata.gz: 3b503f9661b59d414148eade37e12992dddf064530ea3675448fbbf7ab836d19a63f60eaba802ce0c6e51b643f05a163411b22f361a3b3321e830671875586bc
7
- data.tar.gz: 77e6d4ad0313e8c38ac756d0e60a73bd953033d6b6ec98a6679e7f7eba00e5183ddd680b852772fc3161e32b08923b1f0605c00aa3c17137e857a58dac0d8661
6
+ metadata.gz: 6fa4d419f6e97d3d29af73d6b795e5c083f724786b635f596e0554443ba057ebf8e4280585e120820cec43b4c9a8f17d1431a1ba6e498be5a57ba15baf97f766
7
+ data.tar.gz: fa876cafce75ca8971102f2bd34f9b95cd49ddc58a86fc0c804f93bd7aa3d5741bbf0df2e20d160a007011249f05f25d2dd9b185b8572ea01d07cdf4d51d7f75
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2025-06-09)
5
+ ------------------
6
+
7
+ * Feature - This release introduces capability of Profile Explorer, using correct ingestion timestamp & using historical data for computing calculated attributes, and new standard objects for T&H as part of Amazon Connect Customer Profiles service.
8
+
9
+ 1.64.0 (2025-06-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.63.0 (2025-05-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.65.0
@@ -571,6 +571,7 @@ module Aws::CustomerProfiles
571
571
  # resp.calculated_attribute_values[0].is_data_partial #=> String
572
572
  # resp.calculated_attribute_values[0].profile_id #=> String
573
573
  # resp.calculated_attribute_values[0].value #=> String
574
+ # resp.calculated_attribute_values[0].last_object_timestamp #=> Time
574
575
  # resp.condition_overrides.range.start #=> Integer
575
576
  # resp.condition_overrides.range.end #=> Integer
576
577
  # resp.condition_overrides.range.unit #=> String, one of "DAYS"
@@ -725,6 +726,10 @@ module Aws::CustomerProfiles
725
726
  # @option params [required, String] :statistic
726
727
  # The aggregation operation to perform for the calculated attribute.
727
728
  #
729
+ # @option params [Boolean] :use_historical_data
730
+ # Whether historical data ingested before the Calculated Attribute was
731
+ # created should be included in calculations.
732
+ #
728
733
  # @option params [Hash<String,String>] :tags
729
734
  # The tags used to organize, track, or control access for this resource.
730
735
  #
@@ -739,6 +744,9 @@ module Aws::CustomerProfiles
739
744
  # * {Types::CreateCalculatedAttributeDefinitionResponse#statistic #statistic} => String
740
745
  # * {Types::CreateCalculatedAttributeDefinitionResponse#created_at #created_at} => Time
741
746
  # * {Types::CreateCalculatedAttributeDefinitionResponse#last_updated_at #last_updated_at} => Time
747
+ # * {Types::CreateCalculatedAttributeDefinitionResponse#use_historical_data #use_historical_data} => Boolean
748
+ # * {Types::CreateCalculatedAttributeDefinitionResponse#status #status} => String
749
+ # * {Types::CreateCalculatedAttributeDefinitionResponse#readiness #readiness} => Types::Readiness
742
750
  # * {Types::CreateCalculatedAttributeDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
743
751
  #
744
752
  # @example Request syntax with placeholder values
@@ -758,8 +766,14 @@ module Aws::CustomerProfiles
758
766
  # },
759
767
  # conditions: {
760
768
  # range: {
761
- # value: 1, # required
762
- # unit: "DAYS", # required, accepts DAYS
769
+ # value: 1,
770
+ # unit: "DAYS", # accepts DAYS
771
+ # value_range: {
772
+ # start: 1, # required
773
+ # end: 1, # required
774
+ # },
775
+ # timestamp_source: "string1To255",
776
+ # timestamp_format: "string1To255",
763
777
  # },
764
778
  # object_count: 1,
765
779
  # threshold: {
@@ -786,6 +800,7 @@ module Aws::CustomerProfiles
786
800
  # ],
787
801
  # },
788
802
  # statistic: "FIRST_OCCURRENCE", # required, accepts FIRST_OCCURRENCE, LAST_OCCURRENCE, COUNT, SUM, MINIMUM, MAXIMUM, AVERAGE, MAX_OCCURRENCE
803
+ # use_historical_data: false,
789
804
  # tags: {
790
805
  # "TagKey" => "TagValue",
791
806
  # },
@@ -801,6 +816,10 @@ module Aws::CustomerProfiles
801
816
  # resp.attribute_details.expression #=> String
802
817
  # resp.conditions.range.value #=> Integer
803
818
  # resp.conditions.range.unit #=> String, one of "DAYS"
819
+ # resp.conditions.range.value_range.start #=> Integer
820
+ # resp.conditions.range.value_range.end #=> Integer
821
+ # resp.conditions.range.timestamp_source #=> String
822
+ # resp.conditions.range.timestamp_format #=> String
804
823
  # resp.conditions.object_count #=> Integer
805
824
  # resp.conditions.threshold.value #=> String
806
825
  # resp.conditions.threshold.operator #=> String, one of "EQUAL_TO", "GREATER_THAN", "LESS_THAN", "NOT_EQUAL_TO"
@@ -815,6 +834,10 @@ module Aws::CustomerProfiles
815
834
  # resp.statistic #=> String, one of "FIRST_OCCURRENCE", "LAST_OCCURRENCE", "COUNT", "SUM", "MINIMUM", "MAXIMUM", "AVERAGE", "MAX_OCCURRENCE"
816
835
  # resp.created_at #=> Time
817
836
  # resp.last_updated_at #=> Time
837
+ # resp.use_historical_data #=> Boolean
838
+ # resp.status #=> String, one of "PREPARING", "IN_PROGRESS", "COMPLETED", "FAILED"
839
+ # resp.readiness.progress_percentage #=> Integer
840
+ # resp.readiness.message #=> String
818
841
  # resp.tags #=> Hash
819
842
  # resp.tags["TagKey"] #=> String
820
843
  #
@@ -1032,6 +1055,89 @@ module Aws::CustomerProfiles
1032
1055
  req.send_request(options)
1033
1056
  end
1034
1057
 
1058
+ # Creates the layout to view data for a specific domain. This API can
1059
+ # only be invoked from the Amazon Connect admin website.
1060
+ #
1061
+ # @option params [required, String] :domain_name
1062
+ # The unique name of the domain.
1063
+ #
1064
+ # @option params [required, String] :layout_definition_name
1065
+ # The unique name of the layout.
1066
+ #
1067
+ # @option params [required, String] :description
1068
+ # The description of the layout
1069
+ #
1070
+ # @option params [required, String] :display_name
1071
+ # The display name of the layout
1072
+ #
1073
+ # @option params [Boolean] :is_default
1074
+ # If set to true for a layout, this layout will be used by default to
1075
+ # view data. If set to false, then the layout will not be used by
1076
+ # default, but it can be used to view data by explicitly selecting it in
1077
+ # the console.
1078
+ #
1079
+ # @option params [required, String] :layout_type
1080
+ # The type of layout that can be used to view data under a Customer
1081
+ # Profiles domain.
1082
+ #
1083
+ # @option params [required, String] :layout
1084
+ # A customizable layout that can be used to view data under a Customer
1085
+ # Profiles domain.
1086
+ #
1087
+ # @option params [Hash<String,String>] :tags
1088
+ # The tags used to organize, track, or control access for this resource.
1089
+ #
1090
+ # @return [Types::CreateDomainLayoutResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1091
+ #
1092
+ # * {Types::CreateDomainLayoutResponse#layout_definition_name #layout_definition_name} => String
1093
+ # * {Types::CreateDomainLayoutResponse#description #description} => String
1094
+ # * {Types::CreateDomainLayoutResponse#display_name #display_name} => String
1095
+ # * {Types::CreateDomainLayoutResponse#is_default #is_default} => Boolean
1096
+ # * {Types::CreateDomainLayoutResponse#layout_type #layout_type} => String
1097
+ # * {Types::CreateDomainLayoutResponse#layout #layout} => String
1098
+ # * {Types::CreateDomainLayoutResponse#version #version} => String
1099
+ # * {Types::CreateDomainLayoutResponse#tags #tags} => Hash&lt;String,String&gt;
1100
+ # * {Types::CreateDomainLayoutResponse#created_at #created_at} => Time
1101
+ # * {Types::CreateDomainLayoutResponse#last_updated_at #last_updated_at} => Time
1102
+ #
1103
+ # @example Request syntax with placeholder values
1104
+ #
1105
+ # resp = client.create_domain_layout({
1106
+ # domain_name: "name", # required
1107
+ # layout_definition_name: "name", # required
1108
+ # description: "sensitiveText", # required
1109
+ # display_name: "displayName", # required
1110
+ # is_default: false,
1111
+ # layout_type: "PROFILE_EXPLORER", # required, accepts PROFILE_EXPLORER
1112
+ # layout: "sensitiveString1To2000000", # required
1113
+ # tags: {
1114
+ # "TagKey" => "TagValue",
1115
+ # },
1116
+ # })
1117
+ #
1118
+ # @example Response structure
1119
+ #
1120
+ # resp.layout_definition_name #=> String
1121
+ # resp.description #=> String
1122
+ # resp.display_name #=> String
1123
+ # resp.is_default #=> Boolean
1124
+ # resp.layout_type #=> String, one of "PROFILE_EXPLORER"
1125
+ # resp.layout #=> String
1126
+ # resp.version #=> String
1127
+ # resp.tags #=> Hash
1128
+ # resp.tags["TagKey"] #=> String
1129
+ # resp.created_at #=> Time
1130
+ # resp.last_updated_at #=> Time
1131
+ #
1132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateDomainLayout AWS API Documentation
1133
+ #
1134
+ # @overload create_domain_layout(params = {})
1135
+ # @param [Hash] params ({})
1136
+ def create_domain_layout(params = {}, options = {})
1137
+ req = build_request(:create_domain_layout, params)
1138
+ req.send_request(options)
1139
+ end
1140
+
1035
1141
  # Creates an event stream, which is a subscription to real-time events,
1036
1142
  # such as when profiles are created and updated through Amazon Connect
1037
1143
  # Customer Profiles.
@@ -1345,7 +1451,7 @@ module Aws::CustomerProfiles
1345
1451
  # The unique name of the domain.
1346
1452
  #
1347
1453
  # @option params [String] :account_number
1348
- # An account number that you have given to the customer.
1454
+ # An account number that you have assigned to the customer.
1349
1455
  #
1350
1456
  # @option params [String] :additional_information
1351
1457
  # Any additional information relevant to the customer’s profile.
@@ -2130,6 +2236,39 @@ module Aws::CustomerProfiles
2130
2236
  req.send_request(options)
2131
2237
  end
2132
2238
 
2239
+ # Deletes the layout used to view data for a specific domain. This API
2240
+ # can only be invoked from the Amazon Connect admin website.
2241
+ #
2242
+ # @option params [required, String] :domain_name
2243
+ # The unique name of the domain.
2244
+ #
2245
+ # @option params [required, String] :layout_definition_name
2246
+ # The unique name of the layout.
2247
+ #
2248
+ # @return [Types::DeleteDomainLayoutResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2249
+ #
2250
+ # * {Types::DeleteDomainLayoutResponse#message #message} => String
2251
+ #
2252
+ # @example Request syntax with placeholder values
2253
+ #
2254
+ # resp = client.delete_domain_layout({
2255
+ # domain_name: "name", # required
2256
+ # layout_definition_name: "name", # required
2257
+ # })
2258
+ #
2259
+ # @example Response structure
2260
+ #
2261
+ # resp.message #=> String
2262
+ #
2263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteDomainLayout AWS API Documentation
2264
+ #
2265
+ # @overload delete_domain_layout(params = {})
2266
+ # @param [Hash] params ({})
2267
+ def delete_domain_layout(params = {}, options = {})
2268
+ req = build_request(:delete_domain_layout, params)
2269
+ req.send_request(options)
2270
+ end
2271
+
2133
2272
  # Disables and deletes the specified event stream.
2134
2273
  #
2135
2274
  # @option params [required, String] :domain_name
@@ -2465,7 +2604,7 @@ module Aws::CustomerProfiles
2465
2604
  # resp.detected_profile_object_types[0].keys #=> Hash
2466
2605
  # resp.detected_profile_object_types[0].keys["name"] #=> Array
2467
2606
  # resp.detected_profile_object_types[0].keys["name"][0].standard_identifiers #=> Array
2468
- # resp.detected_profile_object_types[0].keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
2607
+ # resp.detected_profile_object_types[0].keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "AIR_PREFERENCE", "HOTEL_PREFERENCE", "AIR_BOOKING", "AIR_SEGMENT", "HOTEL_RESERVATION", "HOTEL_STAY_REVENUE", "LOYALTY", "LOYALTY_TRANSACTION", "LOYALTY_PROMOTION", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
2469
2608
  # resp.detected_profile_object_types[0].keys["name"][0].field_names #=> Array
2470
2609
  # resp.detected_profile_object_types[0].keys["name"][0].field_names[0] #=> String
2471
2610
  #
@@ -2568,6 +2707,9 @@ module Aws::CustomerProfiles
2568
2707
  # * {Types::GetCalculatedAttributeDefinitionResponse#filter #data.filter} => Types::Filter (This method conflicts with a method on Response, call it through the data member)
2569
2708
  # * {Types::GetCalculatedAttributeDefinitionResponse#conditions #conditions} => Types::Conditions
2570
2709
  # * {Types::GetCalculatedAttributeDefinitionResponse#attribute_details #attribute_details} => Types::AttributeDetails
2710
+ # * {Types::GetCalculatedAttributeDefinitionResponse#use_historical_data #use_historical_data} => Boolean
2711
+ # * {Types::GetCalculatedAttributeDefinitionResponse#status #status} => String
2712
+ # * {Types::GetCalculatedAttributeDefinitionResponse#readiness #readiness} => Types::Readiness
2571
2713
  # * {Types::GetCalculatedAttributeDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
2572
2714
  #
2573
2715
  # @example Request syntax with placeholder values
@@ -2595,12 +2737,20 @@ module Aws::CustomerProfiles
2595
2737
  # resp.data.filter.groups[0].dimensions[0].attributes["attributeName"].values[0] #=> String
2596
2738
  # resp.conditions.range.value #=> Integer
2597
2739
  # resp.conditions.range.unit #=> String, one of "DAYS"
2740
+ # resp.conditions.range.value_range.start #=> Integer
2741
+ # resp.conditions.range.value_range.end #=> Integer
2742
+ # resp.conditions.range.timestamp_source #=> String
2743
+ # resp.conditions.range.timestamp_format #=> String
2598
2744
  # resp.conditions.object_count #=> Integer
2599
2745
  # resp.conditions.threshold.value #=> String
2600
2746
  # resp.conditions.threshold.operator #=> String, one of "EQUAL_TO", "GREATER_THAN", "LESS_THAN", "NOT_EQUAL_TO"
2601
2747
  # resp.attribute_details.attributes #=> Array
2602
2748
  # resp.attribute_details.attributes[0].name #=> String
2603
2749
  # resp.attribute_details.expression #=> String
2750
+ # resp.use_historical_data #=> Boolean
2751
+ # resp.status #=> String, one of "PREPARING", "IN_PROGRESS", "COMPLETED", "FAILED"
2752
+ # resp.readiness.progress_percentage #=> Integer
2753
+ # resp.readiness.message #=> String
2604
2754
  # resp.tags #=> Hash
2605
2755
  # resp.tags["TagKey"] #=> String
2606
2756
  #
@@ -2630,6 +2780,7 @@ module Aws::CustomerProfiles
2630
2780
  # * {Types::GetCalculatedAttributeForProfileResponse#display_name #display_name} => String
2631
2781
  # * {Types::GetCalculatedAttributeForProfileResponse#is_data_partial #is_data_partial} => String
2632
2782
  # * {Types::GetCalculatedAttributeForProfileResponse#value #value} => String
2783
+ # * {Types::GetCalculatedAttributeForProfileResponse#last_object_timestamp #last_object_timestamp} => Time
2633
2784
  #
2634
2785
  # @example Request syntax with placeholder values
2635
2786
  #
@@ -2645,6 +2796,7 @@ module Aws::CustomerProfiles
2645
2796
  # resp.display_name #=> String
2646
2797
  # resp.is_data_partial #=> String
2647
2798
  # resp.value #=> String
2799
+ # resp.last_object_timestamp #=> Time
2648
2800
  #
2649
2801
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetCalculatedAttributeForProfile AWS API Documentation
2650
2802
  #
@@ -2733,6 +2885,58 @@ module Aws::CustomerProfiles
2733
2885
  req.send_request(options)
2734
2886
  end
2735
2887
 
2888
+ # Gets the layout to view data for a specific domain. This API can only
2889
+ # be invoked from the Amazon Connect admin website.
2890
+ #
2891
+ # @option params [required, String] :domain_name
2892
+ # The unique name of the domain.
2893
+ #
2894
+ # @option params [required, String] :layout_definition_name
2895
+ # The unique name of the layout.
2896
+ #
2897
+ # @return [Types::GetDomainLayoutResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2898
+ #
2899
+ # * {Types::GetDomainLayoutResponse#layout_definition_name #layout_definition_name} => String
2900
+ # * {Types::GetDomainLayoutResponse#description #description} => String
2901
+ # * {Types::GetDomainLayoutResponse#display_name #display_name} => String
2902
+ # * {Types::GetDomainLayoutResponse#is_default #is_default} => Boolean
2903
+ # * {Types::GetDomainLayoutResponse#layout_type #layout_type} => String
2904
+ # * {Types::GetDomainLayoutResponse#layout #layout} => String
2905
+ # * {Types::GetDomainLayoutResponse#version #version} => String
2906
+ # * {Types::GetDomainLayoutResponse#created_at #created_at} => Time
2907
+ # * {Types::GetDomainLayoutResponse#last_updated_at #last_updated_at} => Time
2908
+ # * {Types::GetDomainLayoutResponse#tags #tags} => Hash&lt;String,String&gt;
2909
+ #
2910
+ # @example Request syntax with placeholder values
2911
+ #
2912
+ # resp = client.get_domain_layout({
2913
+ # domain_name: "name", # required
2914
+ # layout_definition_name: "name", # required
2915
+ # })
2916
+ #
2917
+ # @example Response structure
2918
+ #
2919
+ # resp.layout_definition_name #=> String
2920
+ # resp.description #=> String
2921
+ # resp.display_name #=> String
2922
+ # resp.is_default #=> Boolean
2923
+ # resp.layout_type #=> String, one of "PROFILE_EXPLORER"
2924
+ # resp.layout #=> String
2925
+ # resp.version #=> String
2926
+ # resp.created_at #=> Time
2927
+ # resp.last_updated_at #=> Time
2928
+ # resp.tags #=> Hash
2929
+ # resp.tags["TagKey"] #=> String
2930
+ #
2931
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetDomainLayout AWS API Documentation
2932
+ #
2933
+ # @overload get_domain_layout(params = {})
2934
+ # @param [Hash] params ({})
2935
+ def get_domain_layout(params = {}, options = {})
2936
+ req = build_request(:get_domain_layout, params)
2937
+ req.send_request(options)
2938
+ end
2939
+
2736
2940
  # Returns information about the specified event stream in a specific
2737
2941
  # domain.
2738
2942
  #
@@ -3114,7 +3318,7 @@ module Aws::CustomerProfiles
3114
3318
  # resp.keys #=> Hash
3115
3319
  # resp.keys["name"] #=> Array
3116
3320
  # resp.keys["name"][0].standard_identifiers #=> Array
3117
- # resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
3321
+ # resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "AIR_PREFERENCE", "HOTEL_PREFERENCE", "AIR_BOOKING", "AIR_SEGMENT", "HOTEL_RESERVATION", "HOTEL_STAY_REVENUE", "LOYALTY", "LOYALTY_TRANSACTION", "LOYALTY_PROMOTION", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
3118
3322
  # resp.keys["name"][0].field_names #=> Array
3119
3323
  # resp.keys["name"][0].field_names[0] #=> String
3120
3324
  # resp.created_at #=> Time
@@ -3172,7 +3376,7 @@ module Aws::CustomerProfiles
3172
3376
  # resp.keys #=> Hash
3173
3377
  # resp.keys["name"] #=> Array
3174
3378
  # resp.keys["name"][0].standard_identifiers #=> Array
3175
- # resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
3379
+ # resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "AIR_PREFERENCE", "HOTEL_PREFERENCE", "AIR_BOOKING", "AIR_SEGMENT", "HOTEL_RESERVATION", "HOTEL_STAY_REVENUE", "LOYALTY", "LOYALTY_TRANSACTION", "LOYALTY_PROMOTION", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
3176
3380
  # resp.keys["name"][0].field_names #=> Array
3177
3381
  # resp.keys["name"][0].field_names[0] #=> String
3178
3382
  #
@@ -3831,6 +4035,8 @@ module Aws::CustomerProfiles
3831
4035
  # resp.items[0].description #=> String
3832
4036
  # resp.items[0].created_at #=> Time
3833
4037
  # resp.items[0].last_updated_at #=> Time
4038
+ # resp.items[0].use_historical_data #=> Boolean
4039
+ # resp.items[0].status #=> String, one of "PREPARING", "IN_PROGRESS", "COMPLETED", "FAILED"
3834
4040
  # resp.items[0].tags #=> Hash
3835
4041
  # resp.items[0].tags["TagKey"] #=> String
3836
4042
  # resp.next_token #=> String
@@ -3880,6 +4086,7 @@ module Aws::CustomerProfiles
3880
4086
  # resp.items[0].display_name #=> String
3881
4087
  # resp.items[0].is_data_partial #=> String
3882
4088
  # resp.items[0].value #=> String
4089
+ # resp.items[0].last_object_timestamp #=> Time
3883
4090
  # resp.next_token #=> String
3884
4091
  #
3885
4092
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListCalculatedAttributesForProfile AWS API Documentation
@@ -3891,6 +4098,57 @@ module Aws::CustomerProfiles
3891
4098
  req.send_request(options)
3892
4099
  end
3893
4100
 
4101
+ # Lists the existing layouts that can be used to view data for a
4102
+ # specific domain. This API can only be invoked from the Amazon Connect
4103
+ # admin website.
4104
+ #
4105
+ # @option params [required, String] :domain_name
4106
+ # The unique name of the domain.
4107
+ #
4108
+ # @option params [String] :next_token
4109
+ # Identifies the next page of results to return.
4110
+ #
4111
+ # @option params [Integer] :max_results
4112
+ # The maximum number of objects returned per page.
4113
+ #
4114
+ # @return [Types::ListDomainLayoutsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4115
+ #
4116
+ # * {Types::ListDomainLayoutsResponse#items #items} => Array&lt;Types::LayoutItem&gt;
4117
+ # * {Types::ListDomainLayoutsResponse#next_token #next_token} => String
4118
+ #
4119
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4120
+ #
4121
+ # @example Request syntax with placeholder values
4122
+ #
4123
+ # resp = client.list_domain_layouts({
4124
+ # domain_name: "name", # required
4125
+ # next_token: "token",
4126
+ # max_results: 1,
4127
+ # })
4128
+ #
4129
+ # @example Response structure
4130
+ #
4131
+ # resp.items #=> Array
4132
+ # resp.items[0].layout_definition_name #=> String
4133
+ # resp.items[0].description #=> String
4134
+ # resp.items[0].display_name #=> String
4135
+ # resp.items[0].is_default #=> Boolean
4136
+ # resp.items[0].layout_type #=> String, one of "PROFILE_EXPLORER"
4137
+ # resp.items[0].tags #=> Hash
4138
+ # resp.items[0].tags["TagKey"] #=> String
4139
+ # resp.items[0].created_at #=> Time
4140
+ # resp.items[0].last_updated_at #=> Time
4141
+ # resp.next_token #=> String
4142
+ #
4143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListDomainLayouts AWS API Documentation
4144
+ #
4145
+ # @overload list_domain_layouts(params = {})
4146
+ # @param [Hash] params ({})
4147
+ def list_domain_layouts(params = {}, options = {})
4148
+ req = build_request(:list_domain_layouts, params)
4149
+ req.send_request(options)
4150
+ end
4151
+
3894
4152
  # Returns a list of all the domains for an AWS account that have been
3895
4153
  # created.
3896
4154
  #
@@ -4960,7 +5218,7 @@ module Aws::CustomerProfiles
4960
5218
  # keys: {
4961
5219
  # "name" => [
4962
5220
  # {
4963
- # standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, ORDER, COMMUNICATION_RECORD, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
5221
+ # standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, ORDER, COMMUNICATION_RECORD, AIR_PREFERENCE, HOTEL_PREFERENCE, AIR_BOOKING, AIR_SEGMENT, HOTEL_RESERVATION, HOTEL_STAY_REVENUE, LOYALTY, LOYALTY_TRANSACTION, LOYALTY_PROMOTION, UNIQUE, SECONDARY, LOOKUP_ONLY, NEW_ONLY
4964
5222
  # field_names: ["name"],
4965
5223
  # },
4966
5224
  # ],
@@ -4988,7 +5246,7 @@ module Aws::CustomerProfiles
4988
5246
  # resp.keys #=> Hash
4989
5247
  # resp.keys["name"] #=> Array
4990
5248
  # resp.keys["name"][0].standard_identifiers #=> Array
4991
- # resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
5249
+ # resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "ORDER", "COMMUNICATION_RECORD", "AIR_PREFERENCE", "HOTEL_PREFERENCE", "AIR_BOOKING", "AIR_SEGMENT", "HOTEL_RESERVATION", "HOTEL_STAY_REVENUE", "LOYALTY", "LOYALTY_TRANSACTION", "LOYALTY_PROMOTION", "UNIQUE", "SECONDARY", "LOOKUP_ONLY", "NEW_ONLY"
4992
5250
  # resp.keys["name"][0].field_names #=> Array
4993
5251
  # resp.keys["name"][0].field_names[0] #=> String
4994
5252
  # resp.created_at #=> Time
@@ -5268,6 +5526,9 @@ module Aws::CustomerProfiles
5268
5526
  # * {Types::UpdateCalculatedAttributeDefinitionResponse#statistic #statistic} => String
5269
5527
  # * {Types::UpdateCalculatedAttributeDefinitionResponse#conditions #conditions} => Types::Conditions
5270
5528
  # * {Types::UpdateCalculatedAttributeDefinitionResponse#attribute_details #attribute_details} => Types::AttributeDetails
5529
+ # * {Types::UpdateCalculatedAttributeDefinitionResponse#use_historical_data #use_historical_data} => Boolean
5530
+ # * {Types::UpdateCalculatedAttributeDefinitionResponse#status #status} => String
5531
+ # * {Types::UpdateCalculatedAttributeDefinitionResponse#readiness #readiness} => Types::Readiness
5271
5532
  # * {Types::UpdateCalculatedAttributeDefinitionResponse#tags #tags} => Hash&lt;String,String&gt;
5272
5533
  #
5273
5534
  # @example Request syntax with placeholder values
@@ -5279,8 +5540,14 @@ module Aws::CustomerProfiles
5279
5540
  # description: "sensitiveText",
5280
5541
  # conditions: {
5281
5542
  # range: {
5282
- # value: 1, # required
5283
- # unit: "DAYS", # required, accepts DAYS
5543
+ # value: 1,
5544
+ # unit: "DAYS", # accepts DAYS
5545
+ # value_range: {
5546
+ # start: 1, # required
5547
+ # end: 1, # required
5548
+ # },
5549
+ # timestamp_source: "string1To255",
5550
+ # timestamp_format: "string1To255",
5284
5551
  # },
5285
5552
  # object_count: 1,
5286
5553
  # threshold: {
@@ -5300,12 +5567,20 @@ module Aws::CustomerProfiles
5300
5567
  # resp.statistic #=> String, one of "FIRST_OCCURRENCE", "LAST_OCCURRENCE", "COUNT", "SUM", "MINIMUM", "MAXIMUM", "AVERAGE", "MAX_OCCURRENCE"
5301
5568
  # resp.conditions.range.value #=> Integer
5302
5569
  # resp.conditions.range.unit #=> String, one of "DAYS"
5570
+ # resp.conditions.range.value_range.start #=> Integer
5571
+ # resp.conditions.range.value_range.end #=> Integer
5572
+ # resp.conditions.range.timestamp_source #=> String
5573
+ # resp.conditions.range.timestamp_format #=> String
5303
5574
  # resp.conditions.object_count #=> Integer
5304
5575
  # resp.conditions.threshold.value #=> String
5305
5576
  # resp.conditions.threshold.operator #=> String, one of "EQUAL_TO", "GREATER_THAN", "LESS_THAN", "NOT_EQUAL_TO"
5306
5577
  # resp.attribute_details.attributes #=> Array
5307
5578
  # resp.attribute_details.attributes[0].name #=> String
5308
5579
  # resp.attribute_details.expression #=> String
5580
+ # resp.use_historical_data #=> Boolean
5581
+ # resp.status #=> String, one of "PREPARING", "IN_PROGRESS", "COMPLETED", "FAILED"
5582
+ # resp.readiness.progress_percentage #=> Integer
5583
+ # resp.readiness.message #=> String
5309
5584
  # resp.tags #=> Hash
5310
5585
  # resp.tags["TagKey"] #=> String
5311
5586
  #
@@ -5515,6 +5790,83 @@ module Aws::CustomerProfiles
5515
5790
  req.send_request(options)
5516
5791
  end
5517
5792
 
5793
+ # Updates the layout used to view data for a specific domain. This API
5794
+ # can only be invoked from the Amazon Connect admin website.
5795
+ #
5796
+ # @option params [required, String] :domain_name
5797
+ # The unique name of the domain.
5798
+ #
5799
+ # @option params [required, String] :layout_definition_name
5800
+ # The unique name of the layout.
5801
+ #
5802
+ # @option params [String] :description
5803
+ # The description of the layout
5804
+ #
5805
+ # @option params [String] :display_name
5806
+ # The display name of the layout
5807
+ #
5808
+ # @option params [Boolean] :is_default
5809
+ # If set to true for a layout, this layout will be used by default to
5810
+ # view data. If set to false, then the layout will not be used by
5811
+ # default, but it can be used to view data by explicitly selecting it in
5812
+ # the console.
5813
+ #
5814
+ # @option params [String] :layout_type
5815
+ # The type of layout that can be used to view data under a Customer
5816
+ # Profiles domain.
5817
+ #
5818
+ # @option params [String] :layout
5819
+ # A customizable layout that can be used to view data under a Customer
5820
+ # Profiles domain.
5821
+ #
5822
+ # @return [Types::UpdateDomainLayoutResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5823
+ #
5824
+ # * {Types::UpdateDomainLayoutResponse#layout_definition_name #layout_definition_name} => String
5825
+ # * {Types::UpdateDomainLayoutResponse#description #description} => String
5826
+ # * {Types::UpdateDomainLayoutResponse#display_name #display_name} => String
5827
+ # * {Types::UpdateDomainLayoutResponse#is_default #is_default} => Boolean
5828
+ # * {Types::UpdateDomainLayoutResponse#layout_type #layout_type} => String
5829
+ # * {Types::UpdateDomainLayoutResponse#layout #layout} => String
5830
+ # * {Types::UpdateDomainLayoutResponse#version #version} => String
5831
+ # * {Types::UpdateDomainLayoutResponse#created_at #created_at} => Time
5832
+ # * {Types::UpdateDomainLayoutResponse#last_updated_at #last_updated_at} => Time
5833
+ # * {Types::UpdateDomainLayoutResponse#tags #tags} => Hash&lt;String,String&gt;
5834
+ #
5835
+ # @example Request syntax with placeholder values
5836
+ #
5837
+ # resp = client.update_domain_layout({
5838
+ # domain_name: "name", # required
5839
+ # layout_definition_name: "name", # required
5840
+ # description: "sensitiveText",
5841
+ # display_name: "displayName",
5842
+ # is_default: false,
5843
+ # layout_type: "PROFILE_EXPLORER", # accepts PROFILE_EXPLORER
5844
+ # layout: "sensitiveString1To2000000",
5845
+ # })
5846
+ #
5847
+ # @example Response structure
5848
+ #
5849
+ # resp.layout_definition_name #=> String
5850
+ # resp.description #=> String
5851
+ # resp.display_name #=> String
5852
+ # resp.is_default #=> Boolean
5853
+ # resp.layout_type #=> String, one of "PROFILE_EXPLORER"
5854
+ # resp.layout #=> String
5855
+ # resp.version #=> String
5856
+ # resp.created_at #=> Time
5857
+ # resp.last_updated_at #=> Time
5858
+ # resp.tags #=> Hash
5859
+ # resp.tags["TagKey"] #=> String
5860
+ #
5861
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/UpdateDomainLayout AWS API Documentation
5862
+ #
5863
+ # @overload update_domain_layout(params = {})
5864
+ # @param [Hash] params ({})
5865
+ def update_domain_layout(params = {}, options = {})
5866
+ req = build_request(:update_domain_layout, params)
5867
+ req.send_request(options)
5868
+ end
5869
+
5518
5870
  # Update the properties of an Event Trigger.
5519
5871
  #
5520
5872
  # @option params [required, String] :domain_name
@@ -5644,7 +5996,7 @@ module Aws::CustomerProfiles
5644
5996
  # Any additional information relevant to the customer’s profile.
5645
5997
  #
5646
5998
  # @option params [String] :account_number
5647
- # An account number that you have given to the customer.
5999
+ # An account number that you have assigned to the customer.
5648
6000
  #
5649
6001
  # @option params [String] :party_type
5650
6002
  # The type of profile used to describe the customer.
@@ -5823,7 +6175,7 @@ module Aws::CustomerProfiles
5823
6175
  tracer: tracer
5824
6176
  )
5825
6177
  context[:gem_name] = 'aws-sdk-customerprofiles'
5826
- context[:gem_version] = '1.63.0'
6178
+ context[:gem_version] = '1.65.0'
5827
6179
  Seahorse::Client::Request.new(handlers, context)
5828
6180
  end
5829
6181