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/client.rbs CHANGED
@@ -89,6 +89,39 @@ module Aws
89
89
  ) -> _AddProfileKeyResponseSuccess
90
90
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddProfileKeyResponseSuccess
91
91
 
92
+ interface _BatchGetCalculatedAttributeForProfileResponseSuccess
93
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetCalculatedAttributeForProfileResponse]
94
+ def errors: () -> ::Array[Types::BatchGetCalculatedAttributeForProfileError]
95
+ def calculated_attribute_values: () -> ::Array[Types::CalculatedAttributeValue]
96
+ def condition_overrides: () -> Types::ConditionOverrides
97
+ end
98
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#batch_get_calculated_attribute_for_profile-instance_method
99
+ def batch_get_calculated_attribute_for_profile: (
100
+ calculated_attribute_name: ::String,
101
+ domain_name: ::String,
102
+ profile_ids: Array[::String],
103
+ ?condition_overrides: {
104
+ range: {
105
+ start: ::Integer,
106
+ end: ::Integer?,
107
+ unit: ("DAYS")
108
+ }?
109
+ }
110
+ ) -> _BatchGetCalculatedAttributeForProfileResponseSuccess
111
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetCalculatedAttributeForProfileResponseSuccess
112
+
113
+ interface _BatchGetProfileResponseSuccess
114
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetProfileResponse]
115
+ def errors: () -> ::Array[Types::BatchGetProfileError]
116
+ def profiles: () -> ::Array[Types::Profile]
117
+ end
118
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#batch_get_profile-instance_method
119
+ def batch_get_profile: (
120
+ domain_name: ::String,
121
+ profile_ids: Array[::String]
122
+ ) -> _BatchGetProfileResponseSuccess
123
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetProfileResponseSuccess
124
+
92
125
  interface _CreateCalculatedAttributeDefinitionResponseSuccess
93
126
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateCalculatedAttributeDefinitionResponse]
94
127
  def calculated_attribute_name: () -> ::String
@@ -96,6 +129,7 @@ module Aws
96
129
  def description: () -> ::String
97
130
  def attribute_details: () -> Types::AttributeDetails
98
131
  def conditions: () -> Types::Conditions
132
+ def filter: () -> Types::Filter
99
133
  def statistic: () -> ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
100
134
  def created_at: () -> ::Time
101
135
  def last_updated_at: () -> ::Time
@@ -126,6 +160,22 @@ module Aws
126
160
  operator: ("EQUAL_TO" | "GREATER_THAN" | "LESS_THAN" | "NOT_EQUAL_TO")
127
161
  }?
128
162
  },
163
+ ?filter: {
164
+ include: ("ALL" | "ANY" | "NONE"),
165
+ groups: Array[
166
+ {
167
+ type: ("ALL" | "ANY" | "NONE"),
168
+ dimensions: Array[
169
+ {
170
+ attributes: Hash[::String, {
171
+ 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"),
172
+ values: Array[::String]
173
+ }]
174
+ },
175
+ ]
176
+ },
177
+ ]
178
+ },
129
179
  statistic: ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE"),
130
180
  ?tags: Hash[::String, ::String]
131
181
  ) -> _CreateCalculatedAttributeDefinitionResponseSuccess
@@ -219,6 +269,57 @@ module Aws
219
269
  ) -> _CreateEventStreamResponseSuccess
220
270
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventStreamResponseSuccess
221
271
 
