aws-sdk-customerprofiles 1.56.0 → 1.58.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
@@ -207,6 +292,31 @@ module Aws::CustomerProfiles
207
292
  SENSITIVE: []
208
293
  end
209
294
 
295
+ class CreateEventTriggerRequest
296
+ attr_accessor domain_name: ::String
297
+ attr_accessor event_trigger_name: ::String
298
+ attr_accessor object_type_name: ::String
299
+ attr_accessor description: ::String
300
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
301
+ attr_accessor segment_filter: ::String
302
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
303
+ attr_accessor tags: ::Hash[::String, ::String]
304
+ SENSITIVE: [:description, :event_trigger_conditions]
305
+ end
306
+
307
+ class CreateEventTriggerResponse
308
+ attr_accessor event_trigger_name: ::String
309
+ attr_accessor object_type_name: ::String
310
+ attr_accessor description: ::String
311
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
312
+ attr_accessor segment_filter: ::String
313
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
314
+ attr_accessor created_at: ::Time
315
+ attr_accessor last_updated_at: ::Time
316
+ attr_accessor tags: ::Hash[::String, ::String]
317
+ SENSITIVE: [:description, :event_trigger_conditions]
318
+ end
319
+
210
320
  class CreateIntegrationWorkflowRequest
211
321
  attr_accessor domain_name: ::String
212
322
  attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
@@ -256,6 +366,60 @@ module Aws::CustomerProfiles
256
366
  SENSITIVE: []
257
367
  end
258
368
 
369
+ class CreateSegmentDefinitionRequest
370
+ attr_accessor domain_name: ::String
371
+ attr_accessor segment_definition_name: ::String
372
+ attr_accessor display_name: ::String
373
+ attr_accessor description: ::String
374
+ attr_accessor segment_groups: Types::SegmentGroup
375
+ attr_accessor tags: ::Hash[::String, ::String]
376
+ SENSITIVE: [:description, :segment_groups]
377
+ end
378
+
379
+ class CreateSegmentDefinitionResponse
380
+ attr_accessor segment_definition_name: ::String
381
+ attr_accessor display_name: ::String
382
+ attr_accessor description: ::String
383
+ attr_accessor created_at: ::Time
384
+ attr_accessor segment_definition_arn: ::String
385
+ attr_accessor tags: ::Hash[::String, ::String]
386
+ SENSITIVE: [:description]
387
+ end
388
+
389
+ class CreateSegmentEstimateRequest
390
+ attr_accessor domain_name: ::String
391
+ attr_accessor segment_query: Types::SegmentGroupStructure
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class CreateSegmentEstimateResponse
396
+ attr_accessor domain_name: ::String
397
+ attr_accessor estimate_id: ::String
398
+ attr_accessor status_code: ::Integer
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class CreateSegmentSnapshotRequest
403
+ attr_accessor domain_name: ::String
404
+ attr_accessor segment_definition_name: ::String
405
+ attr_accessor data_format: ("CSV" | "JSONL" | "ORC")
406
+ attr_accessor encryption_key: ::String
407
+ attr_accessor role_arn: ::String
408
+ attr_accessor destination_uri: ::String
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class CreateSegmentSnapshotResponse
413
+ attr_accessor snapshot_id: ::String
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class DateDimension
418
+ attr_accessor dimension_type: ("BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON")
419
+ attr_accessor values: ::Array[::String]
420
+ SENSITIVE: []
421
+ end
422
+
259
423
  class DeleteCalculatedAttributeDefinitionRequest
260
424
  attr_accessor domain_name: ::String
261
425
  attr_accessor calculated_attribute_name: ::String
@@ -284,6 +448,17 @@ module Aws::CustomerProfiles
284
448
  class DeleteEventStreamResponse < Aws::EmptyStructure
285
449
  end
286
450
 
451
+ class DeleteEventTriggerRequest
452
+ attr_accessor domain_name: ::String
453
+ attr_accessor event_trigger_name: ::String
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class DeleteEventTriggerResponse
458
+ attr_accessor message: ::String
459
+ SENSITIVE: []
460
+ end
461
+
287
462
  class DeleteIntegrationRequest
288
463
  attr_accessor domain_name: ::String
289
464
  attr_accessor uri: ::String
@@ -343,6 +518,17 @@ module Aws::CustomerProfiles
343
518
  SENSITIVE: []
344
519
  end
345
520
 
