aws-sdk-customerprofiles 1.56.0 → 1.57.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs CHANGED
@@ -47,6 +47,16 @@ module Aws::CustomerProfiles
47
47
  SENSITIVE: []
48
48
  end
49
49
 
50
+ class AddressDimension
51
+ attr_accessor city: Types::ProfileDimension
52
+ attr_accessor country: Types::ProfileDimension
53
+ attr_accessor county: Types::ProfileDimension
54
+ attr_accessor postal_code: Types::ProfileDimension
55
+ attr_accessor province: Types::ProfileDimension
56
+ attr_accessor state: Types::ProfileDimension
57
+ SENSITIVE: []
58
+ end
59
+
50
60
  class AppflowIntegration
51
61
  attr_accessor flow_definition: Types::FlowDefinition
52
62
  attr_accessor batches: ::Array[Types::Batch]
@@ -85,6 +95,12 @@ module Aws::CustomerProfiles
85
95
  SENSITIVE: []
86
96
  end
87
97
 
98
+ class AttributeDimension
99
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL")
100
+ attr_accessor values: ::Array[::String]
101
+ SENSITIVE: []
102
+ end
103
+
88
104
  class AttributeItem
89
105
  attr_accessor name: ::String
90
106
  SENSITIVE: []
@@ -98,6 +114,11 @@ module Aws::CustomerProfiles
98
114
  SENSITIVE: []
99
115
  end
100
116
 
117
+ class AttributeValueItem
118
+ attr_accessor value: ::String
119
+ SENSITIVE: []
120
+ end
121
+
101
122
  class AutoMerging
102
123
  attr_accessor enabled: bool
103
124
  attr_accessor consolidation: Types::Consolidation
@@ -117,6 +138,68 @@ module Aws::CustomerProfiles
117
138
  SENSITIVE: []
118
139
  end
119
140
 
141
+ class BatchGetCalculatedAttributeForProfileError
142
+ attr_accessor code: ::String
143
+ attr_accessor message: ::String
144
+ attr_accessor profile_id: ::String
145
+ SENSITIVE: []
146
+ end
147
+
148
+ class BatchGetCalculatedAttributeForProfileRequest
149
+ attr_accessor calculated_attribute_name: ::String
150
+ attr_accessor domain_name: ::String
151
+ attr_accessor profile_ids: ::Array[::String]
152
+ attr_accessor condition_overrides: Types::ConditionOverrides
153
+ SENSITIVE: [:condition_overrides]
154
+ end
155
+
156
+ class BatchGetCalculatedAttributeForProfileResponse
157
+ attr_accessor errors: ::Array[Types::BatchGetCalculatedAttributeForProfileError]
158
+ attr_accessor calculated_attribute_values: ::Array[Types::CalculatedAttributeValue]
159
+ attr_accessor condition_overrides: Types::ConditionOverrides
160
+ SENSITIVE: [:condition_overrides]
161
+ end
162
+
163
+ class BatchGetProfileError
164
+ attr_accessor code: ::String
165
+ attr_accessor message: ::String
166
+ attr_accessor profile_id: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class BatchGetProfileRequest
171
+ attr_accessor domain_name: ::String
172
+ attr_accessor profile_ids: ::Array[::String]
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class BatchGetProfileResponse
177
+ attr_accessor errors: ::Array[Types::BatchGetProfileError]
178
+ attr_accessor profiles: ::Array[Types::Profile]
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class CalculatedAttributeDimension
183
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL")
184
+ attr_accessor values: ::Array[::String]
185
+ attr_accessor condition_overrides: Types::ConditionOverrides
186
+ SENSITIVE: [:condition_overrides]
187
+ end
188
+
189
+ class CalculatedAttributeValue
190
+ attr_accessor calculated_attribute_name: ::String
191
+ attr_accessor display_name: ::String
192
+ attr_accessor is_data_partial: ::String
193
+ attr_accessor profile_id: ::String
194
+ attr_accessor value: ::String
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class ConditionOverrides
199
+ attr_accessor range: Types::RangeOverride
200
+ SENSITIVE: []
201
+ end
202
+
120
203
  class Conditions
121
204
  attr_accessor range: Types::Range
122
205
  attr_accessor object_count: ::Integer
@@ -151,6 +234,7 @@ module Aws::CustomerProfiles
151
234
  attr_accessor description: ::String
152
235
  attr_accessor attribute_details: Types::AttributeDetails
153
236
  attr_accessor conditions: Types::Conditions
237
+ attr_accessor filter: Types::Filter
154
238
  attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
155
239
  attr_accessor tags: ::Hash[::String, ::String]