272
+ interface _CreateEventTriggerResponseSuccess
273
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateEventTriggerResponse]
274
+ def event_trigger_name: () -> ::String
275
+ def object_type_name: () -> ::String
276
+ def description: () -> ::String
277
+ def event_trigger_conditions: () -> ::Array[Types::EventTriggerCondition]
278
+ def segment_filter: () -> ::String
279
+ def event_trigger_limits: () -> Types::EventTriggerLimits
280
+ def created_at: () -> ::Time
281
+ def last_updated_at: () -> ::Time
282
+ def tags: () -> ::Hash[::String, ::String]
283
+ end
284
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_event_trigger-instance_method
285
+ def create_event_trigger: (
286
+ domain_name: ::String,
287
+ event_trigger_name: ::String,
288
+ object_type_name: ::String,
289
+ ?description: ::String,
290
+ event_trigger_conditions: Array[
291
+ {
292
+ event_trigger_dimensions: Array[
293
+ {
294
+ object_attributes: Array[
295
+ {
296
+ source: ::String?,
297
+ field_name: ::String?,
298
+ 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"),
299
+ values: Array[::String]
300
+ },
301
+ ]
302
+ },
303
+ ],
304
+ logical_operator: ("ANY" | "ALL" | "NONE")
305
+ },
306
+ ],
307
+ ?segment_filter: ::String,
308
+ ?event_trigger_limits: {
309
+ event_expiration: ::Integer?,
310
+ periods: Array[
311
+ {
312
+ unit: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS"),
313
+ value: ::Integer,
314
+ max_invocations_per_profile: ::Integer?,
315
+ unlimited: bool?
316
+ },
317
+ ]?
318
+ },
319
+ ?tags: Hash[::String, ::String]
320
+ ) -> _CreateEventTriggerResponseSuccess
321
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventTriggerResponseSuccess
322
+
222
323
  interface _CreateIntegrationWorkflowResponseSuccess
223
324
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationWorkflowResponse]
224
325
  def workflow_id: () -> ::String
@@ -382,6 +483,458 @@ module Aws
382
483
  ) -> _CreateProfileResponseSuccess
383
484
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProfileResponseSuccess
384
485
 