521
+ class DeleteSegmentDefinitionRequest
522
+ attr_accessor domain_name: ::String
523
+ attr_accessor segment_definition_name: ::String
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class DeleteSegmentDefinitionResponse
528
+ attr_accessor message: ::String
529
+ SENSITIVE: []
530
+ end
531
+
346
532
  class DeleteWorkflowRequest
347
533
  attr_accessor domain_name: ::String
348
534
  attr_accessor workflow_id: ::String
@@ -377,6 +563,20 @@ module Aws::CustomerProfiles
377
563
  SENSITIVE: [:fields, :keys]
378
564
  end
379
565
 
566
+ class Dimension
567
+ attr_accessor profile_attributes: Types::ProfileAttributes
568
+ attr_accessor calculated_attributes: ::Hash[::String, Types::CalculatedAttributeDimension]
569
+ attr_accessor unknown: untyped
570
+ SENSITIVE: [:profile_attributes]
571
+
572
+ class ProfileAttributes < Dimension
573
+ end
574
+ class CalculatedAttributes < Dimension
575
+ end
576
+ class Unknown < Dimension
577
+ end
578
+ end
579
+
380
580
  class DomainStats
381
581
  attr_accessor profile_count: ::Integer
382
582
  attr_accessor metering_profile_count: ::Integer
@@ -404,6 +604,33 @@ module Aws::CustomerProfiles
404
604
  SENSITIVE: []
405
605
  end
406
606
 
607
+ class EventTriggerCondition
608
+ attr_accessor event_trigger_dimensions: ::Array[Types::EventTriggerDimension]
609
+ attr_accessor logical_operator: ("ANY" | "ALL" | "NONE")
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class EventTriggerDimension
614
+ attr_accessor object_attributes: ::Array[Types::ObjectAttribute]
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class EventTriggerLimits
619
+ attr_accessor event_expiration: ::Integer
620
+ attr_accessor periods: ::Array[Types::Period]
621
+ SENSITIVE: []
622
+ end
623
+
624
+ class EventTriggerSummaryItem
625
+ attr_accessor object_type_name: ::String
626
+ attr_accessor event_trigger_name: ::String
627
+ attr_accessor description: ::String
628
+ attr_accessor created_at: ::Time
629
+ attr_accessor last_updated_at: ::Time
630
+ attr_accessor tags: ::Hash[::String, ::String]
631
+ SENSITIVE: []
632
+ end
633
+
407
634
  class ExportingConfig
408
635
  attr_accessor s3_exporting: Types::S3ExportingConfig
409
636
  SENSITIVE: []
@@ -414,6 +641,12 @@ module Aws::CustomerProfiles
414
641
  SENSITIVE: []
415
642
  end
416
643
 
644
+ class ExtraLengthValueProfileDimension
645
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH")
646
+ attr_accessor values: ::Array[::String]
647
+ SENSITIVE: []
648
+ end
649
+
417
650
  class FieldSourceProfileIds
418
651
  attr_accessor account_number: ::String
419
652
  attr_accessor additional_information: ::String
@@ -439,6 +672,29 @@ module Aws::CustomerProfiles
439
672
  SENSITIVE: []
440
673
  end
441
674
 
675
+ class Filter
676
+ attr_accessor include: ("ALL" | "ANY" | "NONE")
677
+ attr_accessor groups: ::Array[Types::FilterGroup]
678
+ SENSITIVE: []
679
+ end
680
+
681
+ class FilterAttributeDimension
682
+ 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")
683
+ attr_accessor values: ::Array[::String]
684
+ SENSITIVE: []
685
+ end
686
+
687
+ class FilterDimension
688
+ attr_accessor attributes: ::Hash[::String, Types::FilterAttributeDimension]
689
+ SENSITIVE: []
690
+ end
691
+
692
+ class FilterGroup
693
+ attr_accessor type: ("ALL" | "ANY" | "NONE")
694
+ attr_accessor dimensions: ::Array[Types::FilterDimension]
695
+ SENSITIVE: []
696
+ end
697
+
442
698
  class FlowDefinition
443
699
  attr_accessor description: ::String
444
700
  attr_accessor flow_name: ::String
@@ -484,6 +740,7 @@ module Aws::CustomerProfiles
484
740
  attr_accessor created_at: ::Time
485
741
  attr_accessor last_updated_at: ::Time
486
742
  attr_accessor statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
743
+ attr_accessor filter: Types::Filter
487
744
  attr_accessor conditions: Types::Conditions
488
745
  attr_accessor attribute_details: Types::AttributeDetails
489
746
  attr_accessor tags: ::Hash[::String, ::String]