156
240
  SENSITIVE: [:description, :attribute_details, :conditions, :statistic]
@@ -162,6 +246,7 @@ module Aws::CustomerProfiles
162
246
  attr_accessor description: ::String
163
247
  attr_accessor attribute_details: Types::AttributeDetails
164
248
  attr_accessor conditions: Types::Conditions
249
+ attr_accessor filter: Types::Filter
165
250
  attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
166
251
  attr_accessor created_at: ::Time
167
252
  attr_accessor last_updated_at: ::Time
@@ -256,6 +341,60 @@ module Aws::CustomerProfiles
256
341
  SENSITIVE: []
257
342
  end
258
343
 
344
+ class CreateSegmentDefinitionRequest
345
+ attr_accessor domain_name: ::String
346
+ attr_accessor segment_definition_name: ::String
347
+ attr_accessor display_name: ::String
348
+ attr_accessor description: ::String
349
+ attr_accessor segment_groups: Types::SegmentGroup
350
+ attr_accessor tags: ::Hash[::String, ::String]
351
+ SENSITIVE: [:description, :segment_groups]
352
+ end
353
+
354
+ class CreateSegmentDefinitionResponse
355
+ attr_accessor segment_definition_name: ::String
356
+ attr_accessor display_name: ::String
357
+ attr_accessor description: ::String
358
+ attr_accessor created_at: ::Time
359
+ attr_accessor segment_definition_arn: ::String
360
+ attr_accessor tags: ::Hash[::String, ::String]
361
+ SENSITIVE: [:description]
362
+ end
363
+
364
+ class CreateSegmentEstimateRequest
365
+ attr_accessor domain_name: ::String
366
+ attr_accessor segment_query: Types::SegmentGroupStructure
367
+ SENSITIVE: []
368
+ end
369
+
370
+ class CreateSegmentEstimateResponse
371
+ attr_accessor domain_name: ::String
372
+ attr_accessor estimate_id: ::String
373
+ attr_accessor status_code: ::Integer
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class CreateSegmentSnapshotRequest
378
+ attr_accessor domain_name: ::String
379
+ attr_accessor segment_definition_name: ::String
380
+ attr_accessor data_format: ("CSV" | "JSONL" | "ORC")
381
+ attr_accessor encryption_key: ::String
382
+ attr_accessor role_arn: ::String
383
+ attr_accessor destination_uri: ::String
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class CreateSegmentSnapshotResponse
388
+ attr_accessor snapshot_id: ::String
389
+ SENSITIVE: []
390
+ end
391
+
392
+ class DateDimension
393
+ attr_accessor dimension_type: ("BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON")
394
+ attr_accessor values: ::Array[::String]
395
+ SENSITIVE: []
396
+ end
397
+
259
398
  class DeleteCalculatedAttributeDefinitionRequest
260
399
  attr_accessor domain_name: ::String
261
400
  attr_accessor calculated_attribute_name: ::String
@@ -343,6 +482,17 @@ module Aws::CustomerProfiles
343
482
  SENSITIVE: []
344
483
  end
345
484
 
485
+ class DeleteSegmentDefinitionRequest
486
+ attr_accessor domain_name: ::String
487
+ attr_accessor segment_definition_name: ::String
488
+ SENSITIVE: []
489
+ end
490
+
491
+ class DeleteSegmentDefinitionResponse
492
+ attr_accessor message: ::String
493
+ SENSITIVE: []
494
+ end
495
+
346
496
  class DeleteWorkflowRequest
347
497
  attr_accessor domain_name: ::String
348
498
  attr_accessor workflow_id: ::String
@@ -377,6 +527,20 @@ module Aws::CustomerProfiles
377
527
  SENSITIVE: [:fields, :keys]
378
528
  end
379
529
 
530
+ class Dimension
531
+ attr_accessor profile_attributes: Types::ProfileAttributes
532
+ attr_accessor calculated_attributes: ::Hash[::String, Types::CalculatedAttributeDimension]
533
+ attr_accessor unknown: untyped
534
+ SENSITIVE: [:profile_attributes]
535
+
536
+ class ProfileAttributes < Dimension
537
+ end
538
+ class CalculatedAttributes < Dimension
539
+ end
540
+ class Unknown < Dimension
541
+ end
542
+ end
543
+
380
544
  class DomainStats
381
545
  attr_accessor profile_count: ::Integer
382
546
  attr_accessor metering_profile_count: ::Integer
@@ -414,6 +578,12 @@ module Aws::CustomerProfiles
414
578
  SENSITIVE: []
415
579
  end
416
580
 
