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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +396 -1
- data/lib/aws-sdk-customerprofiles/client_api.rb +222 -0
- data/lib/aws-sdk-customerprofiles/types.rb +535 -4
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +148 -1
- data/sig/types.rbs +139 -0
- metadata +2 -2
@@ -1194,6 +1194,113 @@ module Aws::CustomerProfiles
|
|
1194
1194
|
include Aws::Structure
|
1195
1195
|
end
|
1196
1196
|
|
1197
|
+
# @!attribute [rw] domain_name
|
1198
|
+
# The unique name of the domain.
|
1199
|
+
# @return [String]
|
1200
|
+
#
|
1201
|
+
# @!attribute [rw] event_trigger_name
|
1202
|
+
# The unique name of the event trigger.
|
1203
|
+
# @return [String]
|
1204
|
+
#
|
1205
|
+
# @!attribute [rw] object_type_name
|
1206
|
+
# The unique name of the object type.
|
1207
|
+
# @return [String]
|
1208
|
+
#
|
1209
|
+
# @!attribute [rw] description
|
1210
|
+
# The description of the event trigger.
|
1211
|
+
# @return [String]
|
1212
|
+
#
|
1213
|
+
# @!attribute [rw] event_trigger_conditions
|
1214
|
+
# A list of conditions that determine when an event should trigger the
|
1215
|
+
# destination.
|
1216
|
+
# @return [Array<Types::EventTriggerCondition>]
|
1217
|
+
#
|
1218
|
+
# @!attribute [rw] segment_filter
|
1219
|
+
# The destination is triggered only for profiles that meet the
|
1220
|
+
# criteria of a segment definition.
|
1221
|
+
# @return [String]
|
1222
|
+
#
|
1223
|
+
# @!attribute [rw] event_trigger_limits
|
1224
|
+
# Defines limits controlling whether an event triggers the
|
1225
|
+
# destination, based on ingestion latency and the number of
|
1226
|
+
# invocations per profile over specific time periods.
|
1227
|
+
# @return [Types::EventTriggerLimits]
|
1228
|
+
#
|
1229
|
+
# @!attribute [rw] tags
|
1230
|
+
# An array of key-value pairs to apply to this resource.
|
1231
|
+
# @return [Hash<String,String>]
|
1232
|
+
#
|
1233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateEventTriggerRequest AWS API Documentation
|
1234
|
+
#
|
1235
|
+
class CreateEventTriggerRequest < Struct.new(
|
1236
|
+
:domain_name,
|
1237
|
+
:event_trigger_name,
|
1238
|
+
:object_type_name,
|
1239
|
+
:description,
|
1240
|
+
:event_trigger_conditions,
|
1241
|
+
:segment_filter,
|
1242
|
+
:event_trigger_limits,
|
1243
|
+
:tags)
|
1244
|
+
SENSITIVE = [:description, :event_trigger_conditions]
|
1245
|
+
include Aws::Structure
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# @!attribute [rw] event_trigger_name
|
1249
|
+
# The unique name of the event trigger.
|
1250
|
+
# @return [String]
|
1251
|
+
#
|
1252
|
+
# @!attribute [rw] object_type_name
|
1253
|
+
# The unique name of the object type.
|
1254
|
+
# @return [String]
|
1255
|
+
#
|
1256
|
+
# @!attribute [rw] description
|
1257
|
+
# The description of the event trigger.
|
1258
|
+
# @return [String]
|
1259
|
+
#
|
1260
|
+
# @!attribute [rw] event_trigger_conditions
|
1261
|
+
# A list of conditions that determine when an event should trigger the
|
1262
|
+
# destination.
|
1263
|
+
# @return [Array<Types::EventTriggerCondition>]
|
1264
|
+
#
|
1265
|
+
# @!attribute [rw] segment_filter
|
1266
|
+
# The destination is triggered only for profiles that meet the
|
1267
|
+
# criteria of a segment definition.
|
1268
|
+
# @return [String]
|
1269
|
+
#
|
1270
|
+
# @!attribute [rw] event_trigger_limits
|
1271
|
+
# Defines limits controlling whether an event triggers the
|
1272
|
+
# destination, based on ingestion latency and the number of
|
1273
|
+
# invocations per profile over specific time periods.
|
1274
|
+
# @return [Types::EventTriggerLimits]
|
1275
|
+
#
|
1276
|
+
# @!attribute [rw] created_at
|
1277
|
+
# The timestamp of when the event trigger was created.
|
1278
|
+
# @return [Time]
|
1279
|
+
#
|
1280
|
+
# @!attribute [rw] last_updated_at
|
1281
|
+
# The timestamp of when the event trigger was most recently updated.
|
1282
|
+
# @return [Time]
|
1283
|
+
#
|
1284
|
+
# @!attribute [rw] tags
|
1285
|
+
# An array of key-value pairs to apply to this resource.
|
1286
|
+
# @return [Hash<String,String>]
|
1287
|
+
#
|
1288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateEventTriggerResponse AWS API Documentation
|
1289
|
+
#
|
1290
|
+
class CreateEventTriggerResponse < Struct.new(
|
1291
|
+
:event_trigger_name,
|
1292
|
+
:object_type_name,
|
1293
|
+
:description,
|
1294
|
+
:event_trigger_conditions,
|
1295
|
+
:segment_filter,
|
1296
|
+
:event_trigger_limits,
|
1297
|
+
:created_at,
|
1298
|
+
:last_updated_at,
|
1299
|
+
:tags)
|
1300
|
+
SENSITIVE = [:description, :event_trigger_conditions]
|
1301
|
+
include Aws::Structure
|
1302
|
+
end
|
1303
|
+
|
1197
1304
|
# @!attribute [rw] domain_name
|
1198
1305
|
# The unique name of the domain.
|
1199
1306
|
# @return [String]
|
@@ -1651,6 +1758,35 @@ module Aws::CustomerProfiles
|
|
1651
1758
|
#
|
1652
1759
|
class DeleteEventStreamResponse < Aws::EmptyStructure; end
|
1653
1760
|
|
1761
|
+
# @!attribute [rw] domain_name
|
1762
|
+
# The unique name of the domain.
|
1763
|
+
# @return [String]
|
1764
|
+
#
|
1765
|
+
# @!attribute [rw] event_trigger_name
|
1766
|
+
# The unique name of the event trigger.
|
1767
|
+
# @return [String]
|
1768
|
+
#
|
1769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteEventTriggerRequest AWS API Documentation
|
1770
|
+
#
|
1771
|
+
class DeleteEventTriggerRequest < Struct.new(
|
1772
|
+
:domain_name,
|
1773
|
+
:event_trigger_name)
|
1774
|
+
SENSITIVE = []
|
1775
|
+
include Aws::Structure
|
1776
|
+
end
|
1777
|
+
|
1778
|
+
# @!attribute [rw] message
|
1779
|
+
# A message that indicates the delete request is done.
|
1780
|
+
# @return [String]
|
1781
|
+
#
|
1782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteEventTriggerResponse AWS API Documentation
|
1783
|
+
#
|
1784
|
+
class DeleteEventTriggerResponse < Struct.new(
|
1785
|
+
:message)
|
1786
|
+
SENSITIVE = []
|
1787
|
+
include Aws::Structure
|
1788
|
+
end
|
1789
|
+
|
1654
1790
|
# @!attribute [rw] domain_name
|
1655
1791
|
# The unique name of the domain.
|
1656
1792
|
# @return [String]
|
@@ -2087,6 +2223,101 @@ module Aws::CustomerProfiles
|
|
2087
2223
|
include Aws::Structure
|
2088
2224
|
end
|
2089
2225
|
|
2226
|
+
# Specifies the circumstances under which the event should trigger the
|
2227
|
+
# destination.
|
2228
|
+
#
|
2229
|
+
# @!attribute [rw] event_trigger_dimensions
|
2230
|
+
# A list of dimensions to be evaluated for the event.
|
2231
|
+
# @return [Array<Types::EventTriggerDimension>]
|
2232
|
+
#
|
2233
|
+
# @!attribute [rw] logical_operator
|
2234
|
+
# The operator used to combine multiple dimensions.
|
2235
|
+
# @return [String]
|
2236
|
+
#
|
2237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EventTriggerCondition AWS API Documentation
|
2238
|
+
#
|
2239
|
+
class EventTriggerCondition < Struct.new(
|
2240
|
+
:event_trigger_dimensions,
|
2241
|
+
:logical_operator)
|
2242
|
+
SENSITIVE = []
|
2243
|
+
include Aws::Structure
|
2244
|
+
end
|
2245
|
+
|
2246
|
+
# A specific event dimension to be assessed.
|
2247
|
+
#
|
2248
|
+
# @!attribute [rw] object_attributes
|
2249
|
+
# A list of object attributes to be evaluated.
|
2250
|
+
# @return [Array<Types::ObjectAttribute>]
|
2251
|
+
#
|
2252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EventTriggerDimension AWS API Documentation
|
2253
|
+
#
|
2254
|
+
class EventTriggerDimension < Struct.new(
|
2255
|
+
:object_attributes)
|
2256
|
+
SENSITIVE = []
|
2257
|
+
include Aws::Structure
|
2258
|
+
end
|
2259
|
+
|
2260
|
+
# Defines limits controlling whether an event triggers the destination,
|
2261
|
+
# based on ingestion latency and the number of invocations per profile
|
2262
|
+
# over specific time periods.
|
2263
|
+
#
|
2264
|
+
# @!attribute [rw] event_expiration
|
2265
|
+
# In milliseconds. Specifies that an event will only trigger the
|
2266
|
+
# destination if it is processed within a certain latency period.
|
2267
|
+
# @return [Integer]
|
2268
|
+
#
|
2269
|
+
# @!attribute [rw] periods
|
2270
|
+
# A list of time periods during which the limits apply.
|
2271
|
+
# @return [Array<Types::Period>]
|
2272
|
+
#
|
2273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EventTriggerLimits AWS API Documentation
|
2274
|
+
#
|
2275
|
+
class EventTriggerLimits < Struct.new(
|
2276
|
+
:event_expiration,
|
2277
|
+
:periods)
|
2278
|
+
SENSITIVE = []
|
2279
|
+
include Aws::Structure
|
2280
|
+
end
|
2281
|
+
|
2282
|
+
# The summary of the event trigger.
|
2283
|
+
#
|
2284
|
+
# @!attribute [rw] object_type_name
|
2285
|
+
# The unique name of the object type.
|
2286
|
+
# @return [String]
|
2287
|
+
#
|
2288
|
+
# @!attribute [rw] event_trigger_name
|
2289
|
+
# The unique name of the event trigger.
|
2290
|
+
# @return [String]
|
2291
|
+
#
|
2292
|
+
# @!attribute [rw] description
|
2293
|
+
# The description of the event trigger.
|
2294
|
+
# @return [String]
|
2295
|
+
#
|
2296
|
+
# @!attribute [rw] created_at
|
2297
|
+
# The timestamp of when the event trigger was created.
|
2298
|
+
# @return [Time]
|
2299
|
+
#
|
2300
|
+
# @!attribute [rw] last_updated_at
|
2301
|
+
# The timestamp of when the event trigger was most recently updated.
|
2302
|
+
# @return [Time]
|
2303
|
+
#
|
2304
|
+
# @!attribute [rw] tags
|
2305
|
+
# An array of key-value pairs to apply to this resource.
|
2306
|
+
# @return [Hash<String,String>]
|
2307
|
+
#
|
2308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/EventTriggerSummaryItem AWS API Documentation
|
2309
|
+
#
|
2310
|
+
class EventTriggerSummaryItem < Struct.new(
|
2311
|
+
:object_type_name,
|
2312
|
+
:event_trigger_name,
|
2313
|
+
:description,
|
2314
|
+
:created_at,
|
2315
|
+
:last_updated_at,
|
2316
|
+
:tags)
|
2317
|
+
SENSITIVE = []
|
2318
|
+
include Aws::Structure
|
2319
|
+
end
|
2320
|
+
|
2090
2321
|
# Configuration information about the S3 bucket where Identity
|
2091
2322
|
# Resolution Jobs writes result files.
|
2092
2323
|
#
|
@@ -2750,6 +2981,79 @@ module Aws::CustomerProfiles
|
|
2750
2981
|
include Aws::Structure
|
2751
2982
|
end
|
2752
2983
|
|
2984
|
+
# @!attribute [rw] domain_name
|
2985
|
+
# The unique name of the domain.
|
2986
|
+
# @return [String]
|
2987
|
+
#
|
2988
|
+
# @!attribute [rw] event_trigger_name
|
2989
|
+
# The unique name of the event trigger.
|
2990
|
+
# @return [String]
|
2991
|
+
#
|
2992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetEventTriggerRequest AWS API Documentation
|
2993
|
+
#
|
2994
|
+
class GetEventTriggerRequest < Struct.new(
|
2995
|
+
:domain_name,
|
2996
|
+
:event_trigger_name)
|
2997
|
+
SENSITIVE = []
|
2998
|
+
include Aws::Structure
|
2999
|
+
end
|
3000
|
+
|
3001
|
+
# @!attribute [rw] event_trigger_name
|
3002
|
+
# The unique name of the event trigger.
|
3003
|
+
# @return [String]
|
3004
|
+
#
|
3005
|
+
# @!attribute [rw] object_type_name
|
3006
|
+
# The unique name of the object type.
|
3007
|
+
# @return [String]
|
3008
|
+
#
|
3009
|
+
# @!attribute [rw] description
|
3010
|
+
# The description of the event trigger.
|
3011
|
+
# @return [String]
|
3012
|
+
#
|
3013
|
+
# @!attribute [rw] event_trigger_conditions
|
3014
|
+
# A list of conditions that determine when an event should trigger the
|
3015
|
+
# destination.
|
3016
|
+
# @return [Array<Types::EventTriggerCondition>]
|
3017
|
+
#
|
3018
|
+
# @!attribute [rw] segment_filter
|
3019
|
+
# The destination is triggered only for profiles that meet the
|
3020
|
+
# criteria of a segment definition.
|
3021
|
+
# @return [String]
|
3022
|
+
#
|
3023
|
+
# @!attribute [rw] event_trigger_limits
|
3024
|
+
# Defines limits controlling whether an event triggers the
|
3025
|
+
# destination, based on ingestion latency and the number of
|
3026
|
+
# invocations per profile over specific time periods.
|
3027
|
+
# @return [Types::EventTriggerLimits]
|
3028
|
+
#
|
3029
|
+
# @!attribute [rw] created_at
|
3030
|
+
# The timestamp of when the event trigger was created.
|
3031
|
+
# @return [Time]
|
3032
|
+
#
|
3033
|
+
# @!attribute [rw] last_updated_at
|
3034
|
+
# The timestamp of when the event trigger was most recently updated.
|
3035
|
+
# @return [Time]
|
3036
|
+
#
|
3037
|
+
# @!attribute [rw] tags
|
3038
|
+
# An array of key-value pairs to apply to this resource.
|
3039
|
+
# @return [Hash<String,String>]
|
3040
|
+
#
|
3041
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetEventTriggerResponse AWS API Documentation
|
3042
|
+
#
|
3043
|
+
class GetEventTriggerResponse < Struct.new(
|
3044
|
+
:event_trigger_name,
|
3045
|
+
:object_type_name,
|
3046
|
+
:description,
|
3047
|
+
:event_trigger_conditions,
|
3048
|
+
:segment_filter,
|
3049
|
+
:event_trigger_limits,
|
3050
|
+
:created_at,
|
3051
|
+
:last_updated_at,
|
3052
|
+
:tags)
|
3053
|
+
SENSITIVE = [:description, :event_trigger_conditions]
|
3054
|
+
include Aws::Structure
|
3055
|
+
end
|
3056
|
+
|
2753
3057
|
# @!attribute [rw] domain_name
|
2754
3058
|
# The unique name of the domain.
|
2755
3059
|
# @return [String]
|
@@ -2923,6 +3227,12 @@ module Aws::CustomerProfiles
|
|
2923
3227
|
# this role to make Customer Profiles requests on your behalf.
|
2924
3228
|
# @return [String]
|
2925
3229
|
#
|
3230
|
+
# @!attribute [rw] event_trigger_names
|
3231
|
+
# A list of unique names for active event triggers associated with the
|
3232
|
+
# integration. This list would be empty if no Event Trigger is
|
3233
|
+
# associated with the integration.
|
3234
|
+
# @return [Array<String>]
|
3235
|
+
#
|
2926
3236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegrationResponse AWS API Documentation
|
2927
3237
|
#
|
2928
3238
|
class GetIntegrationResponse < Struct.new(
|
@@ -2935,7 +3245,8 @@ module Aws::CustomerProfiles
|
|
2935
3245
|
:object_type_names,
|
2936
3246
|
:workflow_id,
|
2937
3247
|
:is_unstructured,
|
2938
|
-
:role_arn
|
3248
|
+
:role_arn,
|
3249
|
+
:event_trigger_names)
|
2939
3250
|
SENSITIVE = []
|
2940
3251
|
include Aws::Structure
|
2941
3252
|
end
|
@@ -4093,6 +4404,45 @@ module Aws::CustomerProfiles
|
|
4093
4404
|
include Aws::Structure
|
4094
4405
|
end
|
4095
4406
|
|
4407
|
+
# @!attribute [rw] domain_name
|
4408
|
+
# The unique name of the domain.
|
4409
|
+
# @return [String]
|
4410
|
+
#
|
4411
|
+
# @!attribute [rw] next_token
|
4412
|
+
# The pagination token to use with ListEventTriggers.
|
4413
|
+
# @return [String]
|
4414
|
+
#
|
4415
|
+
# @!attribute [rw] max_results
|
4416
|
+
# The maximum number of results to return per page.
|
4417
|
+
# @return [Integer]
|
4418
|
+
#
|
4419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListEventTriggersRequest AWS API Documentation
|
4420
|
+
#
|
4421
|
+
class ListEventTriggersRequest < Struct.new(
|
4422
|
+
:domain_name,
|
4423
|
+
:next_token,
|
4424
|
+
:max_results)
|
4425
|
+
SENSITIVE = []
|
4426
|
+
include Aws::Structure
|
4427
|
+
end
|
4428
|
+
|
4429
|
+
# @!attribute [rw] items
|
4430
|
+
# The list of Event Triggers.
|
4431
|
+
# @return [Array<Types::EventTriggerSummaryItem>]
|
4432
|
+
#
|
4433
|
+
# @!attribute [rw] next_token
|
4434
|
+
# The pagination token from the previous call to ListEventTriggers.
|
4435
|
+
# @return [String]
|
4436
|
+
#
|
4437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListEventTriggersResponse AWS API Documentation
|
4438
|
+
#
|
4439
|
+
class ListEventTriggersResponse < Struct.new(
|
4440
|
+
:items,
|
4441
|
+
:next_token)
|
4442
|
+
SENSITIVE = [:items]
|
4443
|
+
include Aws::Structure
|
4444
|
+
end
|
4445
|
+
|
4096
4446
|
# @!attribute [rw] domain_name
|
4097
4447
|
# The unique name of the domain.
|
4098
4448
|
# @return [String]
|
@@ -4187,6 +4537,11 @@ module Aws::CustomerProfiles
|
|
4187
4537
|
# this role to make Customer Profiles requests on your behalf.
|
4188
4538
|
# @return [String]
|
4189
4539
|
#
|
4540
|
+
# @!attribute [rw] event_trigger_names
|
4541
|
+
# A list of unique names for active event triggers associated with the
|
4542
|
+
# integration.
|
4543
|
+
# @return [Array<String>]
|
4544
|
+
#
|
4190
4545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrationItem AWS API Documentation
|
4191
4546
|
#
|
4192
4547
|
class ListIntegrationItem < Struct.new(
|
@@ -4199,7 +4554,8 @@ module Aws::CustomerProfiles
|
|
4199
4554
|
:object_type_names,
|
4200
4555
|
:workflow_id,
|
4201
4556
|
:is_unstructured,
|
4202
|
-
:role_arn
|
4557
|
+
:role_arn,
|
4558
|
+
:event_trigger_names)
|
4203
4559
|
SENSITIVE = []
|
4204
4560
|
include Aws::Structure
|
4205
4561
|
end
|
@@ -4946,6 +5302,36 @@ module Aws::CustomerProfiles
|
|
4946
5302
|
include Aws::Structure
|
4947
5303
|
end
|
4948
5304
|
|
5305
|
+
# The criteria that a specific object attribute must meet to trigger the
|
5306
|
+
# destination.
|
5307
|
+
#
|
5308
|
+
# @!attribute [rw] source
|
5309
|
+
# An attribute contained within a source object.
|
5310
|
+
# @return [String]
|
5311
|
+
#
|
5312
|
+
# @!attribute [rw] field_name
|
5313
|
+
# A field defined within an object type.
|
5314
|
+
# @return [String]
|
5315
|
+
#
|
5316
|
+
# @!attribute [rw] comparison_operator
|
5317
|
+
# The operator used to compare an attribute against a list of values.
|
5318
|
+
# @return [String]
|
5319
|
+
#
|
5320
|
+
# @!attribute [rw] values
|
5321
|
+
# A list of attribute values used for comparison.
|
5322
|
+
# @return [Array<String>]
|
5323
|
+
#
|
5324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ObjectAttribute AWS API Documentation
|
5325
|
+
#
|
5326
|
+
class ObjectAttribute < Struct.new(
|
5327
|
+
:source,
|
5328
|
+
:field_name,
|
5329
|
+
:comparison_operator,
|
5330
|
+
:values)
|
5331
|
+
SENSITIVE = []
|
5332
|
+
include Aws::Structure
|
5333
|
+
end
|
5334
|
+
|
4949
5335
|
# The filter applied to `ListProfileObjects` response to include profile
|
4950
5336
|
# objects with the specified index values.
|
4951
5337
|
#
|
@@ -5028,6 +5414,36 @@ module Aws::CustomerProfiles
|
|
5028
5414
|
include Aws::Structure
|
5029
5415
|
end
|
5030
5416
|
|
5417
|
+
# Defines a limit and the time period during which it is enforced.
|
5418
|
+
#
|
5419
|
+
# @!attribute [rw] unit
|
5420
|
+
# The unit of time.
|
5421
|
+
# @return [String]
|
5422
|
+
#
|
5423
|
+
# @!attribute [rw] value
|
5424
|
+
# The amount of time of the specified unit.
|
5425
|
+
# @return [Integer]
|
5426
|
+
#
|
5427
|
+
# @!attribute [rw] max_invocations_per_profile
|
5428
|
+
# The maximum allowed number of destination invocations per profile.
|
5429
|
+
# @return [Integer]
|
5430
|
+
#
|
5431
|
+
# @!attribute [rw] unlimited
|
5432
|
+
# If set to true, there is no limit on the number of destination
|
5433
|
+
# invocations per profile. The default is false.
|
5434
|
+
# @return [Boolean]
|
5435
|
+
#
|
5436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/Period AWS API Documentation
|
5437
|
+
#
|
5438
|
+
class Period < Struct.new(
|
5439
|
+
:unit,
|
5440
|
+
:value,
|
5441
|
+
:max_invocations_per_profile,
|
5442
|
+
:unlimited)
|
5443
|
+
SENSITIVE = []
|
5444
|
+
include Aws::Structure
|
5445
|
+
end
|
5446
|
+
|
5031
5447
|
# The standard profile of a customer.
|
5032
5448
|
#
|
5033
5449
|
# @!attribute [rw] profile_id
|
@@ -5455,6 +5871,11 @@ module Aws::CustomerProfiles
|
|
5455
5871
|
# this role to make Customer Profiles requests on your behalf.
|
5456
5872
|
# @return [String]
|
5457
5873
|
#
|
5874
|
+
# @!attribute [rw] event_trigger_names
|
5875
|
+
# A list of unique names for active event triggers associated with the
|
5876
|
+
# integration.
|
5877
|
+
# @return [Array<String>]
|
5878
|
+
#
|
5458
5879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationRequest AWS API Documentation
|
5459
5880
|
#
|
5460
5881
|
class PutIntegrationRequest < Struct.new(
|
@@ -5464,7 +5885,8 @@ module Aws::CustomerProfiles
|
|
5464
5885
|
:tags,
|
5465
5886
|
:flow_definition,
|
5466
5887
|
:object_type_names,
|
5467
|
-
:role_arn
|
5888
|
+
:role_arn,
|
5889
|
+
:event_trigger_names)
|
5468
5890
|
SENSITIVE = [:flow_definition]
|
5469
5891
|
include Aws::Structure
|
5470
5892
|
end
|
@@ -5519,6 +5941,12 @@ module Aws::CustomerProfiles
|
|
5519
5941
|
# this role to make Customer Profiles requests on your behalf.
|
5520
5942
|
# @return [String]
|
5521
5943
|
#
|
5944
|
+
# @!attribute [rw] event_trigger_names
|
5945
|
+
# A list of unique names for active event triggers associated with the
|
5946
|
+
# integration. This list would be empty if no Event Trigger is
|
5947
|
+
# associated with the integration.
|
5948
|
+
# @return [Array<String>]
|
5949
|
+
#
|
5522
5950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegrationResponse AWS API Documentation
|
5523
5951
|
#
|
5524
5952
|
class PutIntegrationResponse < Struct.new(
|
@@ -5531,7 +5959,8 @@ module Aws::CustomerProfiles
|
|
5531
5959
|
:object_type_names,
|
5532
5960
|
:workflow_id,
|
5533
5961
|
:is_unstructured,
|
5534
|
-
:role_arn
|
5962
|
+
:role_arn,
|
5963
|
+
:event_trigger_names)
|
5535
5964
|
SENSITIVE = []
|
5536
5965
|
include Aws::Structure
|
5537
5966
|
end
|
@@ -6821,6 +7250,108 @@ module Aws::CustomerProfiles
|
|
6821
7250
|
include Aws::Structure
|
6822
7251
|
end
|
6823
7252
|
|
7253
|
+
# @!attribute [rw] domain_name
|
7254
|
+
# The unique name of the domain.
|
7255
|
+
# @return [String]
|
7256
|
+
#
|
7257
|
+
# @!attribute [rw] event_trigger_name
|
7258
|
+
# The unique name of the event trigger.
|
7259
|
+
# @return [String]
|
7260
|
+
#
|
7261
|
+
# @!attribute [rw] object_type_name
|
7262
|
+
# The unique name of the object type.
|
7263
|
+
# @return [String]
|
7264
|
+
#
|
7265
|
+
# @!attribute [rw] description
|
7266
|
+
# The description of the event trigger.
|
7267
|
+
# @return [String]
|
7268
|
+
#
|
7269
|
+
# @!attribute [rw] event_trigger_conditions
|
7270
|
+
# A list of conditions that determine when an event should trigger the
|
7271
|
+
# destination.
|
7272
|
+
# @return [Array<Types::EventTriggerCondition>]
|
7273
|
+
#
|
7274
|
+
# @!attribute [rw] segment_filter
|
7275
|
+
# The destination is triggered only for profiles that meet the
|
7276
|
+
# criteria of a segment definition.
|
7277
|
+
# @return [String]
|
7278
|
+
#
|
7279
|
+
# @!attribute [rw] event_trigger_limits
|
7280
|
+
# Defines limits controlling whether an event triggers the
|
7281
|
+
# destination, based on ingestion latency and the number of
|
7282
|
+
# invocations per profile over specific time periods.
|
7283
|
+
# @return [Types::EventTriggerLimits]
|
7284
|
+
#
|
7285
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/UpdateEventTriggerRequest AWS API Documentation
|
7286
|
+
#
|
7287
|
+
class UpdateEventTriggerRequest < Struct.new(
|
7288
|
+
:domain_name,
|
7289
|
+
:event_trigger_name,
|
7290
|
+
:object_type_name,
|
7291
|
+
:description,
|
7292
|
+
:event_trigger_conditions,
|
7293
|
+
:segment_filter,
|
7294
|
+
:event_trigger_limits)
|
7295
|
+
SENSITIVE = [:description, :event_trigger_conditions]
|
7296
|
+
include Aws::Structure
|
7297
|
+
end
|
7298
|
+
|
7299
|
+
# @!attribute [rw] event_trigger_name
|
7300
|
+
# The unique name of the event trigger.
|
7301
|
+
# @return [String]
|
7302
|
+
#
|
7303
|
+
# @!attribute [rw] object_type_name
|
7304
|
+
# The unique name of the object type.
|
7305
|
+
# @return [String]
|
7306
|
+
#
|
7307
|
+
# @!attribute [rw] description
|
7308
|
+
# The description of the event trigger.
|
7309
|
+
# @return [String]
|
7310
|
+
#
|
7311
|
+
# @!attribute [rw] event_trigger_conditions
|
7312
|
+
# A list of conditions that determine when an event should trigger the
|
7313
|
+
# destination.
|
7314
|
+
# @return [Array<Types::EventTriggerCondition>]
|
7315
|
+
#
|
7316
|
+
# @!attribute [rw] segment_filter
|
7317
|
+
# The destination is triggered only for profiles that meet the
|
7318
|
+
# criteria of a segment definition.
|
7319
|
+
# @return [String]
|
7320
|
+
#
|
7321
|
+
# @!attribute [rw] event_trigger_limits
|
7322
|
+
# Defines limits controlling whether an event triggers the
|
7323
|
+
# destination, based on ingestion latency and the number of
|
7324
|
+
# invocations per profile over specific time periods.
|
7325
|
+
# @return [Types::EventTriggerLimits]
|
7326
|
+
#
|
7327
|
+
# @!attribute [rw] created_at
|
7328
|
+
# The timestamp of when the event trigger was created.
|
7329
|
+
# @return [Time]
|
7330
|
+
#
|
7331
|
+
# @!attribute [rw] last_updated_at
|
7332
|
+
# The timestamp of when the event trigger was most recently updated.
|
7333
|
+
# @return [Time]
|
7334
|
+
#
|
7335
|
+
# @!attribute [rw] tags
|
7336
|
+
# An array of key-value pairs to apply to this resource.
|
7337
|
+
# @return [Hash<String,String>]
|
7338
|
+
#
|
7339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/UpdateEventTriggerResponse AWS API Documentation
|
7340
|
+
#
|
7341
|
+
class UpdateEventTriggerResponse < Struct.new(
|
7342
|
+
:event_trigger_name,
|
7343
|
+
:object_type_name,
|
7344
|
+
:description,
|
7345
|
+
:event_trigger_conditions,
|
7346
|
+
:segment_filter,
|
7347
|
+
:event_trigger_limits,
|
7348
|
+
:created_at,
|
7349
|
+
:last_updated_at,
|
7350
|
+
:tags)
|
7351
|
+
SENSITIVE = [:description, :event_trigger_conditions]
|
7352
|
+
include Aws::Structure
|
7353
|
+
end
|
7354
|
+
|
6824
7355
|
# @!attribute [rw] domain_name
|
6825
7356
|
# The unique name of the domain.
|
6826
7357
|
# @return [String]
|