aws-sdk-customerprofiles 1.57.0 → 1.58.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5191bb15d1710f3edec94c8dea32233df5d07c7f9c776bd1e6d8d86abbc6d16
4
- data.tar.gz: 77cffa59ebb0bcfd7e0835345190622ed2e320933d58e5e36b524f17d41558ef
3
+ metadata.gz: efad46bf7040898bda6634a9c5c1c9904ab75fbce8c8367882f71a7678a95dfc
4
+ data.tar.gz: 781b5ebcb893263c583c864b88400334f2450417a6072613e7ba5455bdda32f5
5
5
  SHA512:
6
- metadata.gz: a400528d3875d84ba4d692028e25968e499c033342b23aad23bb07b6834249cd7712f6e63cb82255177d899952e8e995420202373ba238a032bc89c9c7573dc1
7
- data.tar.gz: ccbda2ad719b6ea3830dfc22987d2bb295d4261f662010f743e06593920a488d6ff11e1ee3e495da83a380305681d633a27d9dca719091bc39c25f911932c49e
6
+ metadata.gz: 9defc6628a25a523ddb45f3eca4480c2e35f42d4d3b2b771d9183bf28c2dd6e450204787b5e6a6f8c29635a9fa4128a6daadc262bfbf8220ba60fecd9b7ff6dc
7
+ data.tar.gz: c204321bef7523d8ddce724322c2fd2000572da21a77a56bbefd534d91c3bea85e09acdcfeca5a975ca3cb3c2dcc7abb0295a376b1eed980b7970e8b287499ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2024-12-02)
5
+ ------------------
6
+
7
+ * Feature - This release introduces Event Trigger APIs as part of Amazon Connect Customer Profiles service.
8
+
4
9
  1.57.0 (2024-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
@@ -1062,6 +1062,128 @@ module Aws::CustomerProfiles
1062
1062
  req.send_request(options)
1063
1063
  end
1064
1064
 
1065
+ # Creates an event trigger, which specifies the rules when to perform
1066
+ # action based on customer's ingested data.
1067
+ #
1068
+ # Each event stream can be associated with only one integration in the
1069
+ # same region and AWS account as the event stream.
1070
+ #
1071
+ # @option params [required, String] :domain_name
1072
+ # The unique name of the domain.
1073
+ #
1074
+ # @option params [required, String] :event_trigger_name
1075
+ # The unique name of the event trigger.
1076
+ #
1077
+ # @option params [required, String] :object_type_name
1078
+ # The unique name of the object type.
1079
+ #
1080
+ # @option params [String] :description
1081
+ # The description of the event trigger.
1082
+ #
1083
+ # @option params [required, Array<Types::EventTriggerCondition>] :event_trigger_conditions
1084
+ # A list of conditions that determine when an event should trigger the
1085
+ # destination.
1086
+ #
1087
+ # @option params [String] :segment_filter
1088
+ # The destination is triggered only for profiles that meet the criteria
1089
+ # of a segment definition.
1090
+ #
1091
+ # @option params [Types::EventTriggerLimits] :event_trigger_limits
1092
+ # Defines limits controlling whether an event triggers the destination,
1093
+ # based on ingestion latency and the number of invocations per profile
1094
+ # over specific time periods.
1095
+ #
1096
+ # @option params [Hash<String,String>] :tags
1097
+ # An array of key-value pairs to apply to this resource.
1098
+ #
1099
+ # @return [Types::CreateEventTriggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1100
+ #
1101
+ # * {Types::CreateEventTriggerResponse#event_trigger_name #event_trigger_name} => String
1102
+ # * {Types::CreateEventTriggerResponse#object_type_name #object_type_name} => String
1103
+ # * {Types::CreateEventTriggerResponse#description #description} => String
1104
+ # * {Types::CreateEventTriggerResponse#event_trigger_conditions #event_trigger_conditions} => Array&lt;Types::EventTriggerCondition&gt;
1105
+ # * {Types::CreateEventTriggerResponse#segment_filter #segment_filter} => String
1106
+ # * {Types::CreateEventTriggerResponse#event_trigger_limits #event_trigger_limits} => Types::EventTriggerLimits
1107
+ # * {Types::CreateEventTriggerResponse#created_at #created_at} => Time
1108
+ # * {Types::CreateEventTriggerResponse#last_updated_at #last_updated_at} => Time
1109
+ # * {Types::CreateEventTriggerResponse#tags #tags} => Hash&lt;String,String&gt;
1110
+ #
1111
+ # @example Request syntax with placeholder values
1112
+ #
1113
+ # resp = client.create_event_trigger({
1114
+ # domain_name: "name", # required
1115
+ # event_trigger_name: "name", # required
1116
+ # object_type_name: "typeName", # required
1117
+ # description: "sensitiveText",
1118
+ # event_trigger_conditions: [ # required
1119
+ # {
1120
+ # event_trigger_dimensions: [ # required
1121
+ # {
1122
+ # object_attributes: [ # required
1123
+ # {
1124
+ # source: "text",
1125
+ # field_name: "fieldName",
1126
+ # comparison_operator: "INCLUSIVE", # required, accepts 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
1127
+ # values: ["string1To255"], # required
1128
+ # },
1129
+ # ],
1130
+ # },
1131
+ # ],
1132
+ # logical_operator: "ANY", # required, accepts ANY, ALL, NONE
1133
+ # },
1134
+ # ],
1135
+ # segment_filter: "name",
1136
+ # event_trigger_limits: {
1137
+ # event_expiration: 1,
1138
+ # periods: [
1139
+ # {
1140
+ # unit: "HOURS", # required, accepts HOURS, DAYS, WEEKS, MONTHS
1141
+ # value: 1, # required
1142
+ # max_invocations_per_profile: 1,
1143
+ # unlimited: false,
1144
+ # },
1145
+ # ],
1146
+ # },
1147
+ # tags: {
1148
+ # "TagKey" => "TagValue",
1149
+ # },
1150
+ # })
1151
+ #
1152
+ # @example Response structure
1153
+ #
1154
+ # resp.event_trigger_name #=> String
1155
+ # resp.object_type_name #=> String
1156
+ # resp.description #=> String
1157
+ # resp.event_trigger_conditions #=> Array
1158
+ # resp.event_trigger_conditions[0].event_trigger_dimensions #=> Array
1159
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes #=> Array
1160
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].source #=> String
1161
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].field_name #=> String
1162
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].comparison_operator #=> String, one of "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"
1163
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].values #=> Array
1164
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].values[0] #=> String
1165
+ # resp.event_trigger_conditions[0].logical_operator #=> String, one of "ANY", "ALL", "NONE"
1166
+ # resp.segment_filter #=> String
1167
+ # resp.event_trigger_limits.event_expiration #=> Integer
1168
+ # resp.event_trigger_limits.periods #=> Array
1169
+ # resp.event_trigger_limits.periods[0].unit #=> String, one of "HOURS", "DAYS", "WEEKS", "MONTHS"
1170
+ # resp.event_trigger_limits.periods[0].value #=> Integer
1171
+ # resp.event_trigger_limits.periods[0].max_invocations_per_profile #=> Integer
1172
+ # resp.event_trigger_limits.periods[0].unlimited #=> Boolean
1173
+ # resp.created_at #=> Time
1174
+ # resp.last_updated_at #=> Time
1175
+ # resp.tags #=> Hash
1176
+ # resp.tags["TagKey"] #=> String
1177
+ #
1178
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateEventTrigger AWS API Documentation
1179
+ #
1180
+ # @overload create_event_trigger(params = {})
1181
+ # @param [Hash] params ({})
1182
+ def create_event_trigger(params = {}, options = {})
1183
+ req = build_request(:create_event_trigger, params)
1184
+ req.send_request(options)
1185
+ end
1186
+
1065
1187
  # Creates an integration workflow. An integration workflow is an async
