aws-sdk-customerprofiles 1.79.0 → 1.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +18 -6
- data/lib/aws-sdk-customerprofiles/client_api.rb +4 -0
- data/lib/aws-sdk-customerprofiles/types.rb +32 -0
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 395839ef64c7142248593d5daec9b4a559dbaf9587c3b1fdd5065b42afd7fbbe
|
|
4
|
+
data.tar.gz: 1e6c7af27a2c0c13b13ca40a8ed32eb68994e5a0fbf7a8e4c1450101d4d9616a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b7a1713a389955e2267a57d9e6a93ff9330611832355335f4bb0b7574165cc1d278bdc0a55bf7833ac37b13e45a75234e3403597478d98b2e7e815e2a667d16
|
|
7
|
+
data.tar.gz: 258955cdddc5787e5539dd41ef012206ea8228f4d4b3d96eaa4a6b0afb8b18696cf80c630bf38f32ef5560aac41e301b0abe84702f44a14e17dfb8d7d2f5db76
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.80.0 (2026-02-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release introduces an optional SourcePriority parameter to the ProfileObjectType APIs, allowing you to control the precedence of object types when ingesting data from multiple sources. Additionally, WebAnalytics and Device have been added as new StandardIdentifier values.
|
|
8
|
+
|
|
4
9
|
1.79.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
|
@@ -2844,7 +2844,7 @@ module Aws::CustomerProfiles
|
|
|
2844
2844
|
# resp.detected_profile_object_types[0].keys #=> Hash
|
|
2845
2845
|
# resp.detected_profile_object_types[0].keys["name"] #=> Array
|
|
2846
2846
|
# resp.detected_profile_object_types[0].keys["name"][0].standard_identifiers #=> Array
|
|
2847
|
-
# 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"
|
|
2847
|
+
# resp.detected_profile_object_types[0].keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "DEVICE", "WEB_ANALYTICS", "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"
|
|
2848
2848
|
# resp.detected_profile_object_types[0].keys["name"][0].field_names #=> Array
|
|
2849
2849
|
# resp.detected_profile_object_types[0].keys["name"][0].field_names[0] #=> String
|
|
2850
2850
|
#
|
|
@@ -3696,6 +3696,7 @@ module Aws::CustomerProfiles
|
|
|
3696
3696
|
# * {Types::GetProfileObjectTypeResponse#source_last_updated_timestamp_format #source_last_updated_timestamp_format} => String
|
|
3697
3697
|
# * {Types::GetProfileObjectTypeResponse#max_available_profile_object_count #max_available_profile_object_count} => Integer
|
|
3698
3698
|
# * {Types::GetProfileObjectTypeResponse#max_profile_object_count #max_profile_object_count} => Integer
|
|
3699
|
+
# * {Types::GetProfileObjectTypeResponse#source_priority #source_priority} => Integer
|
|
3699
3700
|
# * {Types::GetProfileObjectTypeResponse#fields #fields} => Hash<String,Types::ObjectTypeField>
|
|
3700
3701
|
# * {Types::GetProfileObjectTypeResponse#keys #keys} => Hash<String,Array<Types::ObjectTypeKey>>
|
|
3701
3702
|
# * {Types::GetProfileObjectTypeResponse#created_at #created_at} => Time
|
|
@@ -3720,6 +3721,7 @@ module Aws::CustomerProfiles
|
|
|
3720
3721
|
# resp.source_last_updated_timestamp_format #=> String
|
|
3721
3722
|
# resp.max_available_profile_object_count #=> Integer
|
|
3722
3723
|
# resp.max_profile_object_count #=> Integer
|
|
3724
|
+
# resp.source_priority #=> Integer
|
|
3723
3725
|
# resp.fields #=> Hash
|
|
3724
3726
|
# resp.fields["fieldName"].source #=> String
|
|
3725
3727
|
# resp.fields["fieldName"].target #=> String
|
|
@@ -3727,7 +3729,7 @@ module Aws::CustomerProfiles
|
|
|
3727
3729
|
# resp.keys #=> Hash
|
|
3728
3730
|
# resp.keys["name"] #=> Array
|
|
3729
3731
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
|
3730
|
-
# 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"
|
|
3732
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "DEVICE", "WEB_ANALYTICS", "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"
|
|
3731
3733
|
# resp.keys["name"][0].field_names #=> Array
|
|
3732
3734
|
# resp.keys["name"][0].field_names[0] #=> String
|
|
3733
3735
|
# resp.created_at #=> Time
|
|
@@ -3785,7 +3787,7 @@ module Aws::CustomerProfiles
|
|
|
3785
3787
|
# resp.keys #=> Hash
|
|
3786
3788
|
# resp.keys["name"] #=> Array
|
|
3787
3789
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
|
3788
|
-
# 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"
|
|
3790
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "DEVICE", "WEB_ANALYTICS", "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"
|
|
3789
3791
|
# resp.keys["name"][0].field_names #=> Array
|
|
3790
3792
|
# resp.keys["name"][0].field_names[0] #=> String
|
|
3791
3793
|
#
|
|
@@ -5381,6 +5383,7 @@ module Aws::CustomerProfiles
|
|
|
5381
5383
|
# resp.items[0].last_updated_at #=> Time
|
|
5382
5384
|
# resp.items[0].max_profile_object_count #=> Integer
|
|
5383
5385
|
# resp.items[0].max_available_profile_object_count #=> Integer
|
|
5386
|
+
# resp.items[0].source_priority #=> Integer
|
|
5384
5387
|
# resp.items[0].tags #=> Hash
|
|
5385
5388
|
# resp.items[0].tags["TagKey"] #=> String
|
|
5386
5389
|
# resp.next_token #=> String
|
|
@@ -6241,6 +6244,12 @@ module Aws::CustomerProfiles
|
|
|
6241
6244
|
# @option params [Integer] :max_profile_object_count
|
|
6242
6245
|
# The amount of profile object max count assigned to the object type
|
|
6243
6246
|
#
|
|
6247
|
+
# @option params [Integer] :source_priority
|
|
6248
|
+
# An integer that determines the priority of this object type when data
|
|
6249
|
+
# from multiple sources is ingested. Lower values take priority. Object
|
|
6250
|
+
# types without a specified source priority default to the lowest
|
|
6251
|
+
# priority.
|
|
6252
|
+
#
|
|
6244
6253
|
# @option params [Hash<String,Types::ObjectTypeField>] :fields
|
|
6245
6254
|
# A map of the name and ObjectType field.
|
|
6246
6255
|
#
|
|
@@ -6261,6 +6270,7 @@ module Aws::CustomerProfiles
|
|
|
6261
6270
|
# * {Types::PutProfileObjectTypeResponse#source_last_updated_timestamp_format #source_last_updated_timestamp_format} => String
|
|
6262
6271
|
# * {Types::PutProfileObjectTypeResponse#max_profile_object_count #max_profile_object_count} => Integer
|
|
6263
6272
|
# * {Types::PutProfileObjectTypeResponse#max_available_profile_object_count #max_available_profile_object_count} => Integer
|
|
6273
|
+
# * {Types::PutProfileObjectTypeResponse#source_priority #source_priority} => Integer
|
|
6264
6274
|
# * {Types::PutProfileObjectTypeResponse#fields #fields} => Hash<String,Types::ObjectTypeField>
|
|
6265
6275
|
# * {Types::PutProfileObjectTypeResponse#keys #keys} => Hash<String,Array<Types::ObjectTypeKey>>
|
|
6266
6276
|
# * {Types::PutProfileObjectTypeResponse#created_at #created_at} => Time
|
|
@@ -6279,6 +6289,7 @@ module Aws::CustomerProfiles
|
|
|
6279
6289
|
# allow_profile_creation: false,
|
|
6280
6290
|
# source_last_updated_timestamp_format: "string1To255",
|
|
6281
6291
|
# max_profile_object_count: 1,
|
|
6292
|
+
# source_priority: 1,
|
|
6282
6293
|
# fields: {
|
|
6283
6294
|
# "fieldName" => {
|
|
6284
6295
|
# source: "text",
|
|
@@ -6289,7 +6300,7 @@ module Aws::CustomerProfiles
|
|
|
6289
6300
|
# keys: {
|
|
6290
6301
|
# "name" => [
|
|
6291
6302
|
# {
|
|
6292
|
-
# 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
|
|
6303
|
+
# standard_identifiers: ["PROFILE"], # accepts PROFILE, ASSET, CASE, DEVICE, WEB_ANALYTICS, 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
|
|
6293
6304
|
# field_names: ["name"],
|
|
6294
6305
|
# },
|
|
6295
6306
|
# ],
|
|
@@ -6310,6 +6321,7 @@ module Aws::CustomerProfiles
|
|
|
6310
6321
|
# resp.source_last_updated_timestamp_format #=> String
|
|
6311
6322
|
# resp.max_profile_object_count #=> Integer
|
|
6312
6323
|
# resp.max_available_profile_object_count #=> Integer
|
|
6324
|
+
# resp.source_priority #=> Integer
|
|
6313
6325
|
# resp.fields #=> Hash
|
|
6314
6326
|
# resp.fields["fieldName"].source #=> String
|
|
6315
6327
|
# resp.fields["fieldName"].target #=> String
|
|
@@ -6317,7 +6329,7 @@ module Aws::CustomerProfiles
|
|
|
6317
6329
|
# resp.keys #=> Hash
|
|
6318
6330
|
# resp.keys["name"] #=> Array
|
|
6319
6331
|
# resp.keys["name"][0].standard_identifiers #=> Array
|
|
6320
|
-
# 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"
|
|
6332
|
+
# resp.keys["name"][0].standard_identifiers[0] #=> String, one of "PROFILE", "ASSET", "CASE", "DEVICE", "WEB_ANALYTICS", "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"
|
|
6321
6333
|
# resp.keys["name"][0].field_names #=> Array
|
|
6322
6334
|
# resp.keys["name"][0].field_names[0] #=> String
|
|
6323
6335
|
# resp.created_at #=> Time
|
|
@@ -7452,7 +7464,7 @@ module Aws::CustomerProfiles
|
|
|
7452
7464
|
tracer: tracer
|
|
7453
7465
|
)
|
|
7454
7466
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
|
7455
|
-
context[:gem_version] = '1.
|
|
7467
|
+
context[:gem_version] = '1.80.0'
|
|
7456
7468
|
Seahorse::Client::Request.new(handlers, context)
|
|
7457
7469
|
end
|
|
7458
7470
|
|
|
@@ -1509,6 +1509,7 @@ module Aws::CustomerProfiles
|
|
|
1509
1509
|
GetProfileObjectTypeResponse.add_member(:source_last_updated_timestamp_format, Shapes::ShapeRef.new(shape: string1To255, location_name: "SourceLastUpdatedTimestampFormat"))
|
|
1510
1510
|
GetProfileObjectTypeResponse.add_member(:max_available_profile_object_count, Shapes::ShapeRef.new(shape: minSize0, location_name: "MaxAvailableProfileObjectCount"))
|
|
1511
1511
|
GetProfileObjectTypeResponse.add_member(:max_profile_object_count, Shapes::ShapeRef.new(shape: minSize1, location_name: "MaxProfileObjectCount"))
|
|
1512
|
+
GetProfileObjectTypeResponse.add_member(:source_priority, Shapes::ShapeRef.new(shape: minSize1, location_name: "SourcePriority"))
|
|
1512
1513
|
GetProfileObjectTypeResponse.add_member(:fields, Shapes::ShapeRef.new(shape: FieldMap, location_name: "Fields"))
|
|
1513
1514
|
GetProfileObjectTypeResponse.add_member(:keys, Shapes::ShapeRef.new(shape: KeyMap, location_name: "Keys"))
|
|
1514
1515
|
GetProfileObjectTypeResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreatedAt"))
|
|
@@ -1911,6 +1912,7 @@ module Aws::CustomerProfiles
|
|
|
1911
1912
|
ListProfileObjectTypeItem.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastUpdatedAt"))
|
|
1912
1913
|
ListProfileObjectTypeItem.add_member(:max_profile_object_count, Shapes::ShapeRef.new(shape: minSize1, location_name: "MaxProfileObjectCount"))
|
|
1913
1914
|
ListProfileObjectTypeItem.add_member(:max_available_profile_object_count, Shapes::ShapeRef.new(shape: minSize0, location_name: "MaxAvailableProfileObjectCount"))
|
|
1915
|
+
ListProfileObjectTypeItem.add_member(:source_priority, Shapes::ShapeRef.new(shape: minSize1, location_name: "SourcePriority"))
|
|
1914
1916
|
ListProfileObjectTypeItem.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
1915
1917
|
ListProfileObjectTypeItem.struct_class = Types::ListProfileObjectTypeItem
|
|
1916
1918
|
|
|
@@ -2280,6 +2282,7 @@ module Aws::CustomerProfiles
|
|
|
2280
2282
|
PutProfileObjectTypeRequest.add_member(:allow_profile_creation, Shapes::ShapeRef.new(shape: boolean, location_name: "AllowProfileCreation"))
|
|
2281
2283
|
PutProfileObjectTypeRequest.add_member(:source_last_updated_timestamp_format, Shapes::ShapeRef.new(shape: string1To255, location_name: "SourceLastUpdatedTimestampFormat"))
|
|
2282
2284
|
PutProfileObjectTypeRequest.add_member(:max_profile_object_count, Shapes::ShapeRef.new(shape: minSize1, location_name: "MaxProfileObjectCount"))
|
|
2285
|
+
PutProfileObjectTypeRequest.add_member(:source_priority, Shapes::ShapeRef.new(shape: minSize1, location_name: "SourcePriority"))
|
|
2283
2286
|
PutProfileObjectTypeRequest.add_member(:fields, Shapes::ShapeRef.new(shape: FieldMap, location_name: "Fields"))
|
|
2284
2287
|
PutProfileObjectTypeRequest.add_member(:keys, Shapes::ShapeRef.new(shape: KeyMap, location_name: "Keys"))
|
|
2285
2288
|
PutProfileObjectTypeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
@@ -2294,6 +2297,7 @@ module Aws::CustomerProfiles
|
|
|
2294
2297
|
PutProfileObjectTypeResponse.add_member(:source_last_updated_timestamp_format, Shapes::ShapeRef.new(shape: string1To255, location_name: "SourceLastUpdatedTimestampFormat"))
|
|
2295
2298
|
PutProfileObjectTypeResponse.add_member(:max_profile_object_count, Shapes::ShapeRef.new(shape: minSize1, location_name: "MaxProfileObjectCount"))
|
|
2296
2299
|
PutProfileObjectTypeResponse.add_member(:max_available_profile_object_count, Shapes::ShapeRef.new(shape: minSize0, location_name: "MaxAvailableProfileObjectCount"))
|
|
2300
|
+
PutProfileObjectTypeResponse.add_member(:source_priority, Shapes::ShapeRef.new(shape: minSize1, location_name: "SourcePriority"))
|
|
2297
2301
|
PutProfileObjectTypeResponse.add_member(:fields, Shapes::ShapeRef.new(shape: FieldMap, location_name: "Fields"))
|
|
2298
2302
|
PutProfileObjectTypeResponse.add_member(:keys, Shapes::ShapeRef.new(shape: KeyMap, location_name: "Keys"))
|
|
2299
2303
|
PutProfileObjectTypeResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: timestamp, location_name: "CreatedAt"))
|
|
@@ -4355,6 +4355,13 @@ module Aws::CustomerProfiles
|
|
|
4355
4355
|
# The amount of profile object max count assigned to the object type.
|
|
4356
4356
|
# @return [Integer]
|
|
4357
4357
|
#
|
|
4358
|
+
# @!attribute [rw] source_priority
|
|
4359
|
+
# An integer that determines the priority of this object type when
|
|
4360
|
+
# data from multiple sources is ingested. Lower values take priority.
|
|
4361
|
+
# Object types without a specified source priority default to the
|
|
4362
|
+
# lowest priority.
|
|
4363
|
+
# @return [Integer]
|
|
4364
|
+
#
|
|
4358
4365
|
# @!attribute [rw] fields
|
|
4359
4366
|
# A map of the name and ObjectType field.
|
|
4360
4367
|
# @return [Hash<String,Types::ObjectTypeField>]
|
|
@@ -4388,6 +4395,7 @@ module Aws::CustomerProfiles
|
|
|
4388
4395
|
:source_last_updated_timestamp_format,
|
|
4389
4396
|
:max_available_profile_object_count,
|
|
4390
4397
|
:max_profile_object_count,
|
|
4398
|
+
:source_priority,
|
|
4391
4399
|
:fields,
|
|
4392
4400
|
:keys,
|
|
4393
4401
|
:created_at,
|
|
@@ -6297,6 +6305,13 @@ module Aws::CustomerProfiles
|
|
|
6297
6305
|
# The amount of provisioned profile object max count available.
|
|
6298
6306
|
# @return [Integer]
|
|
6299
6307
|
#
|
|
6308
|
+
# @!attribute [rw] source_priority
|
|
6309
|
+
# An integer that determines the priority of this object type when
|
|
6310
|
+
# data from multiple sources is ingested. Lower values take priority.
|
|
6311
|
+
# Object types without a specified source priority default to the
|
|
6312
|
+
# lowest priority.
|
|
6313
|
+
# @return [Integer]
|
|
6314
|
+
#
|
|
6300
6315
|
# @!attribute [rw] tags
|
|
6301
6316
|
# The tags used to organize, track, or control access for this
|
|
6302
6317
|
# resource.
|
|
@@ -6311,6 +6326,7 @@ module Aws::CustomerProfiles
|
|
|
6311
6326
|
:last_updated_at,
|
|
6312
6327
|
:max_profile_object_count,
|
|
6313
6328
|
:max_available_profile_object_count,
|
|
6329
|
+
:source_priority,
|
|
6314
6330
|
:tags)
|
|
6315
6331
|
SENSITIVE = []
|
|
6316
6332
|
include Aws::Structure
|
|
@@ -7952,6 +7968,13 @@ module Aws::CustomerProfiles
|
|
|
7952
7968
|
# The amount of profile object max count assigned to the object type
|
|
7953
7969
|
# @return [Integer]
|
|
7954
7970
|
#
|
|
7971
|
+
# @!attribute [rw] source_priority
|
|
7972
|
+
# An integer that determines the priority of this object type when
|
|
7973
|
+
# data from multiple sources is ingested. Lower values take priority.
|
|
7974
|
+
# Object types without a specified source priority default to the
|
|
7975
|
+
# lowest priority.
|
|
7976
|
+
# @return [Integer]
|
|
7977
|
+
#
|
|
7955
7978
|
# @!attribute [rw] fields
|
|
7956
7979
|
# A map of the name and ObjectType field.
|
|
7957
7980
|
# @return [Hash<String,Types::ObjectTypeField>]
|
|
@@ -7977,6 +8000,7 @@ module Aws::CustomerProfiles
|
|
|
7977
8000
|
:allow_profile_creation,
|
|
7978
8001
|
:source_last_updated_timestamp_format,
|
|
7979
8002
|
:max_profile_object_count,
|
|
8003
|
+
:source_priority,
|
|
7980
8004
|
:fields,
|
|
7981
8005
|
:keys,
|
|
7982
8006
|
:tags)
|
|
@@ -8033,6 +8057,13 @@ module Aws::CustomerProfiles
|
|
|
8033
8057
|
# The amount of provisioned profile object max count available.
|
|
8034
8058
|
# @return [Integer]
|
|
8035
8059
|
#
|
|
8060
|
+
# @!attribute [rw] source_priority
|
|
8061
|
+
# An integer that determines the priority of this object type when
|
|
8062
|
+
# data from multiple sources is ingested. Lower values take priority.
|
|
8063
|
+
# Object types without a specified source priority default to the
|
|
8064
|
+
# lowest priority.
|
|
8065
|
+
# @return [Integer]
|
|
8066
|
+
#
|
|
8036
8067
|
# @!attribute [rw] fields
|
|
8037
8068
|
# A map of the name and ObjectType field.
|
|
8038
8069
|
# @return [Hash<String,Types::ObjectTypeField>]
|
|
@@ -8066,6 +8097,7 @@ module Aws::CustomerProfiles
|
|
|
8066
8097
|
:source_last_updated_timestamp_format,
|
|
8067
8098
|
:max_profile_object_count,
|
|
8068
8099
|
:max_available_profile_object_count,
|
|
8100
|
+
:source_priority,
|
|
8069
8101
|
:fields,
|
|
8070
8102
|
:keys,
|
|
8071
8103
|
:created_at,
|
data/sig/client.rbs
CHANGED
|
@@ -1470,6 +1470,7 @@ module Aws
|
|
|
1470
1470
|
def source_last_updated_timestamp_format: () -> ::String
|
|
1471
1471
|
def max_available_profile_object_count: () -> ::Integer
|
|
1472
1472
|
def max_profile_object_count: () -> ::Integer
|
|
1473
|
+
def source_priority: () -> ::Integer
|
|
1473
1474
|
def fields: () -> ::Hash[::String, Types::ObjectTypeField]
|
|
1474
1475
|
def keys: () -> ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
|
1475
1476
|
def created_at: () -> ::Time
|
|
@@ -2192,6 +2193,7 @@ module Aws
|
|
|
2192
2193
|
def source_last_updated_timestamp_format: () -> ::String
|
|
2193
2194
|
def max_profile_object_count: () -> ::Integer
|
|
2194
2195
|
def max_available_profile_object_count: () -> ::Integer
|
|
2196
|
+
def source_priority: () -> ::Integer
|
|
2195
2197
|
def fields: () -> ::Hash[::String, Types::ObjectTypeField]
|
|
2196
2198
|
def keys: () -> ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
|
2197
2199
|
def created_at: () -> ::Time
|
|
@@ -2209,6 +2211,7 @@ module Aws
|
|
|
2209
2211
|
?allow_profile_creation: bool,
|
|
2210
2212
|
?source_last_updated_timestamp_format: ::String,
|
|
2211
2213
|
?max_profile_object_count: ::Integer,
|
|
2214
|
+
?source_priority: ::Integer,
|
|
2212
2215
|
?fields: Hash[::String, {
|
|
2213
2216
|
source: ::String?,
|
|
2214
2217
|
target: ::String?,
|
|
@@ -2216,7 +2219,7 @@ module Aws
|
|
|
2216
2219
|
}],
|
|
2217
2220
|
?keys: Hash[::String, Array[
|
|
2218
2221
|
{
|
|
2219
|
-
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")]?,
|
|
2222
|
+
standard_identifiers: Array[("PROFILE" | "ASSET" | "CASE" | "DEVICE" | "WEB_ANALYTICS" | "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")]?,
|
|
2220
2223
|
field_names: Array[::String]?
|
|
2221
2224
|
},
|
|
2222
2225
|
]],
|
data/sig/types.rbs
CHANGED
|
@@ -1151,6 +1151,7 @@ module Aws::CustomerProfiles
|
|
|
1151
1151
|
attr_accessor source_last_updated_timestamp_format: ::String
|
|
1152
1152
|
attr_accessor max_available_profile_object_count: ::Integer
|
|
1153
1153
|
attr_accessor max_profile_object_count: ::Integer
|
|
1154
|
+
attr_accessor source_priority: ::Integer
|
|
1154
1155
|
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
|
1155
1156
|
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
|
1156
1157
|
attr_accessor created_at: ::Time
|
|
@@ -1668,6 +1669,7 @@ module Aws::CustomerProfiles
|
|
|
1668
1669
|
attr_accessor last_updated_at: ::Time
|
|
1669
1670
|
attr_accessor max_profile_object_count: ::Integer
|
|
1670
1671
|
attr_accessor max_available_profile_object_count: ::Integer
|
|
1672
|
+
attr_accessor source_priority: ::Integer
|
|
1671
1673
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1672
1674
|
SENSITIVE: []
|
|
1673
1675
|
end
|
|
@@ -1896,7 +1898,7 @@ module Aws::CustomerProfiles
|
|
|
1896
1898
|
end
|
|
1897
1899
|
|
|
1898
1900
|
class ObjectTypeKey
|
|
1899
|
-
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")]
|
|
1901
|
+
attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "DEVICE" | "WEB_ANALYTICS" | "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")]
|
|
1900
1902
|
attr_accessor field_names: ::Array[::String]
|
|
1901
1903
|
SENSITIVE: []
|
|
1902
1904
|
end
|
|
@@ -2089,6 +2091,7 @@ module Aws::CustomerProfiles
|
|
|
2089
2091
|
attr_accessor allow_profile_creation: bool
|
|
2090
2092
|
attr_accessor source_last_updated_timestamp_format: ::String
|
|
2091
2093
|
attr_accessor max_profile_object_count: ::Integer
|
|
2094
|
+
attr_accessor source_priority: ::Integer
|
|
2092
2095
|
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
|
2093
2096
|
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
|
2094
2097
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -2105,6 +2108,7 @@ module Aws::CustomerProfiles
|
|
|
2105
2108
|
attr_accessor source_last_updated_timestamp_format: ::String
|
|
2106
2109
|
attr_accessor max_profile_object_count: ::Integer
|
|
2107
2110
|
attr_accessor max_available_profile_object_count: ::Integer
|
|
2111
|
+
attr_accessor source_priority: ::Integer
|
|
2108
2112
|
attr_accessor fields: ::Hash[::String, Types::ObjectTypeField]
|
|
2109
2113
|
attr_accessor keys: ::Hash[::String, ::Array[Types::ObjectTypeKey]]
|
|
2110
2114
|
attr_accessor created_at: ::Time
|