581
+ class ExtraLengthValueProfileDimension
582
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH")
583
+ attr_accessor values: ::Array[::String]
584
+ SENSITIVE: []
585
+ end
586
+
417
587
  class FieldSourceProfileIds
418
588
  attr_accessor account_number: ::String
419
589
  attr_accessor additional_information: ::String
@@ -439,6 +609,29 @@ module Aws::CustomerProfiles
439
609
  SENSITIVE: []
440
610
  end
441
611
 
612
+ class Filter
613
+ attr_accessor include: ("ALL" | "ANY" | "NONE")
614
+ attr_accessor groups: ::Array[Types::FilterGroup]
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class FilterAttributeDimension
619
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL")
620
+ attr_accessor values: ::Array[::String]
621
+ SENSITIVE: []
622
+ end
623
+
624
+ class FilterDimension
625
+ attr_accessor attributes: ::Hash[::String, Types::FilterAttributeDimension]
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class FilterGroup
630
+ attr_accessor type: ("ALL" | "ANY" | "NONE")
631
+ attr_accessor dimensions: ::Array[Types::FilterDimension]
632
+ SENSITIVE: []
633
+ end
634
+
442
635
  class FlowDefinition
443
636
  attr_accessor description: ::String
444
637
  attr_accessor flow_name: ::String
@@ -484,6 +677,7 @@ module Aws::CustomerProfiles
484
677
  attr_accessor created_at: ::Time
485
678
  attr_accessor last_updated_at: ::Time
486
679
  attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
680
+ attr_accessor filter: Types::Filter
487
681
  attr_accessor conditions: Types::Conditions
488
682
  attr_accessor attribute_details: Types::AttributeDetails
489
683
  attr_accessor tags: ::Hash[::String, ::String]
@@ -637,6 +831,71 @@ module Aws::CustomerProfiles
637
831
  SENSITIVE: [:fields, :keys]
638
832
  end
639
833
 
834
+ class GetSegmentDefinitionRequest
835
+ attr_accessor domain_name: ::String
836
+ attr_accessor segment_definition_name: ::String
837
+ SENSITIVE: []
838
+ end
839
+
840
+ class GetSegmentDefinitionResponse
841
+ attr_accessor segment_definition_name: ::String
842
+ attr_accessor display_name: ::String
843
+ attr_accessor description: ::String
844
+ attr_accessor segment_groups: Types::SegmentGroup
845
+ attr_accessor segment_definition_arn: ::String
846
+ attr_accessor created_at: ::Time
847
+ attr_accessor tags: ::Hash[::String, ::String]
848
+ SENSITIVE: [:description, :segment_groups]
849
+ end
850
+
851
+ class GetSegmentEstimateRequest
852
+ attr_accessor domain_name: ::String
853
+ attr_accessor estimate_id: ::String
854
+ SENSITIVE: []
855
+ end
856
+
857
+ class GetSegmentEstimateResponse
858
+ attr_accessor domain_name: ::String
859
+ attr_accessor estimate_id: ::String
860
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED")
861
+ attr_accessor estimate: ::String
862
+ attr_accessor message: ::String
863
+ attr_accessor status_code: ::Integer
864
+ SENSITIVE: []
865
+ end
866
+
867
+ class GetSegmentMembershipRequest
868
+ attr_accessor domain_name: ::String
869
+ attr_accessor segment_definition_name: ::String
870
+ attr_accessor profile_ids: ::Array[::String]
871
+ SENSITIVE: []
872
+ end
873
+
874
+ class GetSegmentMembershipResponse
875
+ attr_accessor segment_definition_name: ::String
876
+ attr_accessor profiles: ::Array[Types::ProfileQueryResult]
877
+ attr_accessor failures: ::Array[Types::ProfileQueryFailures]
878
+ SENSITIVE: []
879
+ end
880
+
881
+ class GetSegmentSnapshotRequest
882
+ attr_accessor domain_name: ::String
883
+ attr_accessor segment_definition_name: ::String
884
+ attr_accessor snapshot_id: ::String
885
+ SENSITIVE: []
886
+ end
887
+
888
+ class GetSegmentSnapshotResponse
889
+ attr_accessor snapshot_id: ::String
890
+ attr_accessor status: ("COMPLETED" | "IN_PROGRESS" | "FAILED")
891
+ attr_accessor status_message: ::String
892
+ attr_accessor data_format: ("CSV" | "JSONL" | "ORC")
893
+ attr_accessor encryption_key: ::String
894
+ attr_accessor role_arn: ::String
895
+ attr_accessor destination_uri: ::String
896
+ SENSITIVE: []
897
+ end
898
+
640
899
  class GetSimilarProfilesRequest