486
+ interface _CreateSegmentDefinitionResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSegmentDefinitionResponse]
488
+ def segment_definition_name: () -> ::String
489
+ def display_name: () -> ::String
490
+ def description: () -> ::String
491
+ def created_at: () -> ::Time
492
+ def segment_definition_arn: () -> ::String
493
+ def tags: () -> ::Hash[::String, ::String]
494
+ end
495
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_segment_definition-instance_method
496
+ def create_segment_definition: (
497
+ domain_name: ::String,
498
+ segment_definition_name: ::String,
499
+ display_name: ::String,
500
+ ?description: ::String,
501
+ segment_groups: {
502
+ groups: Array[
503
+ {
504
+ dimensions: Array[
505
+ {
506
+ profile_attributes: {
507
+ account_number: {
508
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
509
+ values: Array[::String]
510
+ }?,
511
+ additional_information: {
512
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
513
+ values: Array[::String]
514
+ }?,
515
+ first_name: {
516
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
517
+ values: Array[::String]
518
+ }?,
519
+ last_name: {
520
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
521
+ values: Array[::String]
522
+ }?,
523
+ middle_name: {
524
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
525
+ values: Array[::String]
526
+ }?,
527
+ gender_string: {
528
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
529
+ values: Array[::String]
530
+ }?,
531
+ party_type_string: {
532
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
533
+ values: Array[::String]
534
+ }?,
535
+ birth_date: {
536
+ dimension_type: ("BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON"),
537
+ values: Array[::String]
538
+ }?,
539
+ phone_number: {
540
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
541
+ values: Array[::String]
542
+ }?,
543
+ business_name: {
544
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
545
+ values: Array[::String]
546
+ }?,
547
+ business_phone_number: {
548
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
549
+ values: Array[::String]
550
+ }?,
551
+ home_phone_number: {
552
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
553
+ values: Array[::String]
554
+ }?,
555
+ mobile_phone_number: {
556
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
557
+ values: Array[::String]
558
+ }?,
559
+ email_address: {
560
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
561
+ values: Array[::String]
562
+ }?,
563
+ personal_email_address: {
564
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
565
+ values: Array[::String]
566
+ }?,
567
+ business_email_address: {
568
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
569
+ values: Array[::String]
570
+ }?,
571
+ address: {
572
+ city: {
573
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
574
+ values: Array[::String]
575
+ }?,
576
+ country: {
577
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
578
+ values: Array[::String]
579
+ }?,
580
+ county: {
581
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
582
+ values: Array[::String]
583
+ }?,
584
+ postal_code: {
585
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
586
+ values: Array[::String]
587
+ }?,
588
+ province: {
589
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
590
+ values: Array[::String]
591
+ }?,
592
+ state: {
593
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
594
+ values: Array[::String]
595
+ }?
596
+ }?,
597
+ shipping_address: {
598
+ city: {
599
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
600
+ values: Array[::String]
601
+ }?,
602
+ country: {
603
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
604
+ values: Array[::String]
605
+ }?,
606
+ county: {
607
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
608
+ values: Array[::String]
609
+ }?,
610
+ postal_code: {
611
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
612
+ values: Array[::String]
613
+ }?,
614
+ province: {
615
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
616
+ values: Array[::String]
617
+ }?,
618
+ state: {
619
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
620
+ values: Array[::String]
621
+ }?
622
+ }?,
623
+ mailing_address: {
624
+ city: {
625
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
626
+ values: Array[::String]
627
+ }?,
628
+ country: {
629
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
630
+ values: Array[::String]
631
+ }?,
632
+ county: {
633
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
634
+ values: Array[::String]
635
+ }?,
636
+ postal_code: {
637
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
638
+ values: Array[::String]
639
+ }?,
640
+ province: {
641
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
642
+ values: Array[::String]
643
+ }?,
644
+ state: {
645
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
646
+ values: Array[::String]
647
+ }?
648
+ }?,
649
+ billing_address: {
650
+ city: {
651
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
652
+ values: Array[::String]
653
+ }?,
654
+ country: {
655
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
656
+ values: Array[::String]
657
+ }?,
658
+ county: {
659
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
660
+ values: Array[::String]
661
+ }?,
662
+ postal_code: {
663
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
664
+ values: Array[::String]
665
+ }?,
666
+ province: {
667
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
668
+ values: Array[::String]
669
+ }?,
670
+ state: {
671
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
672
+ values: Array[::String]
673
+ }?
674
+ }?,
675
+ attributes: Hash[::String, {
676
+ 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"),
677
+ values: Array[::String]
678
+ }]?
679
+ }?,
680
+ calculated_attributes: Hash[::String, {
681
+ 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"),
682
+ values: Array[::String],
683
+ condition_overrides: {
684
+ range: {
685
+ start: ::Integer,
686
+ end: ::Integer?,
687
+ unit: ("DAYS")
688
+ }?
689
+ }?
690
+ }]?
691
+ },
692
+ ]?,
693
+ source_segments: Array[
694
+ {
695
+ segment_definition_name: ::String?
696
+ },
697
+ ]?,
698
+ source_type: ("ALL" | "ANY" | "NONE")?,
699
+ type: ("ALL" | "ANY" | "NONE")?
700
+ },
701
+ ]?,
702
+ include: ("ALL" | "ANY" | "NONE")?
703
+ },
704
+ ?tags: Hash[::String, ::String]
705
+ ) -> _CreateSegmentDefinitionResponseSuccess
706
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSegmentDefinitionResponseSuccess
707
+
708
+ interface _CreateSegmentEstimateResponseSuccess
709
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSegmentEstimateResponse]
710
+ def domain_name: () -> ::String
711
+ def estimate_id: () -> ::String
712
+ def status_code: () -> ::Integer
713
+ end
714
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_segment_estimate-instance_method
715
+ def create_segment_estimate: (
716
+ domain_name: ::String,
717
+ segment_query: {
718
+ groups: Array[
719
+ {
720
+ dimensions: Array[
721
+ {
722
+ profile_attributes: {
723
+ account_number: {
724
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
725
+ values: Array[::String]
726
+ }?,
727
+ additional_information: {
728
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
729
+ values: Array[::String]
730
+ }?,
731
+ first_name: {
732
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
733
+ values: Array[::String]
734
+ }?,
735
+ last_name: {
736
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
737
+ values: Array[::String]
738
+ }?,
739
+ middle_name: {
740
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
741
+ values: Array[::String]
742
+ }?,
743
+ gender_string: {
744
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
745
+ values: Array[::String]
746
+ }?,
747
+ party_type_string: {
748
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
749
+ values: Array[::String]
750
+ }?,
751
+ birth_date: {
752
+ dimension_type: ("BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON"),
753
+ values: Array[::String]
754
+ }?,
755
+ phone_number: {
756
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
757
+ values: Array[::String]
758
+ }?,
759
+ business_name: {
760
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
761
+ values: Array[::String]
762
+ }?,
763
+ business_phone_number: {
764
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
765
+ values: Array[::String]
766
+ }?,
767
+ home_phone_number: {
768
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
769
+ values: Array[::String]
770
+ }?,
771
+ mobile_phone_number: {
772
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
773
+ values: Array[::String]
774
+ }?,
775
+ email_address: {
776
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
777
+ values: Array[::String]
778
+ }?,
779
+ personal_email_address: {
780
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
781
+ values: Array[::String]
782
+ }?,
783
+ business_email_address: {
784
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
785
+ values: Array[::String]
786
+ }?,
787
+ address: {
788
+ city: {
789
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
790
+ values: Array[::String]
791
+ }?,
792
+ country: {
793
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
794
+ values: Array[::String]
795
+ }?,
796
+ county: {
797
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
798
+ values: Array[::String]
799
+ }?,
800
+ postal_code: {
801
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
802
+ values: Array[::String]
803
+ }?,
804
+ province: {
805
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
806
+ values: Array[::String]
807
+ }?,
808
+ state: {
809
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
810
+ values: Array[::String]
811
+ }?
812
+ }?,
813
+ shipping_address: {
814
+ city: {
815
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
816
+ values: Array[::String]
817
+ }?,
818
+ country: {
819
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
820
+ values: Array[::String]
821
+ }?,
822
+ county: {
823
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
824
+ values: Array[::String]
825
+ }?,
826
+ postal_code: {
827
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
828
+ values: Array[::String]
829
+ }?,
830
+ province: {
831
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
832
+ values: Array[::String]
833
+ }?,
834
+ state: {
835
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
836
+ values: Array[::String]
837
+ }?
838
+ }?,
839
+ mailing_address: {
840
+ city: {
841
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
842
+ values: Array[::String]
843
+ }?,
844
+ country: {
845
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
846
+ values: Array[::String]
847
+ }?,
848
+ county: {
849
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
850
+ values: Array[::String]
851
+ }?,
852
+ postal_code: {
853
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
854
+ values: Array[::String]
855
+ }?,
856
+ province: {
857
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
858
+ values: Array[::String]
859
+ }?,
860
+ state: {
861
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
862
+ values: Array[::String]
863
+ }?
864
+ }?,
865
+ billing_address: {
866
+ city: {
867
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
868
+ values: Array[::String]
869
+ }?,
870
+ country: {
871
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
872
+ values: Array[::String]
873
+ }?,
874
+ county: {
875
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
876
+ values: Array[::String]
877
+ }?,
878
+ postal_code: {
879
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
880
+ values: Array[::String]
881
+ }?,
882
+ province: {
883
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
884
+ values: Array[::String]
885
+ }?,
886
+ state: {
887
+ dimension_type: ("INCLUSIVE" | "EXCLUSIVE" | "CONTAINS" | "BEGINS_WITH" | "ENDS_WITH"),
888
+ values: Array[::String]
889
+ }?
890
+ }?,
891
+ attributes: Hash[::String, {
892
+ 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"),
893
+ values: Array[::String]
894
+ }]?
895
+ }?,
896
+ calculated_attributes: Hash[::String, {
897
+ 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"),
898
+ values: Array[::String],
899
+ condition_overrides: {
900
+ range: {
901
+ start: ::Integer,
902
+ end: ::Integer?,
903
+ unit: ("DAYS")
904
+ }?
905
+ }?
906
+ }]?
907
+ },
908
+ ]?,
909
+ source_segments: Array[
910
+ {
911
+ segment_definition_name: ::String?
912
+ },
913
+ ]?,
914
+ source_type: ("ALL" | "ANY" | "NONE")?,
915
+ type: ("ALL" | "ANY" | "NONE")?
916
+ },
917
+ ]?,
918
+ include: ("ALL" | "ANY" | "NONE")?
919
+ }
920
+ ) -> _CreateSegmentEstimateResponseSuccess
921
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSegmentEstimateResponseSuccess
922
+
923
+ interface _CreateSegmentSnapshotResponseSuccess
924
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSegmentSnapshotResponse]
925
+ def snapshot_id: () -> ::String
926
+ end
927
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_segment_snapshot-instance_method
928
+ def create_segment_snapshot: (
929
+ domain_name: ::String,
930
+ segment_definition_name: ::String,
931
+ data_format: ("CSV" | "JSONL" | "ORC"),
932
+ ?encryption_key: ::String,
933
+ ?role_arn: ::String,
934
+ ?destination_uri: ::String
935
+ ) -> _CreateSegmentSnapshotResponseSuccess
936
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSegmentSnapshotResponseSuccess
937
+
385
938
  interface _DeleteCalculatedAttributeDefinitionResponseSuccess