@@ -541,6 +798,25 @@ module Aws::CustomerProfiles
541
798
  SENSITIVE: []
542
799
  end
543
800
 
801
+ class GetEventTriggerRequest
802
+ attr_accessor domain_name: ::String
803
+ attr_accessor event_trigger_name: ::String
804
+ SENSITIVE: []
805
+ end
806
+
807
+ class GetEventTriggerResponse
808
+ attr_accessor event_trigger_name: ::String
809
+ attr_accessor object_type_name: ::String
810
+ attr_accessor description: ::String
811
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
812
+ attr_accessor segment_filter: ::String
813
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
814
+ attr_accessor created_at: ::Time
815
+ attr_accessor last_updated_at: ::Time
816
+ attr_accessor tags: ::Hash[::String, ::String]
817
+ SENSITIVE: [:description, :event_trigger_conditions]
818
+ end
819
+
544
820
  class GetIdentityResolutionJobRequest
545
821
  attr_accessor domain_name: ::String
546
822
  attr_accessor job_id: ::String
@@ -579,6 +855,7 @@ module Aws::CustomerProfiles
579
855
  attr_accessor workflow_id: ::String
580
856
  attr_accessor is_unstructured: bool
581
857
  attr_accessor role_arn: ::String
858
+ attr_accessor event_trigger_names: ::Array[::String]
582
859
  SENSITIVE: []
583
860
  end
584
861
 
@@ -637,6 +914,71 @@ module Aws::CustomerProfiles
637
914
  SENSITIVE: [:fields, :keys]
638
915
  end
639
916
 
917
+ class GetSegmentDefinitionRequest
918
+ attr_accessor domain_name: ::String
919
+ attr_accessor segment_definition_name: ::String
920
+ SENSITIVE: []
921
+ end
922
+
923
+ class GetSegmentDefinitionResponse
924
+ attr_accessor segment_definition_name: ::String
925
+ attr_accessor display_name: ::String
926
+ attr_accessor description: ::String
927
+ attr_accessor segment_groups: Types::SegmentGroup
928
+ attr_accessor segment_definition_arn: ::String
929
+ attr_accessor created_at: ::Time
930
+ attr_accessor tags: ::Hash[::String, ::String]
931
+ SENSITIVE: [:description, :segment_groups]
932
+ end
933
+
934
+ class GetSegmentEstimateRequest
935
+ attr_accessor domain_name: ::String
936
+ attr_accessor estimate_id: ::String
937
+ SENSITIVE: []
938
+ end
939
+
940
+ class GetSegmentEstimateResponse
941
+ attr_accessor domain_name: ::String
942
+ attr_accessor estimate_id: ::String
943
+ attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED")
944
+ attr_accessor estimate: ::String
945
+ attr_accessor message: ::String
946
+ attr_accessor status_code: ::Integer
947
+ SENSITIVE: []
948
+ end
949
+
950
+ class GetSegmentMembershipRequest
951
+ attr_accessor domain_name: ::String
952
+ attr_accessor segment_definition_name: ::String
953
+ attr_accessor profile_ids: ::Array[::String]
954
+ SENSITIVE: []
955
+ end
956
+
957
+ class GetSegmentMembershipResponse
958
+ attr_accessor segment_definition_name: ::String
959
+ attr_accessor profiles: ::Array[Types::ProfileQueryResult]
960
+ attr_accessor failures: ::Array[Types::ProfileQueryFailures]
961
+ SENSITIVE: []
962
+ end
963
+
964
+ class GetSegmentSnapshotRequest
965
+ attr_accessor domain_name: ::String
966
+ attr_accessor segment_definition_name: ::String
967
+ attr_accessor snapshot_id: ::String
968
+ SENSITIVE: []
969
+ end
970
+
971
+ class GetSegmentSnapshotResponse
972
+ attr_accessor snapshot_id: ::String
973
+ attr_accessor status: ("COMPLETED" | "IN_PROGRESS" | "FAILED")
974
+ attr_accessor status_message: ::String
975
+ attr_accessor data_format: ("CSV" | "JSONL" | "ORC")
976
+ attr_accessor encryption_key: ::String
977
+ attr_accessor role_arn: ::String
978
+ attr_accessor destination_uri: ::String
979
+ SENSITIVE: []
980
+ end
981
+
640
982
  class GetSimilarProfilesRequest
641
983
  attr_accessor next_token: ::String
642
984
  attr_accessor max_results: ::Integer
