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
data/sig/client.rbs
CHANGED
@@ -269,6 +269,57 @@ module Aws
|
|
269
269
|
) -> _CreateEventStreamResponseSuccess
|
270
270
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventStreamResponseSuccess
|
271
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
|
+
|
272
323
|
interface _CreateIntegrationWorkflowResponseSuccess
|
273
324
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationWorkflowResponse]
|
274
325
|
def workflow_id: () -> ::String
|
@@ -914,6 +965,17 @@ module Aws
|
|
914
965
|
) -> _DeleteEventStreamResponseSuccess
|
915
966
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventStreamResponseSuccess
|
916
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
|
+
|
917
979
|
interface _DeleteIntegrationResponseSuccess
|
918
980
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
|
919
981
|
def message: () -> ::String
|
@@ -1099,6 +1161,25 @@ module Aws
|
|
1099
1161
|
) -> _GetEventStreamResponseSuccess
|
1100
1162
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventStreamResponseSuccess
|
1101
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
|
+
|
1102
1183
|
interface _GetIdentityResolutionJobResponseSuccess
|
1103
1184
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetIdentityResolutionJobResponse]
|
1104
1185
|
def domain_name: () -> ::String
|
@@ -1132,6 +1213,7 @@ module Aws
|
|
1132
1213
|
def workflow_id: () -> ::String
|
1133
1214
|
def is_unstructured: () -> bool
|
1134
1215
|
def role_arn: () -> ::String
|
1216
|
+
def event_trigger_names: () -> ::Array[::String]
|
1135
1217
|
end
|
1136
1218
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_integration-instance_method
|
1137
1219
|
def get_integration: (
|
@@ -1380,6 +1462,19 @@ module Aws
|
|
1380
1462
|
) -> _ListEventStreamsResponseSuccess
|
1381
1463
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventStreamsResponseSuccess
|
1382
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
|
+
|
1383
1478
|
interface _ListIdentityResolutionJobsResponseSuccess
|
1384
1479
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityResolutionJobsResponse]
|
1385
1480
|
def identity_resolution_jobs_list: () -> ::Array[Types::IdentityResolutionJob]
|
@@ -1579,6 +1674,7 @@ module Aws
|
|
1579
1674
|
def workflow_id: () -> ::String
|
1580
1675
|
def is_unstructured: () -> bool
|
1581
1676
|
def role_arn: () -> ::String
|
1677
|
+
def event_trigger_names: () -> ::Array[::String]
|
1582
1678
|
end
|
1583
1679
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#put_integration-instance_method
|
1584
1680
|
def put_integration: (
|
@@ -1648,7 +1744,8 @@ module Aws
|
|
1648
1744
|
}
|
1649
1745
|
},
|
1650
1746
|
?object_type_names: Hash[::String, ::String],
|
1651
|
-
?role_arn: ::String
|
1747
|
+
?role_arn: ::String,
|
1748
|
+
?event_trigger_names: Array[::String]
|
1652
1749
|
) -> _PutIntegrationResponseSuccess
|
1653
1750
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
|
1654
1751
|
|
@@ -1855,6 +1952,56 @@ module Aws
|
|
1855
1952
|
) -> _UpdateDomainResponseSuccess
|
1856
1953
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
|
1857
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
|
+
|
1858
2005
|
interface _UpdateProfileResponseSuccess
|
1859
2006
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProfileResponse]
|
1860
2007
|
def profile_id: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -292,6 +292,31 @@ module Aws::CustomerProfiles
|
|
292
292
|
SENSITIVE: []
|
293
293
|
end
|
294
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
|
+
|
295
320
|
class CreateIntegrationWorkflowRequest
|
296
321
|
attr_accessor domain_name: ::String
|
297
322
|
attr_accessor workflow_type: ("APPFLOW_INTEGRATION")
|
@@ -423,6 +448,17 @@ module Aws::CustomerProfiles
|
|
423
448
|
class DeleteEventStreamResponse < Aws::EmptyStructure
|
424
449
|
end
|
425
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
|
+
|
426
462
|
class DeleteIntegrationRequest
|
427
463
|
attr_accessor domain_name: ::String
|
428
464
|
attr_accessor uri: ::String
|
@@ -568,6 +604,33 @@ module Aws::CustomerProfiles
|
|
568
604
|
SENSITIVE: []
|
569
605
|
end
|
570
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
|
+
|
571
634
|
class ExportingConfig
|
572
635
|
attr_accessor s3_exporting: Types::S3ExportingConfig
|
573
636
|
SENSITIVE: []
|
@@ -735,6 +798,25 @@ module Aws::CustomerProfiles
|
|
735
798
|
SENSITIVE: []
|
736
799
|
end
|
737
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
|
+
|
738
820
|
class GetIdentityResolutionJobRequest
|
739
821
|
attr_accessor domain_name: ::String
|
740
822
|
attr_accessor job_id: ::String
|
@@ -773,6 +855,7 @@ module Aws::CustomerProfiles
|
|
773
855
|
attr_accessor workflow_id: ::String
|
774
856
|
attr_accessor is_unstructured: bool
|
775
857
|
attr_accessor role_arn: ::String
|
858
|
+
attr_accessor event_trigger_names: ::Array[::String]
|
776
859
|
SENSITIVE: []
|
777
860
|
end
|
778
861
|
|
@@ -1090,6 +1173,19 @@ module Aws::CustomerProfiles
|
|
1090
1173
|
SENSITIVE: []
|
1091
1174
|
end
|
1092
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
|
+
|
1093
1189
|
class ListIdentityResolutionJobsRequest
|
1094
1190
|
attr_accessor domain_name: ::String
|
1095
1191
|
attr_accessor next_token: ::String
|
@@ -1114,6 +1210,7 @@ module Aws::CustomerProfiles
|
|
1114
1210
|
attr_accessor workflow_id: ::String
|
1115
1211
|
attr_accessor is_unstructured: bool
|
1116
1212
|
attr_accessor role_arn: ::String
|
1213
|
+
attr_accessor event_trigger_names: ::Array[::String]
|
1117
1214
|
SENSITIVE: []
|
1118
1215
|
end
|
1119
1216
|
|
@@ -1326,6 +1423,14 @@ module Aws::CustomerProfiles
|
|
1326
1423
|
SENSITIVE: []
|
1327
1424
|
end
|
1328
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
|
+
|
1329
1434
|
class ObjectFilter
|
1330
1435
|
attr_accessor key_name: ::String
|
1331
1436
|
attr_accessor values: ::Array[::String]
|
@@ -1345,6 +1450,14 @@ module Aws::CustomerProfiles
|
|
1345
1450
|
SENSITIVE: []
|
1346
1451
|
end
|
1347
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
|
+
|
1348
1461
|
class Profile
|
1349
1462
|
attr_accessor profile_id: ::String
|
1350
1463
|
attr_accessor account_number: ::String
|
@@ -1441,6 +1554,7 @@ module Aws::CustomerProfiles
|
|
1441
1554
|
attr_accessor flow_definition: Types::FlowDefinition
|
1442
1555
|
attr_accessor object_type_names: ::Hash[::String, ::String]
|
1443
1556
|
attr_accessor role_arn: ::String
|
1557
|
+
attr_accessor event_trigger_names: ::Array[::String]
|
1444
1558
|
SENSITIVE: [:flow_definition]
|
1445
1559
|
end
|
1446
1560
|
|
@@ -1455,6 +1569,7 @@ module Aws::CustomerProfiles
|
|
1455
1569
|
attr_accessor workflow_id: ::String
|
1456
1570
|
attr_accessor is_unstructured: bool
|
1457
1571
|
attr_accessor role_arn: ::String
|
1572
|
+
attr_accessor event_trigger_names: ::Array[::String]
|
1458
1573
|
SENSITIVE: []
|
1459
1574
|
end
|
1460
1575
|
|
@@ -1756,6 +1871,30 @@ module Aws::CustomerProfiles
|
|
1756
1871
|
SENSITIVE: []
|
1757
1872
|
end
|
1758
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
|
+
|
1759
1898
|
class UpdateProfileRequest
|
1760
1899
|
attr_accessor domain_name: ::String
|
1761
1900
|
attr_accessor profile_id: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-customerprofiles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|