386
939
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCalculatedAttributeDefinitionResponse]
387
940
  end
@@ -412,6 +965,17 @@ module Aws
412
965
  ) -> _DeleteEventStreamResponseSuccess
413
966
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventStreamResponseSuccess
414
967
 
968
+ interface _DeleteEventTriggerResponseSuccess
969
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventTriggerResponse]
970
+ def message: () -> ::String
971
+ end
972
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#delete_event_trigger-instance_method
973
+ def delete_event_trigger: (
974
+ domain_name: ::String,
975
+ event_trigger_name: ::String
976
+ ) -> _DeleteEventTriggerResponseSuccess
977
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventTriggerResponseSuccess
978
+
415
979
  interface _DeleteIntegrationResponseSuccess
416
980
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
417
981
  def message: () -> ::String
@@ -471,6 +1035,17 @@ module Aws
471
1035
  ) -> _DeleteProfileObjectTypeResponseSuccess
472
1036
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProfileObjectTypeResponseSuccess
473
1037
 
1038
+ interface _DeleteSegmentDefinitionResponseSuccess
1039
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSegmentDefinitionResponse]
1040
+ def message: () -> ::String
1041
+ end
1042
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#delete_segment_definition-instance_method
1043
+ def delete_segment_definition: (
1044
+ domain_name: ::String,
1045
+ segment_definition_name: ::String
1046
+ ) -> _DeleteSegmentDefinitionResponseSuccess
1047
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSegmentDefinitionResponseSuccess
1048
+
474
1049
  interface _DeleteWorkflowResponseSuccess