641
900
  attr_accessor next_token: ::String
642
901
  attr_accessor max_results: ::Integer
@@ -691,6 +950,14 @@ module Aws::CustomerProfiles
691
950
  SENSITIVE: []
692
951
  end
693
952
 
953
+ class Group
954
+ attr_accessor dimensions: ::Array[Types::Dimension]
955
+ attr_accessor source_segments: ::Array[Types::SourceSegment]
956
+ attr_accessor source_type: ("ALL" | "ANY" | "NONE")
957
+ attr_accessor type: ("ALL" | "ANY" | "NONE")
958
+ SENSITIVE: []
959
+ end
960
+
694
961
  class IdentityResolutionJob
695
962
  attr_accessor domain_name: ::String
696
963
  attr_accessor job_id: ::String
@@ -864,6 +1131,26 @@ module Aws::CustomerProfiles
864
1131
  SENSITIVE: []
865
1132
  end
866
1133
 
1134
+ class ListObjectTypeAttributeItem
1135
+ attr_accessor attribute_name: ::String
1136
+ attr_accessor last_updated_at: ::Time
1137
+ SENSITIVE: []
1138
+ end
1139
+
1140
+ class ListObjectTypeAttributesRequest
1141
+ attr_accessor next_token: ::String
1142
+ attr_accessor max_results: ::Integer
1143
+ attr_accessor domain_name: ::String
1144
+ attr_accessor object_type_name: ::String
1145
+ SENSITIVE: []
1146
+ end
1147
+
1148
+ class ListObjectTypeAttributesResponse
1149
+ attr_accessor items: ::Array[Types::ListObjectTypeAttributeItem]
1150
+ attr_accessor next_token: ::String
1151
+ SENSITIVE: []
1152
+ end
1153
+
867
1154
  class ListProfileObjectTypeItem
868
1155
  attr_accessor object_type_name: ::String
869
1156
  attr_accessor description: ::String
@@ -943,6 +1230,19 @@ module Aws::CustomerProfiles
943
1230
  SENSITIVE: []
944
1231
  end
945
1232
 
1233
+ class ListSegmentDefinitionsRequest
1234
+ attr_accessor domain_name: ::String
1235
+ attr_accessor max_results: ::Integer
1236
+ attr_accessor next_token: ::String
1237
+ SENSITIVE: []
1238
+ end
1239
+
1240
+ class ListSegmentDefinitionsResponse
1241
+ attr_accessor next_token: ::String
1242
+ attr_accessor items: ::Array[Types::SegmentDefinitionItem]
1243
+ SENSITIVE: []
1244
+ end
1245
+
946
1246
  class ListTagsForResourceRequest
947
1247
  attr_accessor resource_arn: ::String
948
1248
  SENSITIVE: []
@@ -1040,7 +1340,7 @@ module Aws::CustomerProfiles
1040
1340
  end
1041
1341
 
1042
1342
  class ObjectTypeKey
1043
- attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY" | "ORDER")]
1343
+ attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "ORDER" | "COMMUNICATION_RECORD" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY")]
1044
1344
  attr_accessor field_names: ::Array[::String]
1045
1345
  SENSITIVE: []
1046
1346
  end
@@ -1074,6 +1374,65 @@ module Aws::CustomerProfiles
1074
1374
  SENSITIVE: [:account_number, :additional_information, :party_type, :business_name, :first_name, :middle_name, :last_name, :birth_date, :gender, :phone_number, :mobile_phone_number, :home_phone_number, :business_phone_number, :email_address, :personal_email_address, :business_email_address, :address, :shipping_address, :mailing_address, :billing_address, :attributes, :party_type_string, :gender_string]
1075
1375
  end
1076
1376
 