1066
1188
  # process which ingests historic data and sets up an integration for
1067
1189
  # ongoing updates. The supported Amazon AppFlow sources are Salesforce,
@@ -2012,6 +2134,43 @@ module Aws::CustomerProfiles
2012
2134
  req.send_request(options)
2013
2135
  end
2014
2136
 
2137
+ # Disable and deletes the Event Trigger.
2138
+ #
2139
+ # <note markdown="1"> You cannot delete an Event Trigger with an active Integration
2140
+ # associated.
2141
+ #
2142
+ # </note>
2143
+ #
2144
+ # @option params [required, String] :domain_name
2145
+ # The unique name of the domain.
2146
+ #
2147
+ # @option params [required, String] :event_trigger_name
2148
+ # The unique name of the event trigger.
2149
+ #
2150
+ # @return [Types::DeleteEventTriggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2151
+ #
2152
+ # * {Types::DeleteEventTriggerResponse#message #message} => String
2153
+ #
2154
+ # @example Request syntax with placeholder values
2155
+ #
2156
+ # resp = client.delete_event_trigger({
2157
+ # domain_name: "name", # required
2158
+ # event_trigger_name: "name", # required
2159
+ # })
2160
+ #
2161
+ # @example Response structure
2162
+ #
2163
+ # resp.message #=> String
2164
+ #
2165
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteEventTrigger AWS API Documentation
2166
+ #
2167
+ # @overload delete_event_trigger(params = {})
2168
+ # @param [Hash] params ({})
2169
+ def delete_event_trigger(params = {}, options = {})
2170
+ req = build_request(:delete_event_trigger, params)
2171
+ req.send_request(options)
2172
+ end
2173
+
2015
2174
  # Removes an integration from a specific domain.