475
1050
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkflowResponse]
476
1051
  end
@@ -523,6 +1098,7 @@ module Aws
523
1098
  def created_at: () -> ::Time
524
1099
  def last_updated_at: () -> ::Time
525
1100
  def statistic: () -> ("FIRST_OCCURRENCE" | "LAST_OCCURRENCE" | "COUNT" | "SUM" | "MINIMUM" | "MAXIMUM" | "AVERAGE" | "MAX_OCCURRENCE")
1101
+ def filter: () -> Types::Filter
526
1102
  def conditions: () -> Types::Conditions
527
1103
  def attribute_details: () -> Types::AttributeDetails
528
1104
  def tags: () -> ::Hash[::String, ::String]
@@ -585,6 +1161,25 @@ module Aws
585
1161
  ) -> _GetEventStreamResponseSuccess
586
1162
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventStreamResponseSuccess
587
1163
 
1164
+ interface _GetEventTriggerResponseSuccess
1165
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEventTriggerResponse]
1166
+ def event_trigger_name: () -> ::String
1167
+ def object_type_name: () -> ::String
1168
+ def description: () -> ::String
1169
+ def event_trigger_conditions: () -> ::Array[Types::EventTriggerCondition]
1170
+ def segment_filter: () -> ::String
1171
+ def event_trigger_limits: () -> Types::EventTriggerLimits
1172
+ def created_at: () -> ::Time
1173
+ def last_updated_at: () -> ::Time
1174
+ def tags: () -> ::Hash[::String, ::String]
1175
+ end
1176
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_event_trigger-instance_method
1177
+ def get_event_trigger: (
1178
+ domain_name: ::String,
1179
+ event_trigger_name: ::String
1180
+ ) -> _GetEventTriggerResponseSuccess
1181
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventTriggerResponseSuccess
1182
+
588
1183
  interface _GetIdentityResolutionJobResponseSuccess