1377
+ class ProfileAttributeValuesRequest
1378
+ attr_accessor domain_name: ::String
1379
+ attr_accessor attribute_name: ::String
1380
+ SENSITIVE: []
1381
+ end
1382
+
1383
+ class ProfileAttributeValuesResponse
1384
+ attr_accessor domain_name: ::String
1385
+ attr_accessor attribute_name: ::String
1386
+ attr_accessor items: ::Array[Types::AttributeValueItem]
1387
+ attr_accessor status_code: ::Integer
1388
+ SENSITIVE: []
1389
+ end
1390
+
1391
+ class ProfileAttributes
1392
+ attr_accessor account_number: Types::ProfileDimension
1393
+ attr_accessor additional_information: Types::ExtraLengthValueProfileDimension
1394
+ attr_accessor first_name: Types::ProfileDimension
1395
+ attr_accessor last_name: Types::ProfileDimension
1396
+ attr_accessor middle_name: Types::ProfileDimension
1397
+ attr_accessor gender_string: Types::ProfileDimension
1398
+ attr_accessor party_type_string: Types::ProfileDimension
1399
+ attr_accessor birth_date: Types::DateDimension
1400
+ attr_accessor phone_number: Types::ProfileDimension
1401
+ attr_accessor business_name: Types::ProfileDimension
1402
+ attr_accessor business_phone_number: Types::ProfileDimension
1403
+ attr_accessor home_phone_number: Types::ProfileDimension
1404
+ attr_accessor mobile_phone_number: Types::ProfileDimension
1405
+ attr_accessor email_address: Types::ProfileDimension
1406
+ attr_accessor personal_email_address: Types::ProfileDimension
1407
+ attr_accessor business_email_address: Types::ProfileDimension
1408
+ attr_accessor address: Types::AddressDimension
1409
+ attr_accessor shipping_address: Types::AddressDimension
1410
+ attr_accessor mailing_address: Types::AddressDimension
1411
+ attr_accessor billing_address: Types::AddressDimension
1412
+ attr_accessor attributes: ::Hash[::String, Types::AttributeDimension]
1413
+ SENSITIVE: []
1414
+ end
1415
+
1416
+ class ProfileDimension
1417
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH")
1418
+ attr_accessor values: ::Array[::String]
1419
+ SENSITIVE: []
1420
+ end
1421
+
1422
+ class ProfileQueryFailures
1423
+ attr_accessor profile_id: ::String
1424
+ attr_accessor message: ::String
1425
+ attr_accessor status: ::Integer
1426
+ SENSITIVE: []
1427
+ end
1428
+
1429
+ class ProfileQueryResult
1430
+ attr_accessor profile_id: ::String
1431
+ attr_accessor query_result: ("PRESENT" | "ABSENT")
1432
+ attr_accessor profile: Types::Profile
1433
+ SENSITIVE: []
1434
+ end
1435
+
1077
1436
  class PutIntegrationRequest
1078
1437
  attr_accessor domain_name: ::String
1079
1438
  attr_accessor uri: ::String
@@ -1151,6 +1510,13 @@ module Aws::CustomerProfiles
1151
1510
  SENSITIVE: []
1152
1511
  end
1153
1512
 
1513
+ class RangeOverride
1514
+ attr_accessor start: ::Integer
1515
+ attr_accessor end: ::Integer
1516
+ attr_accessor unit: ("DAYS")
1517
+ SENSITIVE: []
1518
+ end
1519
+
1154
1520
  class ResourceNotFoundException
1155
1521
  attr_accessor message: ::String
1156
1522
  SENSITIVE: []
@@ -1232,6 +1598,28 @@ module Aws::CustomerProfiles
1232
1598
  SENSITIVE: []
1233
1599
  end
1234
1600
 
1601
+ class SegmentDefinitionItem
1602
+ attr_accessor segment_definition_name: ::String
1603
+ attr_accessor display_name: ::String
1604
+ attr_accessor description: ::String
1605
+ attr_accessor segment_definition_arn: ::String
1606
+ attr_accessor created_at: ::Time
1607
+ attr_accessor tags: ::Hash[::String, ::String]
1608
+ SENSITIVE: [:description]
1609
+ end
1610
+
1611
+ class SegmentGroup
1612
+ attr_accessor groups: ::Array[Types::Group]
1613
+ attr_accessor include: ("ALL" | "ANY" | "NONE")
1614
+ SENSITIVE: []
1615
+ end
1616
+
1617
+ class SegmentGroupStructure
1618
+ attr_accessor groups: ::Array[Types::Group]
1619
+ attr_accessor include: ("ALL" | "ANY" | "NONE")
1620
+ SENSITIVE: []
1621
+ end
1622
+
1235
1623
  class ServiceNowSourceProperties
1236
1624
  attr_accessor object: ::String
1237
1625
  SENSITIVE: []
@@ -1254,6 +1642,11 @@ module Aws::CustomerProfiles
1254
1642
  SENSITIVE: []
1255
1643
  end
1256
1644
 
1645
+ class SourceSegment
1646
+ attr_accessor segment_definition_name: ::String
1647
+ SENSITIVE: []
1648
+ end
1649
+
1257
1650
  class TagResourceRequest
1258
1651
  attr_accessor resource_arn: ::String
1259
1652
  attr_accessor tags: ::Hash[::String, ::String]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-customerprofiles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-06 00:00:00.000000000 Z
11
+ date: 2024-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core