2016
2175
  #
2017
2176
  # @option params [required, String] :domain_name
@@ -2601,6 +2760,68 @@ module Aws::CustomerProfiles
2601
2760
  req.send_request(options)
2602
2761
  end
2603
2762
 
2763
+ # Get a specific Event Trigger from the domain.
2764
+ #
2765
+ # @option params [required, String] :domain_name
2766
+ # The unique name of the domain.
2767
+ #
2768
+ # @option params [required, String] :event_trigger_name
2769
+ # The unique name of the event trigger.
2770
+ #
2771
+ # @return [Types::GetEventTriggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2772
+ #
2773
+ # * {Types::GetEventTriggerResponse#event_trigger_name #event_trigger_name} => String
2774
+ # * {Types::GetEventTriggerResponse#object_type_name #object_type_name} => String
2775
+ # * {Types::GetEventTriggerResponse#description #description} => String
2776
+ # * {Types::GetEventTriggerResponse#event_trigger_conditions #event_trigger_conditions} => Array&lt;Types::EventTriggerCondition&gt;
2777
+ # * {Types::GetEventTriggerResponse#segment_filter #segment_filter} => String
2778
+ # * {Types::GetEventTriggerResponse#event_trigger_limits #event_trigger_limits} => Types::EventTriggerLimits
2779
+ # * {Types::GetEventTriggerResponse#created_at #created_at} => Time
2780
+ # * {Types::GetEventTriggerResponse#last_updated_at #last_updated_at} => Time
2781
+ # * {Types::GetEventTriggerResponse#tags #tags} => Hash&lt;String,String&gt;
2782
+ #
2783
+ # @example Request syntax with placeholder values
2784
+ #
2785
+ # resp = client.get_event_trigger({
2786
+ # domain_name: "name", # required
2787
+ # event_trigger_name: "name", # required
2788
+ # })
2789
+ #
2790
+ # @example Response structure
2791
+ #
2792
+ # resp.event_trigger_name #=> String
2793
+ # resp.object_type_name #=> String
2794
+ # resp.description #=> String
2795
+ # resp.event_trigger_conditions #=> Array
2796
+ # resp.event_trigger_conditions[0].event_trigger_dimensions #=> Array
2797
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes #=> Array
2798
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].source #=> String
2799
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].field_name #=> String
2800
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].comparison_operator #=> String, one of "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"
2801
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].values #=> Array
2802
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].values[0] #=> String
2803
+ # resp.event_trigger_conditions[0].logical_operator #=> String, one of "ANY", "ALL", "NONE"
2804
+ # resp.segment_filter #=> String
2805
+ # resp.event_trigger_limits.event_expiration #=> Integer
2806
+ # resp.event_trigger_limits.periods #=> Array
2807
+ # resp.event_trigger_limits.periods[0].unit #=> String, one of "HOURS", "DAYS", "WEEKS", "MONTHS"
2808
+ # resp.event_trigger_limits.periods[0].value #=> Integer
2809
+ # resp.event_trigger_limits.periods[0].max_invocations_per_profile #=> Integer
2810
+ # resp.event_trigger_limits.periods[0].unlimited #=> Boolean
2811
+ # resp.created_at #=> Time
2812
+ # resp.last_updated_at #=> Time
2813
+ # resp.tags #=> Hash
2814
+ # resp.tags["TagKey"] #=> String
2815
+ #
2816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetEventTrigger AWS API Documentation
2817
+ #
2818
+ # @overload get_event_trigger(params = {})
2819
+ # @param [Hash] params ({})
2820
+ def get_event_trigger(params = {}, options = {})
2821
+ req = build_request(:get_event_trigger, params)
2822
+ req.send_request(options)
2823
+ end
2824
+
2604
2825
  # Returns information about an Identity Resolution Job in a specific