589
1184
  include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityResolutionJobResponse]
590
1185
  def domain_name: () -> ::String
@@ -618,6 +1213,7 @@ module Aws
618
1213
  def workflow_id: () -> ::String
619
1214
  def is_unstructured: () -> bool
620
1215
  def role_arn: () -> ::String
1216
+ def event_trigger_names: () -> ::Array[::String]
621
1217
  end
622
1218
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_integration-instance_method
623
1219
  def get_integration: (
@@ -681,6 +1277,71 @@ module Aws
681
1277
  ) -> _GetProfileObjectTypeTemplateResponseSuccess
682
1278
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileObjectTypeTemplateResponseSuccess
683
1279
 
1280
+ interface _GetSegmentDefinitionResponseSuccess
1281
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSegmentDefinitionResponse]
1282
+ def segment_definition_name: () -> ::String
1283
+ def display_name: () -> ::String
1284
+ def description: () -> ::String
1285
+ def segment_groups: () -> Types::SegmentGroup
1286
+ def segment_definition_arn: () -> ::String
1287
+ def created_at: () -> ::Time
1288
+ def tags: () -> ::Hash[::String, ::String]
1289
+ end
1290
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_segment_definition-instance_method
1291
+ def get_segment_definition: (
1292
+ domain_name: ::String,
1293
+ segment_definition_name: ::String
1294
+ ) -> _GetSegmentDefinitionResponseSuccess
1295
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSegmentDefinitionResponseSuccess
1296
+
1297
+ interface _GetSegmentEstimateResponseSuccess
1298
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSegmentEstimateResponse]
1299
+ def domain_name: () -> ::String
1300
+ def estimate_id: () -> ::String
1301
+ def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED")
1302
+ def estimate: () -> ::String
1303
+ def message: () -> ::String
1304
+ def status_code: () -> ::Integer
1305
+ end
1306
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_segment_estimate-instance_method
1307
+ def get_segment_estimate: (
1308
+ domain_name: ::String,
1309
+ estimate_id: ::String
1310
+ ) -> _GetSegmentEstimateResponseSuccess
1311
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSegmentEstimateResponseSuccess
1312
+
1313
+ interface _GetSegmentMembershipResponseSuccess
1314
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSegmentMembershipResponse]
1315
+ def segment_definition_name: () -> ::String
1316
+ def profiles: () -> ::Array[Types::ProfileQueryResult]
1317
+ def failures: () -> ::Array[Types::ProfileQueryFailures]
1318
+ end
1319
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_segment_membership-instance_method
1320
+ def get_segment_membership: (
1321
+ domain_name: ::String,
1322
+ segment_definition_name: ::String,
1323
+ profile_ids: Array[::String]
1324
+ ) -> _GetSegmentMembershipResponseSuccess
1325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSegmentMembershipResponseSuccess
1326
+
1327
+ interface _GetSegmentSnapshotResponseSuccess
1328
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSegmentSnapshotResponse]
1329
+ def snapshot_id: () -> ::String
1330
+ def status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED")
1331
+ def status_message: () -> ::String
1332
+ def data_format: () -> ("CSV" | "JSONL" | "ORC")
1333
+ def encryption_key: () -> ::String
1334
+ def role_arn: () -> ::String
1335
+ def destination_uri: () -> ::String
1336
+ end
1337
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_segment_snapshot-instance_method
1338
+ def get_segment_snapshot: (
1339
+ domain_name: ::String,
1340
+ segment_definition_name: ::String,
1341
+ snapshot_id: ::String
1342
+ ) -> _GetSegmentSnapshotResponseSuccess
1343
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSegmentSnapshotResponseSuccess
1344
+
684
1345
  interface _GetSimilarProfilesResponseSuccess
