aws-sdk-customerprofiles 1.75.0 → 1.76.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 +817 -16
- data/lib/aws-sdk-customerprofiles/client_api.rb +576 -7
- data/lib/aws-sdk-customerprofiles/types.rb +1322 -62
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- data/sig/client.rbs +256 -5
- data/sig/types.rbs +351 -4
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -196,6 +196,23 @@ module Aws::CustomerProfiles
|
|
|
196
196
|
SENSITIVE: []
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
+
class CatalogItem
|
|
200
|
+
attr_accessor id: ::String
|
|
201
|
+
attr_accessor name: ::String
|
|
202
|
+
attr_accessor code: ::String
|
|
203
|
+
attr_accessor type: ::String
|
|
204
|
+
attr_accessor category: ::String
|
|
205
|
+
attr_accessor description: ::String
|
|
206
|
+
attr_accessor additional_information: ::String
|
|
207
|
+
attr_accessor image_link: ::String
|
|
208
|
+
attr_accessor link: ::String
|
|
209
|
+
attr_accessor created_at: ::Time
|
|
210
|
+
attr_accessor updated_at: ::Time
|
|
211
|
+
attr_accessor price: ::String
|
|
212
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
|
213
|
+
SENSITIVE: [:id, :name, :code, :type, :category, :description, :additional_information, :image_link, :link, :price, :attributes]
|
|
214
|
+
end
|
|
215
|
+
|
|
199
216
|
class ConditionOverrides
|
|
200
217
|
attr_accessor range: Types::RangeOverride
|
|
201
218
|
SENSITIVE: []
|
|
@@ -300,6 +317,7 @@ module Aws::CustomerProfiles
|
|
|
300
317
|
attr_accessor dead_letter_queue_url: ::String
|
|
301
318
|
attr_accessor matching: Types::MatchingRequest
|
|
302
319
|
attr_accessor rule_based_matching: Types::RuleBasedMatchingRequest
|
|
320
|
+
attr_accessor data_store: Types::DataStoreRequest
|
|
303
321
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
304
322
|
SENSITIVE: []
|
|
305
323
|
end
|
|
@@ -311,6 +329,7 @@ module Aws::CustomerProfiles
|
|
|
311
329
|
attr_accessor dead_letter_queue_url: ::String
|
|
312
330
|
attr_accessor matching: Types::MatchingResponse
|
|
313
331
|
attr_accessor rule_based_matching: Types::RuleBasedMatchingResponse
|
|
332
|
+
attr_accessor data_store: Types::DataStoreResponse
|
|
314
333
|
attr_accessor created_at: ::Time
|
|
315
334
|
attr_accessor last_updated_at: ::Time
|
|
316
335
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -407,14 +426,31 @@ module Aws::CustomerProfiles
|
|
|
407
426
|
SENSITIVE: []
|
|
408
427
|
end
|
|
409
428
|
|
|
429
|
+
class CreateRecommenderRequest
|
|
430
|
+
attr_accessor domain_name: ::String
|
|
431
|
+
attr_accessor recommender_name: ::String
|
|
432
|
+
attr_accessor recommender_recipe_name: ("recommended-for-you" | "similar-items" | "frequently-paired-items" | "popular-items" | "trending-now")
|
|
433
|
+
attr_accessor recommender_config: Types::RecommenderConfig
|
|
434
|
+
attr_accessor description: ::String
|
|
435
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
436
|
+
SENSITIVE: [:description]
|
|
437
|
+
end
|
|
438
|
+
|
|
439
|
+
class CreateRecommenderResponse
|
|
440
|
+
attr_accessor recommender_arn: ::String
|
|
441
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
442
|
+
SENSITIVE: []
|
|
443
|
+
end
|
|
444
|
+
|
|
410
445
|
class CreateSegmentDefinitionRequest
|
|
411
446
|
attr_accessor domain_name: ::String
|
|
412
447
|
attr_accessor segment_definition_name: ::String
|
|
413
448
|
attr_accessor display_name: ::String
|
|
414
449
|
attr_accessor description: ::String
|
|
415
450
|
attr_accessor segment_groups: Types::SegmentGroup
|
|
451
|
+
attr_accessor segment_sql_query: ::String
|
|
416
452
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
417
|
-
SENSITIVE: [:description, :segment_groups]
|
|
453
|
+
SENSITIVE: [:description, :segment_groups, :segment_sql_query]
|
|
418
454
|
end
|
|
419
455
|
|
|
420
456
|
class CreateSegmentDefinitionResponse
|
|
@@ -430,7 +466,8 @@ module Aws::CustomerProfiles
|
|
|
430
466
|
class CreateSegmentEstimateRequest
|
|
431
467
|
attr_accessor domain_name: ::String
|
|
432
468
|
attr_accessor segment_query: Types::SegmentGroupStructure
|
|
433
|
-
|
|
469
|
+
attr_accessor segment_sql_query: ::String
|
|
470
|
+
SENSITIVE: [:segment_sql_query]
|
|
434
471
|
end
|
|
435
472
|
|
|
436
473
|
class CreateSegmentEstimateResponse
|
|
@@ -469,6 +506,17 @@ module Aws::CustomerProfiles
|
|
|
469
506
|
SENSITIVE: []
|
|
470
507
|
end
|
|
471
508
|
|
|
509
|
+
class DataStoreRequest
|
|
510
|
+
attr_accessor enabled: bool
|
|
511
|
+
SENSITIVE: []
|
|
512
|
+
end
|
|
513
|
+
|
|
514
|
+
class DataStoreResponse
|
|
515
|
+
attr_accessor enabled: bool
|
|
516
|
+
attr_accessor readiness: Types::Readiness
|
|
517
|
+
SENSITIVE: []
|
|
518
|
+
end
|
|
519
|
+
|
|
472
520
|
class DateDimension
|
|
473
521
|
attr_accessor dimension_type: ("BEFORE" | "AFTER" | "BETWEEN" | "NOT_BETWEEN" | "ON")
|
|
474
522
|
attr_accessor values: ::Array[::String]
|
|
@@ -495,6 +543,15 @@ module Aws::CustomerProfiles
|
|
|
495
543
|
SENSITIVE: []
|
|
496
544
|
end
|
|
497
545
|
|
|
546
|
+
class DeleteDomainObjectTypeRequest
|
|
547
|
+
attr_accessor domain_name: ::String
|
|
548
|
+
attr_accessor object_type_name: ::String
|
|
549
|
+
SENSITIVE: []
|
|
550
|
+
end
|
|
551
|
+
|
|
552
|
+
class DeleteDomainObjectTypeResponse < Aws::EmptyStructure
|
|
553
|
+
end
|
|
554
|
+
|
|
498
555
|
class DeleteDomainRequest
|
|
499
556
|
attr_accessor domain_name: ::String
|
|
500
557
|
SENSITIVE: []
|
|
@@ -584,6 +641,15 @@ module Aws::CustomerProfiles
|
|
|
584
641
|
SENSITIVE: []
|
|
585
642
|
end
|
|
586
643
|
|
|
644
|
+
class DeleteRecommenderRequest
|
|
645
|
+
attr_accessor domain_name: ::String
|
|
646
|
+
attr_accessor recommender_name: ::String
|
|
647
|
+
SENSITIVE: []
|
|
648
|
+
end
|
|
649
|
+
|
|
650
|
+
class DeleteRecommenderResponse < Aws::EmptyStructure
|
|
651
|
+
end
|
|
652
|
+
|
|
587
653
|
class DeleteSegmentDefinitionRequest
|
|
588
654
|
attr_accessor domain_name: ::String
|
|
589
655
|
attr_accessor segment_definition_name: ::String
|
|
@@ -643,6 +709,23 @@ module Aws::CustomerProfiles
|
|
|
643
709
|
end
|
|
644
710
|
end
|
|
645
711
|
|
|
712
|
+
class DomainObjectTypeField
|
|
713
|
+
attr_accessor source: ::String
|
|
714
|
+
attr_accessor target: ::String
|
|
715
|
+
attr_accessor content_type: ("STRING" | "NUMBER")
|
|
716
|
+
attr_accessor feature_type: ("TEXTUAL" | "CATEGORICAL")
|
|
717
|
+
SENSITIVE: []
|
|
718
|
+
end
|
|
719
|
+
|
|
720
|
+
class DomainObjectTypesListItem
|
|
721
|
+
attr_accessor object_type_name: ::String
|
|
722
|
+
attr_accessor description: ::String
|
|
723
|
+
attr_accessor created_at: ::Time
|
|
724
|
+
attr_accessor last_updated_at: ::Time
|
|
725
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
726
|
+
SENSITIVE: [:description]
|
|
727
|
+
end
|
|
728
|
+
|
|
646
729
|
class DomainStats
|
|
647
730
|
attr_accessor profile_count: ::Integer
|
|
648
731
|
attr_accessor metering_profile_count: ::Integer
|
|
@@ -657,6 +740,12 @@ module Aws::CustomerProfiles
|
|
|
657
740
|
SENSITIVE: []
|
|
658
741
|
end
|
|
659
742
|
|
|
743
|
+
class EventParameters
|
|
744
|
+
attr_accessor event_type: ::String
|
|
745
|
+
attr_accessor event_value_threshold: ::Float
|
|
746
|
+
SENSITIVE: []
|
|
747
|
+
end
|
|
748
|
+
|
|
660
749
|
class EventStreamDestinationDetails
|
|
661
750
|
attr_accessor uri: ::String
|
|
662
751
|
attr_accessor status: ("HEALTHY" | "UNHEALTHY")
|
|
@@ -703,6 +792,11 @@ module Aws::CustomerProfiles
|
|
|
703
792
|
SENSITIVE: []
|
|
704
793
|
end
|
|
705
794
|
|
|
795
|
+
class EventsConfig
|
|
796
|
+
attr_accessor event_parameters_list: ::Array[Types::EventParameters]
|
|
797
|
+
SENSITIVE: []
|
|
798
|
+
end
|
|
799
|
+
|
|
706
800
|
class ExportingConfig
|
|
707
801
|
attr_accessor s3_exporting: Types::S3ExportingConfig
|
|
708
802
|
SENSITIVE: []
|
|
@@ -860,6 +954,23 @@ module Aws::CustomerProfiles
|
|
|
860
954
|
SENSITIVE: [:description, :layout]
|
|
861
955
|
end
|
|
862
956
|
|
|
957
|
+
class GetDomainObjectTypeRequest
|
|
958
|
+
attr_accessor domain_name: ::String
|
|
959
|
+
attr_accessor object_type_name: ::String
|
|
960
|
+
SENSITIVE: []
|
|
961
|
+
end
|
|
962
|
+
|
|
963
|
+
class GetDomainObjectTypeResponse
|
|
964
|
+
attr_accessor object_type_name: ::String
|
|
965
|
+
attr_accessor description: ::String
|
|
966
|
+
attr_accessor encryption_key: ::String
|
|
967
|
+
attr_accessor fields: ::Hash[::String, Types::DomainObjectTypeField]
|
|
968
|
+
attr_accessor created_at: ::Time
|
|
969
|
+
attr_accessor last_updated_at: ::Time
|
|
970
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
971
|
+
SENSITIVE: [:description]
|
|
972
|
+
end
|
|
973
|
+
|
|
863
974
|
class GetDomainRequest
|
|
864
975
|
attr_accessor domain_name: ::String
|
|
865
976
|
SENSITIVE: []
|
|
@@ -873,6 +984,7 @@ module Aws::CustomerProfiles
|
|
|
873
984
|
attr_accessor stats: Types::DomainStats
|
|
874
985
|
attr_accessor matching: Types::MatchingResponse
|
|
875
986
|
attr_accessor rule_based_matching: Types::RuleBasedMatchingResponse
|
|
987
|
+
attr_accessor data_store: Types::DataStoreResponse
|
|
876
988
|
attr_accessor created_at: ::Time
|
|
877
989
|
attr_accessor last_updated_at: ::Time
|
|
878
990
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -954,6 +1066,7 @@ module Aws::CustomerProfiles
|
|
|
954
1066
|
attr_accessor is_unstructured: bool
|
|
955
1067
|
attr_accessor role_arn: ::String
|
|
956
1068
|
attr_accessor event_trigger_names: ::Array[::String]
|
|
1069
|
+
attr_accessor scope: ("PROFILE" | "DOMAIN")
|
|
957
1070
|
SENSITIVE: []
|
|
958
1071
|
end
|
|
959
1072
|
|
|
@@ -972,6 +1085,37 @@ module Aws::CustomerProfiles
|
|
|
972
1085
|
SENSITIVE: []
|
|
973
1086
|
end
|
|
974
1087
|
|
|
1088
|
+
class GetObjectTypeAttributeStatisticsPercentiles
|
|
1089
|
+
attr_accessor p5: ::Float
|
|
1090
|
+
attr_accessor p25: ::Float
|
|
1091
|
+
attr_accessor p50: ::Float
|
|
1092
|
+
attr_accessor p75: ::Float
|
|
1093
|
+
attr_accessor p95: ::Float
|
|
1094
|
+
SENSITIVE: []
|
|
1095
|
+
end
|
|
1096
|
+
|
|
1097
|
+
class GetObjectTypeAttributeStatisticsRequest
|
|
1098
|
+
attr_accessor domain_name: ::String
|
|
1099
|
+
attr_accessor object_type_name: ::String
|
|
1100
|
+
attr_accessor attribute_name: ::String
|
|
1101
|
+
SENSITIVE: []
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
class GetObjectTypeAttributeStatisticsResponse
|
|
1105
|
+
attr_accessor statistics: Types::GetObjectTypeAttributeStatisticsStats
|
|
1106
|
+
attr_accessor calculated_at: ::Time
|
|
1107
|
+
SENSITIVE: []
|
|
1108
|
+
end
|
|
1109
|
+
|
|
1110
|
+
class GetObjectTypeAttributeStatisticsStats
|
|
1111
|
+
attr_accessor maximum: ::Float
|
|
1112
|
+
attr_accessor minimum: ::Float
|
|
1113
|
+
attr_accessor average: ::Float
|
|
1114
|
+
attr_accessor standard_deviation: ::Float
|
|
1115
|
+
attr_accessor percentiles: Types::GetObjectTypeAttributeStatisticsPercentiles
|
|
1116
|
+
SENSITIVE: []
|
|
1117
|
+
end
|
|
1118
|
+
|
|
975
1119
|
class GetProfileHistoryRecordRequest
|
|
976
1120
|
attr_accessor domain_name: ::String
|
|
977
1121
|
attr_accessor profile_id: ::String
|
|
@@ -1031,6 +1175,42 @@ module Aws::CustomerProfiles
|
|
|
1031
1175
|
SENSITIVE: [:fields, :keys]
|
|
1032
1176
|
end
|
|
1033
1177
|
|
|
1178
|
+
class GetProfileRecommendationsRequest
|
|
1179
|
+
attr_accessor domain_name: ::String
|
|
1180
|
+
attr_accessor profile_id: ::String
|
|
1181
|
+
attr_accessor recommender_name: ::String
|
|
1182
|
+
attr_accessor context: ::Hash[::String, ::String]
|
|
1183
|
+
attr_accessor max_results: ::Integer
|
|
1184
|
+
SENSITIVE: [:context]
|
|
1185
|
+
end
|
|
1186
|
+
|
|
1187
|
+
class GetProfileRecommendationsResponse
|
|
1188
|
+
attr_accessor recommendations: ::Array[Types::Recommendation]
|
|
1189
|
+
SENSITIVE: [:recommendations]
|
|
1190
|
+
end
|
|
1191
|
+
|
|
1192
|
+
class GetRecommenderRequest
|
|
1193
|
+
attr_accessor domain_name: ::String
|
|
1194
|
+
attr_accessor recommender_name: ::String
|
|
1195
|
+
attr_accessor training_metrics_count: ::Integer
|
|
1196
|
+
SENSITIVE: []
|
|
1197
|
+
end
|
|
1198
|
+
|
|
1199
|
+
class GetRecommenderResponse
|
|
1200
|
+
attr_accessor recommender_name: ::String
|
|
1201
|
+
attr_accessor recommender_recipe_name: ("recommended-for-you" | "similar-items" | "frequently-paired-items" | "popular-items" | "trending-now")
|
|
1202
|
+
attr_accessor recommender_config: Types::RecommenderConfig
|
|
1203
|
+
attr_accessor description: ::String
|
|
1204
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "ACTIVE" | "FAILED" | "STOPPING" | "INACTIVE" | "STARTING" | "DELETING")
|
|
1205
|
+
attr_accessor last_updated_at: ::Time
|
|
1206
|
+
attr_accessor created_at: ::Time
|
|
1207
|
+
attr_accessor failure_reason: ::String
|
|
1208
|
+
attr_accessor latest_recommender_update: Types::RecommenderUpdate
|
|
1209
|
+
attr_accessor training_metrics: ::Array[Types::TrainingMetrics]
|
|
1210
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1211
|
+
SENSITIVE: [:description]
|
|
1212
|
+
end
|
|
1213
|
+
|
|
1034
1214
|
class GetSegmentDefinitionRequest
|
|
1035
1215
|
attr_accessor domain_name: ::String
|
|
1036
1216
|
attr_accessor segment_definition_name: ::String
|
|
@@ -1045,7 +1225,9 @@ module Aws::CustomerProfiles
|
|
|
1045
1225
|
attr_accessor segment_definition_arn: ::String
|
|
1046
1226
|
attr_accessor created_at: ::Time
|
|
1047
1227
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1048
|
-
|
|
1228
|
+
attr_accessor segment_sql_query: ::String
|
|
1229
|
+
attr_accessor segment_type: ("CLASSIC" | "ENHANCED")
|
|
1230
|
+
SENSITIVE: [:description, :segment_groups, :segment_sql_query]
|
|
1049
1231
|
end
|
|
1050
1232
|
|
|
1051
1233
|
class GetSegmentEstimateRequest
|
|
@@ -1075,6 +1257,7 @@ module Aws::CustomerProfiles
|
|
|
1075
1257
|
attr_accessor segment_definition_name: ::String
|
|
1076
1258
|
attr_accessor profiles: ::Array[Types::ProfileQueryResult]
|
|
1077
1259
|
attr_accessor failures: ::Array[Types::ProfileQueryFailures]
|
|
1260
|
+
attr_accessor last_computed_at: ::Time
|
|
1078
1261
|
SENSITIVE: []
|
|
1079
1262
|
end
|
|
1080
1263
|
|
|
@@ -1326,6 +1509,19 @@ module Aws::CustomerProfiles
|
|
|
1326
1509
|
SENSITIVE: []
|
|
1327
1510
|
end
|
|
1328
1511
|
|
|
1512
|
+
class ListDomainObjectTypesRequest
|
|
1513
|
+
attr_accessor domain_name: ::String
|
|
1514
|
+
attr_accessor max_results: ::Integer
|
|
1515
|
+
attr_accessor next_token: ::String
|
|
1516
|
+
SENSITIVE: []
|
|
1517
|
+
end
|
|
1518
|
+
|
|
1519
|
+
class ListDomainObjectTypesResponse
|
|
1520
|
+
attr_accessor items: ::Array[Types::DomainObjectTypesListItem]
|
|
1521
|
+
attr_accessor next_token: ::String
|
|
1522
|
+
SENSITIVE: [:items]
|
|
1523
|
+
end
|
|
1524
|
+
|
|
1329
1525
|
class ListDomainsRequest
|
|
1330
1526
|
attr_accessor next_token: ::String
|
|
1331
1527
|
attr_accessor max_results: ::Integer
|
|
@@ -1389,6 +1585,7 @@ module Aws::CustomerProfiles
|
|
|
1389
1585
|
attr_accessor is_unstructured: bool
|
|
1390
1586
|
attr_accessor role_arn: ::String
|
|
1391
1587
|
attr_accessor event_trigger_names: ::Array[::String]
|
|
1588
|
+
attr_accessor scope: ("PROFILE" | "DOMAIN")
|
|
1392
1589
|
SENSITIVE: []
|
|
1393
1590
|
end
|
|
1394
1591
|
|
|
@@ -1412,6 +1609,27 @@ module Aws::CustomerProfiles
|
|
|
1412
1609
|
SENSITIVE: []
|
|
1413
1610
|
end
|
|
1414
1611
|
|
|
1612
|
+
class ListObjectTypeAttributeValuesItem
|
|
1613
|
+
attr_accessor value: ::String
|
|
1614
|
+
attr_accessor last_updated_at: ::Time
|
|
1615
|
+
SENSITIVE: [:value]
|
|
1616
|
+
end
|
|
1617
|
+
|
|
1618
|
+
class ListObjectTypeAttributeValuesRequest
|
|
1619
|
+
attr_accessor next_token: ::String
|
|
1620
|
+
attr_accessor max_results: ::Integer
|
|
1621
|
+
attr_accessor domain_name: ::String
|
|
1622
|
+
attr_accessor object_type_name: ::String
|
|
1623
|
+
attr_accessor attribute_name: ::String
|
|
1624
|
+
SENSITIVE: []
|
|
1625
|
+
end
|
|
1626
|
+
|
|
1627
|
+
class ListObjectTypeAttributeValuesResponse
|
|
1628
|
+
attr_accessor items: ::Array[Types::ListObjectTypeAttributeValuesItem]
|
|
1629
|
+
attr_accessor next_token: ::String
|
|
1630
|
+
SENSITIVE: []
|
|
1631
|
+
end
|
|
1632
|
+
|
|
1415
1633
|
class ListObjectTypeAttributesRequest
|
|
1416
1634
|
attr_accessor next_token: ::String
|
|
1417
1635
|
attr_accessor max_results: ::Integer
|
|
@@ -1509,6 +1727,31 @@ module Aws::CustomerProfiles
|
|
|
1509
1727
|
SENSITIVE: []
|
|
1510
1728
|
end
|
|
1511
1729
|
|
|
1730
|
+
class ListRecommenderRecipesRequest
|
|
1731
|
+
attr_accessor max_results: ::Integer
|
|
1732
|
+
attr_accessor next_token: ::String
|
|
1733
|
+
SENSITIVE: []
|
|
1734
|
+
end
|
|
1735
|
+
|
|
1736
|
+
class ListRecommenderRecipesResponse
|
|
1737
|
+
attr_accessor next_token: ::String
|
|
1738
|
+
attr_accessor recommender_recipes: ::Array[Types::RecommenderRecipe]
|
|
1739
|
+
SENSITIVE: []
|
|
1740
|
+
end
|
|
1741
|
+
|
|
1742
|
+
class ListRecommendersRequest
|
|
1743
|
+
attr_accessor domain_name: ::String
|
|
1744
|
+
attr_accessor max_results: ::Integer
|
|
1745
|
+
attr_accessor next_token: ::String
|
|
1746
|
+
SENSITIVE: []
|
|
1747
|
+
end
|
|
1748
|
+
|
|
1749
|
+
class ListRecommendersResponse
|
|
1750
|
+
attr_accessor next_token: ::String
|
|
1751
|
+
attr_accessor recommenders: ::Array[Types::RecommenderSummary]
|
|
1752
|
+
SENSITIVE: []
|
|
1753
|
+
end
|
|
1754
|
+
|
|
1512
1755
|
class ListRuleBasedMatchesRequest
|
|
1513
1756
|
attr_accessor next_token: ::String
|
|
1514
1757
|
attr_accessor max_results: ::Integer
|
|
@@ -1774,15 +2017,37 @@ module Aws::CustomerProfiles
|
|
|
1774
2017
|
SENSITIVE: []
|
|
1775
2018
|
end
|
|
1776
2019
|
|
|
2020
|
+
class PutDomainObjectTypeRequest
|
|
2021
|
+
attr_accessor domain_name: ::String
|
|
2022
|
+
attr_accessor object_type_name: ::String
|
|
2023
|
+
attr_accessor description: ::String
|
|
2024
|
+
attr_accessor encryption_key: ::String
|
|
2025
|
+
attr_accessor fields: ::Hash[::String, Types::DomainObjectTypeField]
|
|
2026
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2027
|
+
SENSITIVE: [:description]
|
|
2028
|
+
end
|
|
2029
|
+
|
|
2030
|
+
class PutDomainObjectTypeResponse
|
|
2031
|
+
attr_accessor object_type_name: ::String
|
|
2032
|
+
attr_accessor description: ::String
|
|
2033
|
+
attr_accessor encryption_key: ::String
|
|
2034
|
+
attr_accessor fields: ::Hash[::String, Types::DomainObjectTypeField]
|
|
2035
|
+
attr_accessor created_at: ::Time
|
|
2036
|
+
attr_accessor last_updated_at: ::Time
|
|
2037
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2038
|
+
SENSITIVE: [:description]
|
|
2039
|
+
end
|
|
2040
|
+
|
|
1777
2041
|
class PutIntegrationRequest
|
|
1778
2042
|
attr_accessor domain_name: ::String
|
|
1779
2043
|
attr_accessor uri: ::String
|
|
1780
2044
|
attr_accessor object_type_name: ::String
|
|
2045
|
+
attr_accessor object_type_names: ::Hash[::String, ::String]
|
|
1781
2046
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1782
2047
|
attr_accessor flow_definition: Types::FlowDefinition
|
|
1783
|
-
attr_accessor object_type_names: ::Hash[::String, ::String]
|
|
1784
2048
|
attr_accessor role_arn: ::String
|
|
1785
2049
|
attr_accessor event_trigger_names: ::Array[::String]
|
|
2050
|
+
attr_accessor scope: ("PROFILE" | "DOMAIN")
|
|
1786
2051
|
SENSITIVE: [:flow_definition]
|
|
1787
2052
|
end
|
|
1788
2053
|
|
|
@@ -1798,6 +2063,7 @@ module Aws::CustomerProfiles
|
|
|
1798
2063
|
attr_accessor is_unstructured: bool
|
|
1799
2064
|
attr_accessor role_arn: ::String
|
|
1800
2065
|
attr_accessor event_trigger_names: ::Array[::String]
|
|
2066
|
+
attr_accessor scope: ("PROFILE" | "DOMAIN")
|
|
1801
2067
|
SENSITIVE: []
|
|
1802
2068
|
end
|
|
1803
2069
|
|
|
@@ -1869,6 +2135,47 @@ module Aws::CustomerProfiles
|
|
|
1869
2135
|
SENSITIVE: []
|
|
1870
2136
|
end
|
|
1871
2137
|
|
|
2138
|
+
class Recommendation
|
|
2139
|
+
attr_accessor catalog_item: Types::CatalogItem
|
|
2140
|
+
attr_accessor score: ::Float
|
|
2141
|
+
SENSITIVE: []
|
|
2142
|
+
end
|
|
2143
|
+
|
|
2144
|
+
class RecommenderConfig
|
|
2145
|
+
attr_accessor events_config: Types::EventsConfig
|
|
2146
|
+
attr_accessor training_frequency: ::Integer
|
|
2147
|
+
SENSITIVE: []
|
|
2148
|
+
end
|
|
2149
|
+
|
|
2150
|
+
class RecommenderRecipe
|
|
2151
|
+
attr_accessor name: ("recommended-for-you" | "similar-items" | "frequently-paired-items" | "popular-items" | "trending-now")
|
|
2152
|
+
attr_accessor description: ::String
|
|
2153
|
+
SENSITIVE: []
|
|
2154
|
+
end
|
|
2155
|
+
|
|
2156
|
+
class RecommenderSummary
|
|
2157
|
+
attr_accessor recommender_name: ::String
|
|
2158
|
+
attr_accessor recipe_name: ("recommended-for-you" | "similar-items" | "frequently-paired-items" | "popular-items" | "trending-now")
|
|
2159
|
+
attr_accessor recommender_config: Types::RecommenderConfig
|
|
2160
|
+
attr_accessor created_at: ::Time
|
|
2161
|
+
attr_accessor description: ::String
|
|
2162
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "ACTIVE" | "FAILED" | "STOPPING" | "INACTIVE" | "STARTING" | "DELETING")
|
|
2163
|
+
attr_accessor last_updated_at: ::Time
|
|
2164
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2165
|
+
attr_accessor failure_reason: ::String
|
|
2166
|
+
attr_accessor latest_recommender_update: Types::RecommenderUpdate
|
|
2167
|
+
SENSITIVE: [:description]
|
|
2168
|
+
end
|
|
2169
|
+
|
|
2170
|
+
class RecommenderUpdate
|
|
2171
|
+
attr_accessor recommender_config: Types::RecommenderConfig
|
|
2172
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "ACTIVE" | "FAILED" | "STOPPING" | "INACTIVE" | "STARTING" | "DELETING")
|
|
2173
|
+
attr_accessor created_at: ::Time
|
|
2174
|
+
attr_accessor last_updated_at: ::Time
|
|
2175
|
+
attr_accessor failure_reason: ::String
|
|
2176
|
+
SENSITIVE: []
|
|
2177
|
+
end
|
|
2178
|
+
|
|
1872
2179
|
class ResourceNotFoundException
|
|
1873
2180
|
attr_accessor message: ::String
|
|
1874
2181
|
SENSITIVE: []
|
|
@@ -1964,6 +2271,7 @@ module Aws::CustomerProfiles
|
|
|
1964
2271
|
attr_accessor segment_definition_arn: ::String
|
|
1965
2272
|
attr_accessor created_at: ::Time
|
|
1966
2273
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2274
|
+
attr_accessor segment_type: ("CLASSIC" | "ENHANCED")
|
|
1967
2275
|
SENSITIVE: [:description]
|
|
1968
2276
|
end
|
|
1969
2277
|
|
|
@@ -2006,6 +2314,15 @@ module Aws::CustomerProfiles
|
|
|
2006
2314
|
SENSITIVE: []
|
|
2007
2315
|
end
|
|
2008
2316
|
|
|
2317
|
+
class StartRecommenderRequest
|
|
2318
|
+
attr_accessor domain_name: ::String
|
|
2319
|
+
attr_accessor recommender_name: ::String
|
|
2320
|
+
SENSITIVE: []
|
|
2321
|
+
end
|
|
2322
|
+
|
|
2323
|
+
class StartRecommenderResponse < Aws::EmptyStructure
|
|
2324
|
+
end
|
|
2325
|
+
|
|
2009
2326
|
class StartUploadJobRequest
|
|
2010
2327
|
attr_accessor domain_name: ::String
|
|
2011
2328
|
attr_accessor job_id: ::String
|
|
@@ -2015,6 +2332,15 @@ module Aws::CustomerProfiles
|
|
|
2015
2332
|
class StartUploadJobResponse < Aws::EmptyStructure
|
|
2016
2333
|
end
|
|
2017
2334
|
|
|
2335
|
+
class StopRecommenderRequest
|
|
2336
|
+
attr_accessor domain_name: ::String
|
|
2337
|
+
attr_accessor recommender_name: ::String
|
|
2338
|
+
SENSITIVE: []
|
|
2339
|
+
end
|
|
2340
|
+
|
|
2341
|
+
class StopRecommenderResponse < Aws::EmptyStructure
|
|
2342
|
+
end
|
|
2343
|
+
|
|
2018
2344
|
class StopUploadJobRequest
|
|
2019
2345
|
attr_accessor domain_name: ::String
|
|
2020
2346
|
attr_accessor job_id: ::String
|
|
@@ -2053,6 +2379,12 @@ module Aws::CustomerProfiles
|
|
|
2053
2379
|
SENSITIVE: []
|
|
2054
2380
|
end
|
|
2055
2381
|
|
|
2382
|
+
class TrainingMetrics
|
|
2383
|
+
attr_accessor time: ::Time
|
|
2384
|
+
attr_accessor metrics: ::Hash[("hit" | "coverage" | "recall" | "popularity" | "freshness" | "similarity"), ::Float]
|
|
2385
|
+
SENSITIVE: []
|
|
2386
|
+
end
|
|
2387
|
+
|
|
2056
2388
|
class TriggerConfig
|
|
2057
2389
|
attr_accessor trigger_type: ("Scheduled" | "Event" | "OnDemand")
|
|
2058
2390
|
attr_accessor trigger_properties: Types::TriggerProperties
|
|
@@ -2144,6 +2476,7 @@ module Aws::CustomerProfiles
|
|
|
2144
2476
|
attr_accessor dead_letter_queue_url: ::String
|
|
2145
2477
|
attr_accessor matching: Types::MatchingRequest
|
|
2146
2478
|
attr_accessor rule_based_matching: Types::RuleBasedMatchingRequest
|
|
2479
|
+
attr_accessor data_store: Types::DataStoreRequest
|
|
2147
2480
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2148
2481
|
SENSITIVE: []
|
|
2149
2482
|
end
|
|
@@ -2155,6 +2488,7 @@ module Aws::CustomerProfiles
|
|
|
2155
2488
|
attr_accessor dead_letter_queue_url: ::String
|
|
2156
2489
|
attr_accessor matching: Types::MatchingResponse
|
|
2157
2490
|
attr_accessor rule_based_matching: Types::RuleBasedMatchingResponse
|
|
2491
|
+
attr_accessor data_store: Types::DataStoreResponse
|
|
2158
2492
|
attr_accessor created_at: ::Time
|
|
2159
2493
|
attr_accessor last_updated_at: ::Time
|
|
2160
2494
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -2221,6 +2555,19 @@ module Aws::CustomerProfiles
|
|
|
2221
2555
|
SENSITIVE: []
|
|
2222
2556
|
end
|
|
2223
2557
|
|
|
2558
|
+
class UpdateRecommenderRequest
|
|
2559
|
+
attr_accessor domain_name: ::String
|
|
2560
|
+
attr_accessor recommender_name: ::String
|
|
2561
|
+
attr_accessor description: ::String
|
|
2562
|
+
attr_accessor recommender_config: Types::RecommenderConfig
|
|
2563
|
+
SENSITIVE: [:description]
|
|
2564
|
+
end
|
|
2565
|
+
|
|
2566
|
+
class UpdateRecommenderResponse
|
|
2567
|
+
attr_accessor recommender_name: ::String
|
|
2568
|
+
SENSITIVE: []
|
|
2569
|
+
end
|
|
2570
|
+
|
|
2224
2571
|
class UploadJobItem
|
|
2225
2572
|
attr_accessor job_id: ::String
|
|
2226
2573
|
attr_accessor display_name: ::String
|