2605
2826
  # domain.
2606
2827
  #
@@ -2691,6 +2912,7 @@ module Aws::CustomerProfiles
2691
2912
  # * {Types::GetIntegrationResponse#workflow_id #workflow_id} => String
2692
2913
  # * {Types::GetIntegrationResponse#is_unstructured #is_unstructured} => Boolean
2693
2914
  # * {Types::GetIntegrationResponse#role_arn #role_arn} => String
2915
+ # * {Types::GetIntegrationResponse#event_trigger_names #event_trigger_names} => Array&lt;String&gt;
2694
2916
  #
2695
2917
  # @example Request syntax with placeholder values
2696
2918
  #
@@ -2713,6 +2935,8 @@ module Aws::CustomerProfiles
2713
2935
  # resp.workflow_id #=> String
2714
2936
  # resp.is_unstructured #=> Boolean
2715
2937
  # resp.role_arn #=> String
2938
+ # resp.event_trigger_names #=> Array
2939
+ # resp.event_trigger_names[0] #=> String
2716
2940
  #
2717
2941
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegration AWS API Documentation
2718
2942
  #
@@ -3538,6 +3762,8 @@ module Aws::CustomerProfiles
3538
3762
  # resp.items[0].workflow_id #=> String
3539
3763
  # resp.items[0].is_unstructured #=> Boolean
3540
3764
  # resp.items[0].role_arn #=> String
3765
+ # resp.items[0].event_trigger_names #=> Array
3766
+ # resp.items[0].event_trigger_names[0] #=> String
3541
3767
  # resp.next_token #=> String
3542
3768
  #
3543
3769
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListAccountIntegrations AWS API Documentation
@@ -3733,6 +3959,53 @@ module Aws::CustomerProfiles
3733
3959
  req.send_request(options)
3734
3960
  end
3735
3961
 
3962
+ # List all Event Triggers under a domain.
3963
+ #
3964
+ # @option params [required, String] :domain_name
3965
+ # The unique name of the domain.
3966
+ #
3967
+ # @option params [String] :next_token
3968
+ # The pagination token to use with ListEventTriggers.
3969
+ #
3970
+ # @option params [Integer] :max_results
3971
+ # The maximum number of results to return per page.
3972
+ #
3973
+ # @return [Types::ListEventTriggersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3974
+ #
3975
+ # * {Types::ListEventTriggersResponse#items #items} => Array&lt;Types::EventTriggerSummaryItem&gt;
3976
+ # * {Types::ListEventTriggersResponse#next_token #next_token} => String
3977
+ #
3978
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3979
+ #
3980
+ # @example Request syntax with placeholder values
3981
+ #
3982
+ # resp = client.list_event_triggers({
3983
+ # domain_name: "name", # required
3984
+ # next_token: "token",
3985
+ # max_results: 1,
3986
+ # })
3987
+ #
3988
+ # @example Response structure
3989
+ #
3990
+ # resp.items #=> Array
3991
+ # resp.items[0].object_type_name #=> String
3992
+ # resp.items[0].event_trigger_name #=> String
3993
+ # resp.items[0].description #=> String
3994
+ # resp.items[0].created_at #=> Time
3995
+ # resp.items[0].last_updated_at #=> Time
3996
+ # resp.items[0].tags #=> Hash
3997
+ # resp.items[0].tags["TagKey"] #=> String
3998
+ # resp.next_token #=> String
3999
+ #
4000
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListEventTriggers AWS API Documentation
4001
+ #
4002
+ # @overload list_event_triggers(params = {})
4003
+ # @param [Hash] params ({})
4004
+ def list_event_triggers(params = {}, options = {})
4005
+ req = build_request(:list_event_triggers, params)
4006
+ req.send_request(options)
4007
+ end
4008
+
3736
4009
  # Lists all of the Identity Resolution Jobs in your domain. The response
3737
4010
  # sorts the list by `JobStartTime`.
3738
4011
  #
@@ -3829,6 +4102,8 @@ module Aws::CustomerProfiles
3829
4102
  # resp.items[0].workflow_id #=> String