685
1346
  include ::Seahorse::Client::_ResponseSuccess[Types::GetSimilarProfilesResponse]
686
1347
  def profile_ids: () -> ::Array[::String]
@@ -801,6 +1462,19 @@ module Aws
801
1462
  ) -> _ListEventStreamsResponseSuccess
802
1463
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventStreamsResponseSuccess
803
1464
 
1465
+ interface _ListEventTriggersResponseSuccess
1466
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventTriggersResponse]
1467
+ def items: () -> ::Array[Types::EventTriggerSummaryItem]
1468
+ def next_token: () -> ::String
1469
+ end
1470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_event_triggers-instance_method
1471
+ def list_event_triggers: (
1472
+ domain_name: ::String,
1473
+ ?next_token: ::String,
1474
+ ?max_results: ::Integer
1475
+ ) -> _ListEventTriggersResponseSuccess
1476
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventTriggersResponseSuccess
1477
+
804
1478
  interface _ListIdentityResolutionJobsResponseSuccess
805
1479
  include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityResolutionJobsResponse]
806
1480
  def identity_resolution_jobs_list: () -> ::Array[Types::IdentityResolutionJob]
@@ -828,6 +1502,34 @@ module Aws
828
1502
  ) -> _ListIntegrationsResponseSuccess
829
1503
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIntegrationsResponseSuccess
830
1504
 
1505
+ interface _ListObjectTypeAttributesResponseSuccess
1506
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListObjectTypeAttributesResponse]
1507
+ def items: () -> ::Array[Types::ListObjectTypeAttributeItem]
1508
+ def next_token: () -> ::String
1509
+ end
1510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_object_type_attributes-instance_method
1511
+ def list_object_type_attributes: (
1512
+ ?next_token: ::String,
1513
+ ?max_results: ::Integer,
1514
+ domain_name: ::String,
1515
+ object_type_name: ::String
1516
+ ) -> _ListObjectTypeAttributesResponseSuccess
1517
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListObjectTypeAttributesResponseSuccess
1518
+
1519
+ interface _ListProfileAttributeValuesResponseSuccess
1520
+ include ::Seahorse::Client::_ResponseSuccess[Types::ProfileAttributeValuesResponse]
1521
+ def domain_name: () -> ::String
1522
+ def attribute_name: () -> ::String
1523
+ def items: () -> ::Array[Types::AttributeValueItem]
1524
+ def status_code: () -> ::Integer
1525
+ end
1526
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_profile_attribute_values-instance_method
1527
+ def list_profile_attribute_values: (
1528
+ domain_name: ::String,
1529
+ attribute_name: ::String
1530
+ ) -> _ListProfileAttributeValuesResponseSuccess
1531
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfileAttributeValuesResponseSuccess
1532
+
831
1533
  interface _ListProfileObjectTypeTemplatesResponseSuccess
832
1534
  include ::Seahorse::Client::_ResponseSuccess[Types::ListProfileObjectTypeTemplatesResponse]
833
1535
  def items: () -> ::Array[Types::ListProfileObjectTypeTemplateItem]
@@ -885,6 +1587,19 @@ module Aws
885
1587
  ) -> _ListRuleBasedMatchesResponseSuccess
886
1588
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRuleBasedMatchesResponseSuccess
887
1589
 
1590
+ interface _ListSegmentDefinitionsResponseSuccess
1591
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSegmentDefinitionsResponse]
1592
+ def next_token: () -> ::String
1593
+ def items: () -> ::Array[Types::SegmentDefinitionItem]
1594
+ end
1595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_segment_definitions-instance_method
1596
+ def list_segment_definitions: (
1597
+ domain_name: ::String,
1598
+ ?max_results: ::Integer,
1599
+ ?next_token: ::String
1600
+ ) -> _ListSegmentDefinitionsResponseSuccess
1601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSegmentDefinitionsResponseSuccess
1602
+
888
1603
  interface _ListTagsForResourceResponseSuccess
