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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +364 -12
- data/lib/aws-sdk-customerprofiles/client_api.rb +206 -2
- data/lib/aws-sdk-customerprofiles/types.rb +605 -7
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +123 -5
- data/sig/types.rbs +138 -1
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -135,6 +135,9 @@ module Aws
|
|
135
135
|
def statistic: () -> ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
136
136
|
def created_at: () -> ::Time
|
137
137
|
def last_updated_at: () -> ::Time
|
138
|
+
def use_historical_data: () -> bool
|
139
|
+
def status: () -> ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
140
|
+
def readiness: () -> Types::Readiness
|
138
141
|
def tags: () -> ::Hash[::String, ::String]
|
139
142
|
end
|
140
143
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_calculated_attribute_definition-instance_method
|
@@ -153,8 +156,14 @@ module Aws
|
|
153
156
|
},
|
154
157
|
?conditions: {
|
155
158
|
range: {
|
156
|
-
value: ::Integer
|
157
|
-
unit: ("DAYS")
|
159
|
+
value: ::Integer?,
|
160
|
+
unit: ("DAYS")?,
|
161
|
+
value_range: {
|
162
|
+
start: ::Integer,
|
163
|
+
end: ::Integer
|
164
|
+
}?,
|
165
|
+
timestamp_source: ::String?,
|
166
|
+
timestamp_format: ::String?
|
158
167
|
}?,
|
159
168
|
object_count: ::Integer?,
|
160
169
|
threshold: {
|
@@ -179,6 +188,7 @@ module Aws
|
|
179
188
|
]
|
180
189
|
},
|
181
190
|
statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE"),
|
191
|
+
?use_historical_data: bool,
|
182
192
|
?tags: Hash[::String, ::String]
|
183
193
|
) -> _CreateCalculatedAttributeDefinitionResponseSuccess
|
184
194
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCalculatedAttributeDefinitionResponseSuccess
|
@@ -257,6 +267,32 @@ module Aws
|
|
257
267
|
) -> _CreateDomainResponseSuccess
|
258
268
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
|
259
269
|
|
270
|
+
interface _CreateDomainLayoutResponseSuccess
|
271
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainLayoutResponse]
|
272
|
+
def layout_definition_name: () -> ::String
|
273
|
+
def description: () -> ::String
|
274
|
+
def display_name: () -> ::String
|
275
|
+
def is_default: () -> bool
|
276
|
+
def layout_type: () -> ("PROFILE_EXPLORER")
|
277
|
+
def layout: () -> ::String
|
278
|
+
def version: () -> ::String
|
279
|
+
def tags: () -> ::Hash[::String, ::String]
|
280
|
+
def created_at: () -> ::Time
|
281
|
+
def last_updated_at: () -> ::Time
|
282
|
+
end
|
283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_domain_layout-instance_method
|
284
|
+
def create_domain_layout: (
|
285
|
+
domain_name: ::String,
|
286
|
+
layout_definition_name: ::String,
|
287
|
+
description: ::String,
|
288
|
+
display_name: ::String,
|
289
|
+
?is_default: bool,
|
290
|
+
layout_type: ("PROFILE_EXPLORER"),
|
291
|
+
layout: ::String,
|
292
|
+
?tags: Hash[::String, ::String]
|
293
|
+
) -> _CreateDomainLayoutResponseSuccess
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainLayoutResponseSuccess
|
295
|
+
|
260
296
|
interface _CreateEventStreamResponseSuccess
|
261
297
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventStreamResponse]
|
262
298
|
def event_stream_arn: () -> ::String
|
@@ -957,6 +993,17 @@ module Aws
|
|
957
993
|
) -> _DeleteDomainResponseSuccess
|
958
994
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainResponseSuccess
|
959
995
|
|
996
|
+
interface _DeleteDomainLayoutResponseSuccess
|
997
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainLayoutResponse]
|
998
|
+
def message: () -> ::String
|
999
|
+
end
|
1000
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#delete_domain_layout-instance_method
|
1001
|
+
def delete_domain_layout: (
|
1002
|
+
domain_name: ::String,
|
1003
|
+
layout_definition_name: ::String
|
1004
|
+
) -> _DeleteDomainLayoutResponseSuccess
|
1005
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainLayoutResponseSuccess
|
1006
|
+
|
960
1007
|
interface _DeleteEventStreamResponseSuccess
|
961
1008
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventStreamResponse]
|
962
1009
|
end
|
@@ -1103,6 +1150,9 @@ module Aws
|
|
1103
1150
|
def filter: () -> Types::Filter
|
1104
1151
|
def conditions: () -> Types::Conditions
|
1105
1152
|
def attribute_details: () -> Types::AttributeDetails
|
1153
|
+
def use_historical_data: () -> bool
|
1154
|
+
def status: () -> ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
1155
|
+
def readiness: () -> Types::Readiness
|
1106
1156
|
def tags: () -> ::Hash[::String, ::String]
|
1107
1157
|
end
|
1108
1158
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_calculated_attribute_definition-instance_method
|
@@ -1118,6 +1168,7 @@ module Aws
|
|
1118
1168
|
def display_name: () -> ::String
|
1119
1169
|
def is_data_partial: () -> ::String
|
1120
1170
|
def value: () -> ::String
|
1171
|
+
def last_object_timestamp: () -> ::Time
|
1121
1172
|
end
|
1122
1173
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_calculated_attribute_for_profile-instance_method
|
1123
1174
|
def get_calculated_attribute_for_profile: (
|
@@ -1146,6 +1197,26 @@ module Aws
|
|
1146
1197
|
) -> _GetDomainResponseSuccess
|
1147
1198
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainResponseSuccess
|
1148
1199
|
|
1200
|
+
interface _GetDomainLayoutResponseSuccess
|
1201
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainLayoutResponse]
|
1202
|
+
def layout_definition_name: () -> ::String
|
1203
|
+
def description: () -> ::String
|
1204
|
+
def display_name: () -> ::String
|
1205
|
+
def is_default: () -> bool
|
1206
|
+
def layout_type: () -> ("PROFILE_EXPLORER")
|
1207
|
+
def layout: () -> ::String
|
1208
|
+
def version: () -> ::String
|
1209
|
+
def created_at: () -> ::Time
|
1210
|
+
def last_updated_at: () -> ::Time
|
1211
|
+
def tags: () -> ::Hash[::String, ::String]
|
1212
|
+
end
|
1213
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_domain_layout-instance_method
|
1214
|
+
def get_domain_layout: (
|
1215
|
+
domain_name: ::String,
|
1216
|
+
layout_definition_name: ::String
|
1217
|
+
) -> _GetDomainLayoutResponseSuccess
|
1218
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainLayoutResponseSuccess
|
1219
|
+
|
1149
1220
|
interface _GetEventStreamResponseSuccess
|
1150
1221
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetEventStreamResponse]
|
1151
1222
|
def domain_name: () -> ::String
|
@@ -1439,6 +1510,19 @@ module Aws
|
|
1439
1510
|
) -> _ListCalculatedAttributesForProfileResponseSuccess
|
1440
1511
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCalculatedAttributesForProfileResponseSuccess
|
1441
1512
|
|
1513
|
+
interface _ListDomainLayoutsResponseSuccess
|
1514
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainLayoutsResponse]
|
1515
|
+
def items: () -> ::Array[Types::LayoutItem]
|
1516
|
+
def next_token: () -> ::String
|
1517
|
+
end
|
1518
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_domain_layouts-instance_method
|
1519
|
+
def list_domain_layouts: (
|
1520
|
+
domain_name: ::String,
|
1521
|
+
?next_token: ::String,
|
1522
|
+
?max_results: ::Integer
|
1523
|
+
) -> _ListDomainLayoutsResponseSuccess
|
1524
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainLayoutsResponseSuccess
|
1525
|
+
|
1442
1526
|
interface _ListDomainsResponseSuccess
|
1443
1527
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsResponse]
|
1444
1528
|
def items: () -> ::Array[Types::ListDomainItem]
|
@@ -1798,7 +1882,7 @@ module Aws
|
|
1798
1882
|
}],
|
1799
1883
|
?keys: Hash[::String, Array[
|
1800
1884
|
{
|
1801
|
-
standard_identifiers: Array[("PROFILE" | "ASSET" | "CASE" | "ORDER" | "COMMUNICATION_RECORD" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY")]?,
|
1885
|
+
standard_identifiers: Array[("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")]?,
|
1802
1886
|
field_names: Array[::String]?
|
1803
1887
|
},
|
1804
1888
|
]],
|
@@ -1858,6 +1942,9 @@ module Aws
|
|
1858
1942
|
def statistic: () -> ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
1859
1943
|
def conditions: () -> Types::Conditions
|
1860
1944
|
def attribute_details: () -> Types::AttributeDetails
|
1945
|
+
def use_historical_data: () -> bool
|
1946
|
+
def status: () -> ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
1947
|
+
def readiness: () -> Types::Readiness
|
1861
1948
|
def tags: () -> ::Hash[::String, ::String]
|
1862
1949
|
end
|
1863
1950
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#update_calculated_attribute_definition-instance_method
|
@@ -1868,8 +1955,14 @@ module Aws
|
|
1868
1955
|
?description: ::String,
|
1869
1956
|
?conditions: {
|
1870
1957
|
range: {
|
1871
|
-
value: ::Integer
|
1872
|
-
unit: ("DAYS")
|
1958
|
+
value: ::Integer?,
|
1959
|
+
unit: ("DAYS")?,
|
1960
|
+
value_range: {
|
1961
|
+
start: ::Integer,
|
1962
|
+
end: ::Integer
|
1963
|
+
}?,
|
1964
|
+
timestamp_source: ::String?,
|
1965
|
+
timestamp_format: ::String?
|
1873
1966
|
}?,
|
1874
1967
|
object_count: ::Integer?,
|
1875
1968
|
threshold: {
|
@@ -1954,6 +2047,31 @@ module Aws
|
|
1954
2047
|
) -> _UpdateDomainResponseSuccess
|
1955
2048
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
|
1956
2049
|
|
2050
|
+
interface _UpdateDomainLayoutResponseSuccess
|
2051
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainLayoutResponse]
|
2052
|
+
def layout_definition_name: () -> ::String
|
2053
|
+
def description: () -> ::String
|
2054
|
+
def display_name: () -> ::String
|
2055
|
+
def is_default: () -> bool
|
2056
|
+
def layout_type: () -> ("PROFILE_EXPLORER")
|
2057
|
+
def layout: () -> ::String
|
2058
|
+
def version: () -> ::String
|
2059
|
+
def created_at: () -> ::Time
|
2060
|
+
def last_updated_at: () -> ::Time
|
2061
|
+
def tags: () -> ::Hash[::String, ::String]
|
2062
|
+
end
|
2063
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#update_domain_layout-instance_method
|
2064
|
+
def update_domain_layout: (
|
2065
|
+
domain_name: ::String,
|
2066
|
+
layout_definition_name: ::String,
|
2067
|
+
?description: ::String,
|
2068
|
+
?display_name: ::String,
|
2069
|
+
?is_default: bool,
|
2070
|
+
?layout_type: ("PROFILE_EXPLORER"),
|
2071
|
+
?layout: ::String
|
2072
|
+
) -> _UpdateDomainLayoutResponseSuccess
|
2073
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainLayoutResponseSuccess
|
2074
|
+
|
1957
2075
|
interface _UpdateEventTriggerResponseSuccess
|
1958
2076
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventTriggerResponse]
|
1959
2077
|
def event_trigger_name: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -192,6 +192,7 @@ module Aws::CustomerProfiles
|
|
192
192
|
attr_accessor is_data_partial: ::String
|
193
193
|
attr_accessor profile_id: ::String
|
194
194
|
attr_accessor value: ::String
|
195
|
+
attr_accessor last_object_timestamp: ::Time
|
195
196
|
SENSITIVE: []
|
196
197
|
end
|
197
198
|
|
@@ -236,6 +237,7 @@ module Aws::CustomerProfiles
|
|
236
237
|
attr_accessor conditions: Types::Conditions
|
237
238
|
attr_accessor filter: Types::Filter
|
238
239
|
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
240
|
+
attr_accessor use_historical_data: bool
|
239
241
|
attr_accessor tags: ::Hash[::String, ::String]
|
240
242
|
SENSITIVE: [:description, :attribute_details, :conditions, :statistic]
|
241
243
|
end
|
@@ -250,10 +252,39 @@ module Aws::CustomerProfiles
|
|
250
252
|
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
251
253
|
attr_accessor created_at: ::Time
|
252
254
|
attr_accessor last_updated_at: ::Time
|
255
|
+
attr_accessor use_historical_data: bool
|
256
|
+
attr_accessor status: ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
257
|
+
attr_accessor readiness: Types::Readiness
|
253
258
|
attr_accessor tags: ::Hash[::String, ::String]
|
254
259
|
SENSITIVE: [:description, :attribute_details, :conditions, :statistic]
|
255
260
|
end
|
256
261
|
|
262
|
+
class CreateDomainLayoutRequest
|
263
|
+
attr_accessor domain_name: ::String
|
264
|
+
attr_accessor layout_definition_name: ::String
|
265
|
+
attr_accessor description: ::String
|
266
|
+
attr_accessor display_name: ::String
|
267
|
+
attr_accessor is_default: bool
|
268
|
+
attr_accessor layout_type: ("PROFILE_EXPLORER")
|
269
|
+
attr_accessor layout: ::String
|
270
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
271
|
+
SENSITIVE: [:description, :layout]
|
272
|
+
end
|
273
|
+
|
274
|
+
class CreateDomainLayoutResponse
|
275
|
+
attr_accessor layout_definition_name: ::String
|
276
|
+
attr_accessor description: ::String
|
277
|
+
attr_accessor display_name: ::String
|
278
|
+
attr_accessor is_default: bool
|
279
|
+
attr_accessor layout_type: ("PROFILE_EXPLORER")
|
280
|
+
attr_accessor layout: ::String
|
281
|
+
attr_accessor version: ::String
|
282
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
283
|
+
attr_accessor created_at: ::Time
|
284
|
+
attr_accessor last_updated_at: ::Time
|
285
|
+
SENSITIVE: [:description, :layout]
|
286
|
+
end
|
287
|
+
|
257
288
|
class CreateDomainRequest
|
258
289
|
attr_accessor domain_name: ::String
|
259
290
|
attr_accessor default_expiration_days: ::Integer
|
@@ -429,6 +460,17 @@ module Aws::CustomerProfiles
|
|
429
460
|
class DeleteCalculatedAttributeDefinitionResponse < Aws::EmptyStructure
|
430
461
|
end
|
431
462
|
|
463
|
+
class DeleteDomainLayoutRequest
|
464
|
+
attr_accessor domain_name: ::String
|
465
|
+
attr_accessor layout_definition_name: ::String
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class DeleteDomainLayoutResponse
|
470
|
+
attr_accessor message: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
432
474
|
class DeleteDomainRequest
|
433
475
|
attr_accessor domain_name: ::String
|
434
476
|
SENSITIVE: []
|
@@ -743,6 +785,9 @@ module Aws::CustomerProfiles
|
|
743
785
|
attr_accessor filter: Types::Filter
|
744
786
|
attr_accessor conditions: Types::Conditions
|
745
787
|
attr_accessor attribute_details: Types::AttributeDetails
|
788
|
+
attr_accessor use_historical_data: bool
|
789
|
+
attr_accessor status: ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
790
|
+
attr_accessor readiness: Types::Readiness
|
746
791
|
attr_accessor tags: ::Hash[::String, ::String]
|
747
792
|
SENSITIVE: [:description, :statistic, :conditions, :attribute_details]
|
748
793
|
end
|
@@ -759,9 +804,30 @@ module Aws::CustomerProfiles
|
|
759
804
|
attr_accessor display_name: ::String
|
760
805
|
attr_accessor is_data_partial: ::String
|
761
806
|
attr_accessor value: ::String
|
807
|
+
attr_accessor last_object_timestamp: ::Time
|
762
808
|
SENSITIVE: []
|
763
809
|
end
|
764
810
|
|
811
|
+
class GetDomainLayoutRequest
|
812
|
+
attr_accessor domain_name: ::String
|
813
|
+
attr_accessor layout_definition_name: ::String
|
814
|
+
SENSITIVE: []
|
815
|
+
end
|
816
|
+
|
817
|
+
class GetDomainLayoutResponse
|
818
|
+
attr_accessor layout_definition_name: ::String
|
819
|
+
attr_accessor description: ::String
|
820
|
+
attr_accessor display_name: ::String
|
821
|
+
attr_accessor is_default: bool
|
822
|
+
attr_accessor layout_type: ("PROFILE_EXPLORER")
|
823
|
+
attr_accessor layout: ::String
|
824
|
+
attr_accessor version: ::String
|
825
|
+
attr_accessor created_at: ::Time
|
826
|
+
attr_accessor last_updated_at: ::Time
|
827
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
828
|
+
SENSITIVE: [:description, :layout]
|
829
|
+
end
|
830
|
+
|
765
831
|
class GetDomainRequest
|
766
832
|
attr_accessor domain_name: ::String
|
767
833
|
SENSITIVE: []
|
@@ -1081,6 +1147,18 @@ module Aws::CustomerProfiles
|
|
1081
1147
|
SENSITIVE: []
|
1082
1148
|
end
|
1083
1149
|
|
1150
|
+
class LayoutItem
|
1151
|
+
attr_accessor layout_definition_name: ::String
|
1152
|
+
attr_accessor description: ::String
|
1153
|
+
attr_accessor display_name: ::String
|
1154
|
+
attr_accessor is_default: bool
|
1155
|
+
attr_accessor layout_type: ("PROFILE_EXPLORER")
|
1156
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1157
|
+
attr_accessor created_at: ::Time
|
1158
|
+
attr_accessor last_updated_at: ::Time
|
1159
|
+
SENSITIVE: [:description]
|
1160
|
+
end
|
1161
|
+
|
1084
1162
|
class ListAccountIntegrationsRequest
|
1085
1163
|
attr_accessor uri: ::String
|
1086
1164
|
attr_accessor next_token: ::String
|
@@ -1101,6 +1179,8 @@ module Aws::CustomerProfiles
|
|
1101
1179
|
attr_accessor description: ::String
|
1102
1180
|
attr_accessor created_at: ::Time
|
1103
1181
|
attr_accessor last_updated_at: ::Time
|
1182
|
+
attr_accessor use_historical_data: bool
|
1183
|
+
attr_accessor status: ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
1104
1184
|
attr_accessor tags: ::Hash[::String, ::String]
|
1105
1185
|
SENSITIVE: [:description]
|
1106
1186
|
end
|
@@ -1123,6 +1203,7 @@ module Aws::CustomerProfiles
|
|
1123
1203
|
attr_accessor display_name: ::String
|
1124
1204
|
attr_accessor is_data_partial: ::String
|
1125
1205
|
attr_accessor value: ::String
|
1206
|
+
attr_accessor last_object_timestamp: ::Time
|
1126
1207
|
SENSITIVE: []
|
1127
1208
|
end
|
1128
1209
|
|
@@ -1148,6 +1229,19 @@ module Aws::CustomerProfiles
|
|
1148
1229
|
SENSITIVE: []
|
1149
1230
|
end
|
1150
1231
|
|
1232
|
+
class ListDomainLayoutsRequest
|
1233
|
+
attr_accessor domain_name: ::String
|
1234
|
+
attr_accessor next_token: ::String
|
1235
|
+
attr_accessor max_results: ::Integer
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class ListDomainLayoutsResponse
|
1240
|
+
attr_accessor items: ::Array[Types::LayoutItem]
|
1241
|
+
attr_accessor next_token: ::String
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1151
1245
|
class ListDomainsRequest
|
1152
1246
|
attr_accessor next_token: ::String
|
1153
1247
|
attr_accessor max_results: ::Integer
|
@@ -1445,7 +1539,7 @@ module Aws::CustomerProfiles
|
|
1445
1539
|
end
|
1446
1540
|
|
1447
1541
|
class ObjectTypeKey
|
1448
|
-
attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "ORDER" | "COMMUNICATION_RECORD" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY")]
|
1542
|
+
attr_accessor standard_identifiers: ::Array[("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")]
|
1449
1543
|
attr_accessor field_names: ::Array[::String]
|
1450
1544
|
SENSITIVE: []
|
1451
1545
|
end
|
@@ -1622,6 +1716,9 @@ module Aws::CustomerProfiles
|
|
1622
1716
|
class Range
|
1623
1717
|
attr_accessor value: ::Integer
|
1624
1718
|
attr_accessor unit: ("DAYS")
|
1719
|
+
attr_accessor value_range: Types::ValueRange
|
1720
|
+
attr_accessor timestamp_source: ::String
|
1721
|
+
attr_accessor timestamp_format: ::String
|
1625
1722
|
SENSITIVE: []
|
1626
1723
|
end
|
1627
1724
|
|
@@ -1632,6 +1729,12 @@ module Aws::CustomerProfiles
|
|
1632
1729
|
SENSITIVE: []
|
1633
1730
|
end
|
1634
1731
|
|
1732
|
+
class Readiness
|
1733
|
+
attr_accessor progress_percentage: ::Integer
|
1734
|
+
attr_accessor message: ::String
|
1735
|
+
SENSITIVE: []
|
1736
|
+
end
|
1737
|
+
|
1635
1738
|
class ResourceNotFoundException
|
1636
1739
|
attr_accessor message: ::String
|
1637
1740
|
SENSITIVE: []
|
@@ -1843,10 +1946,38 @@ module Aws::CustomerProfiles
|
|
1843
1946
|
attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
|
1844
1947
|
attr_accessor conditions: Types::Conditions
|
1845
1948
|
attr_accessor attribute_details: Types::AttributeDetails
|
1949
|
+
attr_accessor use_historical_data: bool
|
1950
|
+
attr_accessor status: ("PREPARING" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
|
1951
|
+
attr_accessor readiness: Types::Readiness
|
1846
1952
|
attr_accessor tags: ::Hash[::String, ::String]
|
1847
1953
|
SENSITIVE: [:description, :statistic, :conditions, :attribute_details]
|
1848
1954
|
end
|
1849
1955
|
|
1956
|
+
class UpdateDomainLayoutRequest
|
1957
|
+
attr_accessor domain_name: ::String
|
1958
|
+
attr_accessor layout_definition_name: ::String
|
1959
|
+
attr_accessor description: ::String
|
1960
|
+
attr_accessor display_name: ::String
|
1961
|
+
attr_accessor is_default: bool
|
1962
|
+
attr_accessor layout_type: ("PROFILE_EXPLORER")
|
1963
|
+
attr_accessor layout: ::String
|
1964
|
+
SENSITIVE: [:description, :layout]
|
1965
|
+
end
|
1966
|
+
|
1967
|
+
class UpdateDomainLayoutResponse
|
1968
|
+
attr_accessor layout_definition_name: ::String
|
1969
|
+
attr_accessor description: ::String
|
1970
|
+
attr_accessor display_name: ::String
|
1971
|
+
attr_accessor is_default: bool
|
1972
|
+
attr_accessor layout_type: ("PROFILE_EXPLORER")
|
1973
|
+
attr_accessor layout: ::String
|
1974
|
+
attr_accessor version: ::String
|
1975
|
+
attr_accessor created_at: ::Time
|
1976
|
+
attr_accessor last_updated_at: ::Time
|
1977
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1978
|
+
SENSITIVE: [:description, :layout]
|
1979
|
+
end
|
1980
|
+
|
1850
1981
|
class UpdateDomainRequest
|
1851
1982
|
attr_accessor domain_name: ::String
|
1852
1983
|
attr_accessor default_expiration_days: ::Integer
|
@@ -1929,6 +2060,12 @@ module Aws::CustomerProfiles
|
|
1929
2060
|
SENSITIVE: []
|
1930
2061
|
end
|
1931
2062
|
|
2063
|
+
class ValueRange
|
2064
|
+
attr_accessor start: ::Integer
|
2065
|
+
attr_accessor end: ::Integer
|
2066
|
+
SENSITIVE: []
|
2067
|
+
end
|
2068
|
+
|
1932
2069
|
class WorkflowAttributes
|
1933
2070
|
attr_accessor appflow_integration: Types::AppflowIntegrationWorkflowAttributes
|
1934
2071
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.65.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: '2.
|
86
|
+
version: '2.7'
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - ">="
|