@@ -691,6 +1033,14 @@ module Aws::CustomerProfiles
691
1033
  SENSITIVE: []
692
1034
  end
693
1035
 
1036
+ class Group
1037
+ attr_accessor dimensions: ::Array[Types::Dimension]
1038
+ attr_accessor source_segments: ::Array[Types::SourceSegment]
1039
+ attr_accessor source_type: ("ALL" | "ANY" | "NONE")
1040
+ attr_accessor type: ("ALL" | "ANY" | "NONE")
1041
+ SENSITIVE: []
1042
+ end
1043
+
694
1044
  class IdentityResolutionJob
695
1045
  attr_accessor domain_name: ::String
696
1046
  attr_accessor job_id: ::String
@@ -823,6 +1173,19 @@ module Aws::CustomerProfiles
823
1173
  SENSITIVE: []
824
1174
  end
825
1175
 
1176
+ class ListEventTriggersRequest
1177
+ attr_accessor domain_name: ::String
1178
+ attr_accessor next_token: ::String
1179
+ attr_accessor max_results: ::Integer
1180
+ SENSITIVE: []
1181
+ end
1182
+
1183
+ class ListEventTriggersResponse
1184
+ attr_accessor items: ::Array[Types::EventTriggerSummaryItem]
1185
+ attr_accessor next_token: ::String
1186
+ SENSITIVE: [:items]
1187
+ end
1188
+
826
1189
  class ListIdentityResolutionJobsRequest
827
1190
  attr_accessor domain_name: ::String
828
1191
  attr_accessor next_token: ::String
@@ -847,6 +1210,7 @@ module Aws::CustomerProfiles
847
1210
  attr_accessor workflow_id: ::String
848
1211
  attr_accessor is_unstructured: bool
849
1212
  attr_accessor role_arn: ::String
1213
+ attr_accessor event_trigger_names: ::Array[::String]
850
1214
  SENSITIVE: []
851
1215
  end
852
1216
 
@@ -864,6 +1228,26 @@ module Aws::CustomerProfiles
864
1228
  SENSITIVE: []
865
1229
  end
866
1230
 
1231
+ class ListObjectTypeAttributeItem
1232
+ attr_accessor attribute_name: ::String
1233
+ attr_accessor last_updated_at: ::Time
1234
+ SENSITIVE: []
1235
+ end
1236
+
1237
+ class ListObjectTypeAttributesRequest
1238
+ attr_accessor next_token: ::String
1239
+ attr_accessor max_results: ::Integer
1240
+ attr_accessor domain_name: ::String
1241
+ attr_accessor object_type_name: ::String
1242
+ SENSITIVE: []
1243
+ end
1244
+
1245
+ class ListObjectTypeAttributesResponse
1246
+ attr_accessor items: ::Array[Types::ListObjectTypeAttributeItem]
1247
+ attr_accessor next_token: ::String
1248
+ SENSITIVE: []
1249
+ end
1250
+
867
1251
  class ListProfileObjectTypeItem
868
1252
  attr_accessor object_type_name: ::String
869
1253
  attr_accessor description: ::String
@@ -943,6 +1327,19 @@ module Aws::CustomerProfiles
943
1327
  SENSITIVE: []
944
1328
  end
945
1329
 
1330
+ class ListSegmentDefinitionsRequest
1331
+ attr_accessor domain_name: ::String
1332
+ attr_accessor max_results: ::Integer
1333
+ attr_accessor next_token: ::String
1334
+ SENSITIVE: []
1335
+ end
1336
+
1337
+ class ListSegmentDefinitionsResponse
1338
+ attr_accessor next_token: ::String
1339
+ attr_accessor items: ::Array[Types::SegmentDefinitionItem]
1340
+ SENSITIVE: []
1341
+ end
1342
+
946
1343
  class ListTagsForResourceRequest
947
1344
  attr_accessor resource_arn: ::String
948
1345
  SENSITIVE: []
@@ -1026,6 +1423,14 @@ module Aws::CustomerProfiles
1026
1423
  SENSITIVE: []
1027
1424
  end
1028
1425
 
1426
+ class ObjectAttribute
1427
+ attr_accessor source: ::String
1428
+ attr_accessor field_name: ::String
1429
+ attr_accessor comparison_operator: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH" | "GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "EQUAL" | "BEFORE" | "AFTER" | "ON" | "BETWEEN" | "NOT_BETWEEN")
1430
+ attr_accessor values: ::Array[::String]
1431
+ SENSITIVE: []
1432
+ end
1433
+
1029
1434
  class ObjectFilter