889
1604
  include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
890
1605
  def tags: () -> ::Hash[::String, ::String]
@@ -959,6 +1674,7 @@ module Aws
959
1674
  def workflow_id: () -> ::String
960
1675
  def is_unstructured: () -> bool
961
1676
  def role_arn: () -> ::String
1677
+ def event_trigger_names: () -> ::Array[::String]
962
1678
  end
963
1679
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#put_integration-instance_method
964
1680
  def put_integration: (
@@ -1028,7 +1744,8 @@ module Aws
1028
1744
  }
1029
1745
  },
1030
1746
  ?object_type_names: Hash[::String, ::String],
1031
- ?role_arn: ::String
1747
+ ?role_arn: ::String,
1748
+ ?event_trigger_names: Array[::String]
1032
1749
  ) -> _PutIntegrationResponseSuccess
1033
1750
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
1034
1751
 
@@ -1079,7 +1796,7 @@ module Aws
1079
1796
  }],
1080
1797
  ?keys: Hash[::String, Array[
1081
1798
  {
1082
- standard_identifiers: Array[("PROFILE" | "ASSET" | "CASE" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY" | "ORDER")]?,
1799
+ standard_identifiers: Array[("PROFILE" | "ASSET" | "CASE" | "ORDER" | "COMMUNICATION_RECORD" | "UNIQUE" | "SECONDARY" | "LOOKUP_ONLY" | "NEW_ONLY")]?,
1083
1800
  field_names: Array[::String]?
1084
1801
  },
1085
1802
  ]],
@@ -1235,6 +1952,56 @@ module Aws
1235
1952
  ) -> _UpdateDomainResponseSuccess
1236
1953
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
1237
1954
 
1955
+ interface _UpdateEventTriggerResponseSuccess
1956
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEventTriggerResponse]
1957
+ def event_trigger_name: () -> ::String
1958
+ def object_type_name: () -> ::String
1959
+ def description: () -> ::String
1960
+ def event_trigger_conditions: () -> ::Array[Types::EventTriggerCondition]
1961
+ def segment_filter: () -> ::String
1962
+ def event_trigger_limits: () -> Types::EventTriggerLimits
1963
+ def created_at: () -> ::Time
1964
+ def last_updated_at: () -> ::Time
1965
+ def tags: () -> ::Hash[::String, ::String]
1966
+ end
1967
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#update_event_trigger-instance_method
1968
+ def update_event_trigger: (
1969
+ domain_name: ::String,
1970
+ event_trigger_name: ::String,
1971
+ ?object_type_name: ::String,
1972
+ ?description: ::String,
1973
+ ?event_trigger_conditions: Array[
1974
+ {
1975
+ event_trigger_dimensions: Array[
1976
+ {
1977
+ object_attributes: Array[
1978
+ {
1979
+ source: ::String?,
1980
+ field_name: ::String?,
1981
+ 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"),
1982
+ values: Array[::String]
1983
+ },
1984
+ ]
1985
+ },
1986
+ ],
1987
+ logical_operator: ("ANY" | "ALL" | "NONE")
1988
+ },
1989
+ ],
1990
+ ?segment_filter: ::String,
1991
+ ?event_trigger_limits: {
1992
+ event_expiration: ::Integer?,
1993
+ periods: Array[
1994
+ {
1995
+ unit: ("HOURS" | "DAYS" | "WEEKS" | "MONTHS"),
1996
+ value: ::Integer,
1997
+ max_invocations_per_profile: ::Integer?,
1998
+ unlimited: bool?
1999
+ },
2000
+ ]?
2001
+ }
2002
+ ) -> _UpdateEventTriggerResponseSuccess
2003
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventTriggerResponseSuccess
2004
+
1238
2005
  interface _UpdateProfileResponseSuccess
1239
2006
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProfileResponse]
1240
2007
  def profile_id: () -> ::String