3830
4103
  # resp.items[0].is_unstructured #=> Boolean
3831
4104
  # resp.items[0].role_arn #=> String
4105
+ # resp.items[0].event_trigger_names #=> Array
4106
+ # resp.items[0].event_trigger_names[0] #=> String
3832
4107
  # resp.next_token #=> String
3833
4108
  #
3834
4109
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrations AWS API Documentation
@@ -4392,6 +4667,10 @@ module Aws::CustomerProfiles
4392
4667
  # The Amazon Resource Name (ARN) of the IAM role. The Integration uses
4393
4668
  # this role to make Customer Profiles requests on your behalf.
4394
4669
  #
4670
+ # @option params [Array<String>] :event_trigger_names
4671
+ # A list of unique names for active event triggers associated with the
4672
+ # integration.
4673
+ #
4395
4674
  # @return [Types::PutIntegrationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4396
4675
  #
4397
4676
  # * {Types::PutIntegrationResponse#domain_name #domain_name} => String
@@ -4404,6 +4683,7 @@ module Aws::CustomerProfiles
4404
4683
  # * {Types::PutIntegrationResponse#workflow_id #workflow_id} => String
4405
4684
  # * {Types::PutIntegrationResponse#is_unstructured #is_unstructured} => Boolean
4406
4685
  # * {Types::PutIntegrationResponse#role_arn #role_arn} => String
4686
+ # * {Types::PutIntegrationResponse#event_trigger_names #event_trigger_names} => Array&lt;String&gt;
4407
4687
  #
4408
4688
  # @example Request syntax with placeholder values
4409
4689
  #
@@ -4481,6 +4761,7 @@ module Aws::CustomerProfiles
4481
4761
  # "string1To255" => "typeName",
4482
4762
  # },
4483
4763
  # role_arn: "RoleArn",
4764
+ # event_trigger_names: ["name"],
4484
4765
  # })
4485
4766
  #
4486
4767
  # @example Response structure
@@ -4497,6 +4778,8 @@ module Aws::CustomerProfiles
4497
4778
  # resp.workflow_id #=> String
4498
4779
  # resp.is_unstructured #=> Boolean
4499
4780
  # resp.role_arn #=> String
4781
+ # resp.event_trigger_names #=> Array
4782
+ # resp.event_trigger_names[0] #=> String
4500
4783
  #
4501
4784
  # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegration AWS API Documentation
4502
4785
  #
@@ -5210,6 +5493,118 @@ module Aws::CustomerProfiles
5210
5493
  req.send_request(options)
5211
5494
  end
5212
5495
 