1030
1435
  attr_accessor key_name: ::String
1031
1436
  attr_accessor values: ::Array[::String]
@@ -1040,11 +1445,19 @@ module Aws::CustomerProfiles
1040
1445
  end
1041
1446
 
1042
1447
  class ObjectTypeKey
1043
- attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY" | "ORDER")]
1448
+ attr_accessor standard_identifiers: ::Array[("PROFILE" | "ASSET" | "CASE" | "ORDER" | "COMMUNICATION_RECORD" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY")]
1044
1449
  attr_accessor field_names: ::Array[::String]
1045
1450
  SENSITIVE: []
1046
1451
  end
1047
1452
 
1453
+ class Period
1454
+ attr_accessor unit: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS")
1455
+ attr_accessor value: ::Integer
1456
+ attr_accessor max_invocations_per_profile: ::Integer
1457
+ attr_accessor unlimited: bool
1458
+ SENSITIVE: []
1459
+ end
1460
+
1048
1461
  class Profile
1049
1462
  attr_accessor profile_id: ::String
1050
1463
  attr_accessor account_number: ::String
@@ -1074,6 +1487,65 @@ module Aws::CustomerProfiles
1074
1487
  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
1488
  end
1076
1489
 
1490
+ class ProfileAttributeValuesRequest
1491
+ attr_accessor domain_name: ::String
1492
+ attr_accessor attribute_name: ::String
1493
+ SENSITIVE: []
1494
+ end
1495
+
1496
+ class ProfileAttributeValuesResponse
1497
+ attr_accessor domain_name: ::String
1498
+ attr_accessor attribute_name: ::String
1499
+ attr_accessor items: ::Array[Types::AttributeValueItem]
1500
+ attr_accessor status_code: ::Integer
1501
+ SENSITIVE: []
1502
+ end
1503
+
1504
+ class ProfileAttributes
1505
+ attr_accessor account_number: Types::ProfileDimension
1506
+ attr_accessor additional_information: Types::ExtraLengthValueProfileDimension
1507
+ attr_accessor first_name: Types::ProfileDimension
1508
+ attr_accessor last_name: Types::ProfileDimension
1509
+ attr_accessor middle_name: Types::ProfileDimension
1510
+ attr_accessor gender_string: Types::ProfileDimension
1511
+ attr_accessor party_type_string: Types::ProfileDimension
1512
+ attr_accessor birth_date: Types::DateDimension
1513
+ attr_accessor phone_number: Types::ProfileDimension
1514
+ attr_accessor business_name: Types::ProfileDimension
1515
+ attr_accessor business_phone_number: Types::ProfileDimension
1516
+ attr_accessor home_phone_number: Types::ProfileDimension
1517
+ attr_accessor mobile_phone_number: Types::ProfileDimension
1518
+ attr_accessor email_address: Types::ProfileDimension
1519
+ attr_accessor personal_email_address: Types::ProfileDimension
1520
+ attr_accessor business_email_address: Types::ProfileDimension
1521
+ attr_accessor address: Types::AddressDimension
1522
+ attr_accessor shipping_address: Types::AddressDimension
1523
+ attr_accessor mailing_address: Types::AddressDimension
1524
+ attr_accessor billing_address: Types::AddressDimension
1525
+ attr_accessor attributes: ::Hash[::String, Types::AttributeDimension]
1526
+ SENSITIVE: []
1527
+ end
1528
+
1529
+ class ProfileDimension
1530
+ attr_accessor dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH")
1531
+ attr_accessor values: ::Array[::String]
1532
+ SENSITIVE: []
1533
+ end
1534
+
1535
+ class ProfileQueryFailures
1536
+ attr_accessor profile_id: ::String
1537
+ attr_accessor message: ::String
1538
+ attr_accessor status: ::Integer
1539
+ SENSITIVE: []
1540
+ end
1541
+
1542
+ class ProfileQueryResult
1543
+ attr_accessor profile_id: ::String
1544
+ attr_accessor query_result: ("PRESENT" | "ABSENT")
1545
+ attr_accessor profile: Types::Profile
1546
+ SENSITIVE: []
1547
+ end
1548
+
1077
1549
  class PutIntegrationRequest
1078
1550
  attr_accessor domain_name: ::String
1079
1551
  attr_accessor uri: ::String
@@ -1082,6 +1554,7 @@ module Aws::CustomerProfiles
1082
1554
  attr_accessor flow_definition: Types::FlowDefinition
1083
1555
  attr_accessor object_type_names: ::Hash[::String, ::String]
1084
1556
  attr_accessor role_arn: ::String
1557
+ attr_accessor event_trigger_names: ::Array[::String]
1085
1558
  SENSITIVE: [:flow_definition]
1086
1559
  end
1087
1560
 
@@ -1096,6 +1569,7 @@ module Aws::CustomerProfiles
1096
1569
  attr_accessor workflow_id: ::String
1097
1570
  attr_accessor is_unstructured: bool
1098
1571
  attr_accessor role_arn: ::String
1572
+ attr_accessor event_trigger_names: ::Array[::String]
1099
1573
  SENSITIVE: []
1100
1574
  end
1101
1575
 
@@ -1151,6 +1625,13 @@ module Aws::CustomerProfiles
1151
1625
  SENSITIVE: []
1152
1626
  end
1153
1627
 
1628
+ class RangeOverride
1629
+ attr_accessor start: ::Integer
1630
+ attr_accessor end: ::Integer
1631
+ attr_accessor unit: ("DAYS")
1632
+ SENSITIVE: []
1633
+ end
1634
+
1154
1635
  class ResourceNotFoundException
1155
1636
  attr_accessor message: ::String
1156
1637
  SENSITIVE: []
@@ -1232,6 +1713,28 @@ module Aws::CustomerProfiles
1232
1713
  SENSITIVE: []
1233
1714
  end
1234
1715
 
1716
+ class SegmentDefinitionItem
1717
+ attr_accessor segment_definition_name: ::String
1718
+ attr_accessor display_name: ::String
1719
+ attr_accessor description: ::String
1720
+ attr_accessor segment_definition_arn: ::String
1721
+ attr_accessor created_at: ::Time
1722
+ attr_accessor tags: ::Hash[::String, ::String]
1723
+ SENSITIVE: [:description]
1724
+ end
1725
+
1726
+ class SegmentGroup
1727
+ attr_accessor groups: ::Array[Types::Group]
1728
+ attr_accessor include: ("ALL" | "ANY" | "NONE")
1729
+ SENSITIVE: []
1730
+ end
1731
+
1732
+ class SegmentGroupStructure
1733
+ attr_accessor groups: ::Array[Types::Group]
1734
+ attr_accessor include: ("ALL" | "ANY" | "NONE")
1735
+ SENSITIVE: []
1736
+ end
1737
+
1235
1738
  class ServiceNowSourceProperties
1236
1739
  attr_accessor object: ::String
1237
1740
  SENSITIVE: []
@@ -1254,6 +1757,11 @@ module Aws::CustomerProfiles
1254
1757
  SENSITIVE: []
1255
1758
  end
1256
1759
 
1760
+ class SourceSegment
1761
+ attr_accessor segment_definition_name: ::String
1762
+ SENSITIVE: []
1763
+ end
1764
+
1257
1765
  class TagResourceRequest
1258
1766
  attr_accessor resource_arn: ::String
1259
1767
  attr_accessor tags: ::Hash[::String, ::String]
@@ -1363,6 +1871,30 @@ module Aws::CustomerProfiles
1363
1871
  SENSITIVE: []
1364
1872
  end
1365
1873
 
1874
+ class UpdateEventTriggerRequest
1875
+ attr_accessor domain_name: ::String
1876
+ attr_accessor event_trigger_name: ::String
1877
+ attr_accessor object_type_name: ::String
1878
+ attr_accessor description: ::String
1879
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
1880
+ attr_accessor segment_filter: ::String
1881
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
1882
+ SENSITIVE: [:description, :event_trigger_conditions]
1883
+ end
1884
+
1885
+ class UpdateEventTriggerResponse
1886
+ attr_accessor event_trigger_name: ::String
1887
+ attr_accessor object_type_name: ::String
1888
+ attr_accessor description: ::String
1889
+ attr_accessor event_trigger_conditions: ::Array[Types::EventTriggerCondition]
1890
+ attr_accessor segment_filter: ::String
1891
+ attr_accessor event_trigger_limits: Types::EventTriggerLimits
1892
+ attr_accessor created_at: ::Time
1893
+ attr_accessor last_updated_at: ::Time
1894
+ attr_accessor tags: ::Hash[::String, ::String]
1895
+ SENSITIVE: [:description, :event_trigger_conditions]
1896
+ end
1897
+
1366
1898
  class UpdateProfileRequest
1367
1899
  attr_accessor domain_name: ::String
1368
1900
  attr_accessor profile_id: ::String