5496
+ # Update the properties of an Event Trigger.
5497
+ #
5498
+ # @option params [required, String] :domain_name
5499
+ # The unique name of the domain.
5500
+ #
5501
+ # @option params [required, String] :event_trigger_name
5502
+ # The unique name of the event trigger.
5503
+ #
5504
+ # @option params [String] :object_type_name
5505
+ # The unique name of the object type.
5506
+ #
5507
+ # @option params [String] :description
5508
+ # The description of the event trigger.
5509
+ #
5510
+ # @option params [Array<Types::EventTriggerCondition>] :event_trigger_conditions
5511
+ # A list of conditions that determine when an event should trigger the
5512
+ # destination.
5513
+ #
5514
+ # @option params [String] :segment_filter
5515
+ # The destination is triggered only for profiles that meet the criteria
5516
+ # of a segment definition.
5517
+ #
5518
+ # @option params [Types::EventTriggerLimits] :event_trigger_limits
5519
+ # Defines limits controlling whether an event triggers the destination,
5520
+ # based on ingestion latency and the number of invocations per profile
5521
+ # over specific time periods.
5522
+ #
5523
+ # @return [Types::UpdateEventTriggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5524
+ #
5525
+ # * {Types::UpdateEventTriggerResponse#event_trigger_name #event_trigger_name} => String
5526
+ # * {Types::UpdateEventTriggerResponse#object_type_name #object_type_name} => String
5527
+ # * {Types::UpdateEventTriggerResponse#description #description} => String
5528
+ # * {Types::UpdateEventTriggerResponse#event_trigger_conditions #event_trigger_conditions} => Array&lt;Types::EventTriggerCondition&gt;
5529
+ # * {Types::UpdateEventTriggerResponse#segment_filter #segment_filter} => String
5530
+ # * {Types::UpdateEventTriggerResponse#event_trigger_limits #event_trigger_limits} => Types::EventTriggerLimits
5531
+ # * {Types::UpdateEventTriggerResponse#created_at #created_at} => Time
5532
+ # * {Types::UpdateEventTriggerResponse#last_updated_at #last_updated_at} => Time
5533
+ # * {Types::UpdateEventTriggerResponse#tags #tags} => Hash&lt;String,String&gt;
5534
+ #
5535
+ # @example Request syntax with placeholder values
5536
+ #
5537
+ # resp = client.update_event_trigger({
5538
+ # domain_name: "name", # required
5539
+ # event_trigger_name: "name", # required
5540
+ # object_type_name: "typeName",
5541
+ # description: "sensitiveText",
5542
+ # event_trigger_conditions: [
5543
+ # {
5544
+ # event_trigger_dimensions: [ # required
5545
+ # {
5546
+ # object_attributes: [ # required
5547
+ # {
5548
+ # source: "text",
5549
+ # field_name: "fieldName",
5550
+ # comparison_operator: "INCLUSIVE", # required, accepts 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
5551
+ # values: ["string1To255"], # required
5552
+ # },
5553
+ # ],
5554
+ # },
5555
+ # ],
5556
+ # logical_operator: "ANY", # required, accepts ANY, ALL, NONE
5557
+ # },
5558
+ # ],
5559
+ # segment_filter: "name",
5560
+ # event_trigger_limits: {
5561
+ # event_expiration: 1,
5562
+ # periods: [
5563
+ # {
5564
+ # unit: "HOURS", # required, accepts HOURS, DAYS, WEEKS, MONTHS
5565
+ # value: 1, # required
5566
+ # max_invocations_per_profile: 1,
5567
+ # unlimited: false,
5568
+ # },
5569
+ # ],
5570
+ # },
5571
+ # })
5572
+ #
5573
+ # @example Response structure
5574
+ #
5575
+ # resp.event_trigger_name #=> String
5576
+ # resp.object_type_name #=> String
5577
+ # resp.description #=> String
5578
+ # resp.event_trigger_conditions #=> Array
5579
+ # resp.event_trigger_conditions[0].event_trigger_dimensions #=> Array
5580
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes #=> Array
5581
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].source #=> String
5582
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].field_name #=> String
5583
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].comparison_operator #=> String, one of "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"
5584
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].values #=> Array
5585
+ # resp.event_trigger_conditions[0].event_trigger_dimensions[0].object_attributes[0].values[0] #=> String
5586
+ # resp.event_trigger_conditions[0].logical_operator #=> String, one of "ANY", "ALL", "NONE"
5587
+ # resp.segment_filter #=> String
5588
+ # resp.event_trigger_limits.event_expiration #=> Integer
5589
+ # resp.event_trigger_limits.periods #=> Array
5590
+ # resp.event_trigger_limits.periods[0].unit #=> String, one of "HOURS", "DAYS", "WEEKS", "MONTHS"
5591
+ # resp.event_trigger_limits.periods[0].value #=> Integer
5592
+ # resp.event_trigger_limits.periods[0].max_invocations_per_profile #=> Integer
5593
+ # resp.event_trigger_limits.periods[0].unlimited #=> Boolean
5594
+ # resp.created_at #=> Time
5595
+ # resp.last_updated_at #=> Time
5596
+ # resp.tags #=> Hash
5597
+ # resp.tags["TagKey"] #=> String
5598
+ #
5599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/UpdateEventTrigger AWS API Documentation
5600
+ #
5601
+ # @overload update_event_trigger(params = {})
5602
+ # @param [Hash] params ({})
5603
+ def update_event_trigger(params = {}, options = {})
5604
+ req = build_request(:update_event_trigger, params)
5605
+ req.send_request(options)
5606
+ end
5607
+
5213
5608
  # Updates the properties of a profile. The ProfileId is required for
5214
5609
  # updating a customer profile.
5215
5610
  #
@@ -5406,7 +5801,7 @@ module Aws::CustomerProfiles
5406
5801
  tracer: tracer
5407
5802
  )
5408
5803
  context[:gem_name] = 'aws-sdk-customerprofiles'
5409
- context[:gem_version] = '1.57.0'
5804
+ context[:gem_version] = '1.58.0'
5410
5805
  Seahorse::Client::Request.new(handlers, context)
5411
5806
  end
5412
5807