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/client.rbs
CHANGED
|
@@ -202,6 +202,7 @@ module Aws
|
|
|
202
202
|
def dead_letter_queue_url: () -> ::String
|
|
203
203
|
def matching: () -> Types::MatchingResponse
|
|
204
204
|
def rule_based_matching: () -> Types::RuleBasedMatchingResponse
|
|
205
|
+
def data_store: () -> Types::DataStoreResponse
|
|
205
206
|
def created_at: () -> ::Time
|
|
206
207
|
def last_updated_at: () -> ::Time
|
|
207
208
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -264,6 +265,9 @@ module Aws
|
|
|
264
265
|
}?
|
|
265
266
|
}?
|
|
266
267
|
},
|
|
268
|
+
?data_store: {
|
|
269
|
+
enabled: bool?
|
|
270
|
+
},
|
|
267
271
|
?tags: Hash[::String, ::String]
|
|
268
272
|
) -> _CreateDomainResponseSuccess
|
|
269
273
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
|
|
@@ -541,6 +545,32 @@ module Aws
|
|
|
541
545
|
) -> _CreateProfileResponseSuccess
|
|
542
546
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProfileResponseSuccess
|
|
543
547
|
|
|
548
|
+
interface _CreateRecommenderResponseSuccess
|
|
549
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRecommenderResponse]
|
|
550
|
+
def recommender_arn: () -> ::String
|
|
551
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
552
|
+
end
|
|
553
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_recommender-instance_method
|
|
554
|
+
def create_recommender: (
|
|
555
|
+
domain_name: ::String,
|
|
556
|
+
recommender_name: ::String,
|
|
557
|
+
recommender_recipe_name: ("recommended-for-you" | "similar-items" | "frequently-paired-items" | "popular-items" | "trending-now"),
|
|
558
|
+
?recommender_config: {
|
|
559
|
+
events_config: {
|
|
560
|
+
event_parameters_list: Array[
|
|
561
|
+
{
|
|
562
|
+
event_type: ::String,
|
|
563
|
+
event_value_threshold: ::Float?
|
|
564
|
+
},
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
training_frequency: ::Integer?
|
|
568
|
+
},
|
|
569
|
+
?description: ::String,
|
|
570
|
+
?tags: Hash[::String, ::String]
|
|
571
|
+
) -> _CreateRecommenderResponseSuccess
|
|
572
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRecommenderResponseSuccess
|
|
573
|
+
|
|
544
574
|
interface _CreateSegmentDefinitionResponseSuccess
|
|
545
575
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSegmentDefinitionResponse]
|
|
546
576
|
def segment_definition_name: () -> ::String
|
|
@@ -556,7 +586,7 @@ module Aws
|
|
|
556
586
|
segment_definition_name: ::String,
|
|
557
587
|
display_name: ::String,
|
|
558
588
|
?description: ::String,
|
|
559
|
-
segment_groups: {
|
|
589
|
+
?segment_groups: {
|
|
560
590
|
groups: Array[
|
|
561
591
|
{
|
|
562
592
|
dimensions: Array[
|
|
@@ -763,6 +793,7 @@ module Aws
|
|
|
763
793
|
]?,
|
|
764
794
|
include: ("ALL" | "ANY" | "NONE")?
|
|
765
795
|
},
|
|
796
|
+
?segment_sql_query: ::String,
|
|
766
797
|
?tags: Hash[::String, ::String]
|
|
767
798
|
) -> _CreateSegmentDefinitionResponseSuccess
|
|
768
799
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSegmentDefinitionResponseSuccess
|
|
@@ -776,7 +807,7 @@ module Aws
|
|
|
776
807
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#create_segment_estimate-instance_method
|
|
777
808
|
def create_segment_estimate: (
|
|
778
809
|
domain_name: ::String,
|
|
779
|
-
segment_query: {
|
|
810
|
+
?segment_query: {
|
|
780
811
|
groups: Array[
|
|
781
812
|
{
|
|
782
813
|
dimensions: Array[
|
|
@@ -982,7 +1013,8 @@ module Aws
|
|
|
982
1013
|
},
|
|
983
1014
|
]?,
|
|
984
1015
|
include: ("ALL" | "ANY" | "NONE")?
|
|
985
|
-
}
|
|
1016
|
+
},
|
|
1017
|
+
?segment_sql_query: ::String
|
|
986
1018
|
) -> _CreateSegmentEstimateResponseSuccess
|
|
987
1019
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSegmentEstimateResponseSuccess
|
|
988
1020
|
|
|
@@ -1050,6 +1082,16 @@ module Aws
|
|
|
1050
1082
|
) -> _DeleteDomainLayoutResponseSuccess
|
|
1051
1083
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainLayoutResponseSuccess
|
|
1052
1084
|
|
|
1085
|
+
interface _DeleteDomainObjectTypeResponseSuccess
|
|
1086
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainObjectTypeResponse]
|
|
1087
|
+
end
|
|
1088
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#delete_domain_object_type-instance_method
|
|
1089
|
+
def delete_domain_object_type: (
|
|
1090
|
+
domain_name: ::String,
|
|
1091
|
+
object_type_name: ::String
|
|
1092
|
+
) -> _DeleteDomainObjectTypeResponseSuccess
|
|
1093
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainObjectTypeResponseSuccess
|
|
1094
|
+
|
|
1053
1095
|
interface _DeleteEventStreamResponseSuccess
|
|
1054
1096
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEventStreamResponse]
|
|
1055
1097
|
end
|
|
@@ -1130,6 +1172,16 @@ module Aws
|
|
|
1130
1172
|
) -> _DeleteProfileObjectTypeResponseSuccess
|
|
1131
1173
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProfileObjectTypeResponseSuccess
|
|
1132
1174
|
|
|
1175
|
+
interface _DeleteRecommenderResponseSuccess
|
|
1176
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRecommenderResponse]
|
|
1177
|
+
end
|
|
1178
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#delete_recommender-instance_method
|
|
1179
|
+
def delete_recommender: (
|
|
1180
|
+
domain_name: ::String,
|
|
1181
|
+
recommender_name: ::String
|
|
1182
|
+
) -> _DeleteRecommenderResponseSuccess
|
|
1183
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRecommenderResponseSuccess
|
|
1184
|
+
|
|
1133
1185
|
interface _DeleteSegmentDefinitionResponseSuccess
|
|
1134
1186
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSegmentDefinitionResponse]
|
|
1135
1187
|
def message: () -> ::String
|
|
@@ -1233,6 +1285,7 @@ module Aws
|
|
|
1233
1285
|
def stats: () -> Types::DomainStats
|
|
1234
1286
|
def matching: () -> Types::MatchingResponse
|
|
1235
1287
|
def rule_based_matching: () -> Types::RuleBasedMatchingResponse
|
|
1288
|
+
def data_store: () -> Types::DataStoreResponse
|
|
1236
1289
|
def created_at: () -> ::Time
|
|
1237
1290
|
def last_updated_at: () -> ::Time
|
|
1238
1291
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -1263,6 +1316,23 @@ module Aws
|
|
|
1263
1316
|
) -> _GetDomainLayoutResponseSuccess
|
|
1264
1317
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainLayoutResponseSuccess
|
|
1265
1318
|
|
|
1319
|
+
interface _GetDomainObjectTypeResponseSuccess
|
|
1320
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainObjectTypeResponse]
|
|
1321
|
+
def object_type_name: () -> ::String
|
|
1322
|
+
def description: () -> ::String
|
|
1323
|
+
def encryption_key: () -> ::String
|
|
1324
|
+
def fields: () -> ::Hash[::String, Types::DomainObjectTypeField]
|
|
1325
|
+
def created_at: () -> ::Time
|
|
1326
|
+
def last_updated_at: () -> ::Time
|
|
1327
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1328
|
+
end
|
|
1329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_domain_object_type-instance_method
|
|
1330
|
+
def get_domain_object_type: (
|
|
1331
|
+
domain_name: ::String,
|
|
1332
|
+
object_type_name: ::String
|
|
1333
|
+
) -> _GetDomainObjectTypeResponseSuccess
|
|
1334
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainObjectTypeResponseSuccess
|
|
1335
|
+
|
|
1266
1336
|
interface _GetEventStreamResponseSuccess
|
|
1267
1337
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetEventStreamResponse]
|
|
1268
1338
|
def domain_name: () -> ::String
|
|
@@ -1333,6 +1403,7 @@ module Aws
|
|
|
1333
1403
|
def is_unstructured: () -> bool
|
|
1334
1404
|
def role_arn: () -> ::String
|
|
1335
1405
|
def event_trigger_names: () -> ::Array[::String]
|
|
1406
|
+
def scope: () -> ("PROFILE" | "DOMAIN")
|
|
1336
1407
|
end
|
|
1337
1408
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_integration-instance_method
|
|
1338
1409
|
def get_integration: (
|
|
@@ -1356,6 +1427,19 @@ module Aws
|
|
|
1356
1427
|
) -> _GetMatchesResponseSuccess
|
|
1357
1428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMatchesResponseSuccess
|
|
1358
1429
|
|
|
1430
|
+
interface _GetObjectTypeAttributeStatisticsResponseSuccess
|
|
1431
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetObjectTypeAttributeStatisticsResponse]
|
|
1432
|
+
def statistics: () -> Types::GetObjectTypeAttributeStatisticsStats
|
|
1433
|
+
def calculated_at: () -> ::Time
|
|
1434
|
+
end
|
|
1435
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_object_type_attribute_statistics-instance_method
|
|
1436
|
+
def get_object_type_attribute_statistics: (
|
|
1437
|
+
domain_name: ::String,
|
|
1438
|
+
object_type_name: ::String,
|
|
1439
|
+
attribute_name: ::String
|
|
1440
|
+
) -> _GetObjectTypeAttributeStatisticsResponseSuccess
|
|
1441
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetObjectTypeAttributeStatisticsResponseSuccess
|
|
1442
|
+
|
|
1359
1443
|
interface _GetProfileHistoryRecordResponseSuccess
|
|
1360
1444
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileHistoryRecordResponse]
|
|
1361
1445
|
def id: () -> ::String
|
|
@@ -1415,6 +1499,42 @@ module Aws
|
|
|
1415
1499
|
) -> _GetProfileObjectTypeTemplateResponseSuccess
|
|
1416
1500
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileObjectTypeTemplateResponseSuccess
|
|
1417
1501
|
|
|
1502
|
+
interface _GetProfileRecommendationsResponseSuccess
|
|
1503
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileRecommendationsResponse]
|
|
1504
|
+
def recommendations: () -> ::Array[Types::Recommendation]
|
|
1505
|
+
end
|
|
1506
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_profile_recommendations-instance_method
|
|
1507
|
+
def get_profile_recommendations: (
|
|
1508
|
+
domain_name: ::String,
|
|
1509
|
+
profile_id: ::String,
|
|
1510
|
+
recommender_name: ::String,
|
|
1511
|
+
?context: Hash[::String, ::String],
|
|
1512
|
+
?max_results: ::Integer
|
|
1513
|
+
) -> _GetProfileRecommendationsResponseSuccess
|
|
1514
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileRecommendationsResponseSuccess
|
|
1515
|
+
|
|
1516
|
+
interface _GetRecommenderResponseSuccess
|
|
1517
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRecommenderResponse]
|
|
1518
|
+
def recommender_name: () -> ::String
|
|
1519
|
+
def recommender_recipe_name: () -> ("recommended-for-you" | "similar-items" | "frequently-paired-items" | "popular-items" | "trending-now")
|
|
1520
|
+
def recommender_config: () -> Types::RecommenderConfig
|
|
1521
|
+
def description: () -> ::String
|
|
1522
|
+
def status: () -> ("PENDING" | "IN_PROGRESS" | "ACTIVE" | "FAILED" | "STOPPING" | "INACTIVE" | "STARTING" | "DELETING")
|
|
1523
|
+
def last_updated_at: () -> ::Time
|
|
1524
|
+
def created_at: () -> ::Time
|
|
1525
|
+
def failure_reason: () -> ::String
|
|
1526
|
+
def latest_recommender_update: () -> Types::RecommenderUpdate
|
|
1527
|
+
def training_metrics: () -> ::Array[Types::TrainingMetrics]
|
|
1528
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
1529
|
+
end
|
|
1530
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_recommender-instance_method
|
|
1531
|
+
def get_recommender: (
|
|
1532
|
+
domain_name: ::String,
|
|
1533
|
+
recommender_name: ::String,
|
|
1534
|
+
?training_metrics_count: ::Integer
|
|
1535
|
+
) -> _GetRecommenderResponseSuccess
|
|
1536
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecommenderResponseSuccess
|
|
1537
|
+
|
|
1418
1538
|
interface _GetSegmentDefinitionResponseSuccess
|
|
1419
1539
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetSegmentDefinitionResponse]
|
|
1420
1540
|
def segment_definition_name: () -> ::String
|
|
@@ -1424,6 +1544,8 @@ module Aws
|
|
|
1424
1544
|
def segment_definition_arn: () -> ::String
|
|
1425
1545
|
def created_at: () -> ::Time
|
|
1426
1546
|
def tags: () -> ::Hash[::String, ::String]
|
|
1547
|
+
def segment_sql_query: () -> ::String
|
|
1548
|
+
def segment_type: () -> ("CLASSIC" | "ENHANCED")
|
|
1427
1549
|
end
|
|
1428
1550
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_segment_definition-instance_method
|
|
1429
1551
|
def get_segment_definition: (
|
|
@@ -1453,6 +1575,7 @@ module Aws
|
|
|
1453
1575
|
def segment_definition_name: () -> ::String
|
|
1454
1576
|
def profiles: () -> ::Array[Types::ProfileQueryResult]
|
|
1455
1577
|
def failures: () -> ::Array[Types::ProfileQueryFailures]
|
|
1578
|
+
def last_computed_at: () -> ::Time
|
|
1456
1579
|
end
|
|
1457
1580
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#get_segment_membership-instance_method
|
|
1458
1581
|
def get_segment_membership: (
|
|
@@ -1621,6 +1744,19 @@ module Aws
|
|
|
1621
1744
|
) -> _ListDomainLayoutsResponseSuccess
|
|
1622
1745
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainLayoutsResponseSuccess
|
|
1623
1746
|
|
|
1747
|
+
interface _ListDomainObjectTypesResponseSuccess
|
|
1748
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainObjectTypesResponse]
|
|
1749
|
+
def items: () -> ::Array[Types::DomainObjectTypesListItem]
|
|
1750
|
+
def next_token: () -> ::String
|
|
1751
|
+
end
|
|
1752
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_domain_object_types-instance_method
|
|
1753
|
+
def list_domain_object_types: (
|
|
1754
|
+
domain_name: ::String,
|
|
1755
|
+
?max_results: ::Integer,
|
|
1756
|
+
?next_token: ::String
|
|
1757
|
+
) -> _ListDomainObjectTypesResponseSuccess
|
|
1758
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainObjectTypesResponseSuccess
|
|
1759
|
+
|
|
1624
1760
|
interface _ListDomainsResponseSuccess
|
|
1625
1761
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsResponse]
|
|
1626
1762
|
def items: () -> ::Array[Types::ListDomainItem]
|
|
@@ -1686,6 +1822,21 @@ module Aws
|
|
|
1686
1822
|
) -> _ListIntegrationsResponseSuccess
|
|
1687
1823
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIntegrationsResponseSuccess
|
|
1688
1824
|
|
|
1825
|
+
interface _ListObjectTypeAttributeValuesResponseSuccess
|
|
1826
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListObjectTypeAttributeValuesResponse]
|
|
1827
|
+
def items: () -> ::Array[Types::ListObjectTypeAttributeValuesItem]
|
|
1828
|
+
def next_token: () -> ::String
|
|
1829
|
+
end
|
|
1830
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_object_type_attribute_values-instance_method
|
|
1831
|
+
def list_object_type_attribute_values: (
|
|
1832
|
+
?next_token: ::String,
|
|
1833
|
+
?max_results: ::Integer,
|
|
1834
|
+
domain_name: ::String,
|
|
1835
|
+
object_type_name: ::String,
|
|
1836
|
+
attribute_name: ::String
|
|
1837
|
+
) -> _ListObjectTypeAttributeValuesResponseSuccess
|
|
1838
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListObjectTypeAttributeValuesResponseSuccess
|
|
1839
|
+
|
|
1689
1840
|
interface _ListObjectTypeAttributesResponseSuccess
|
|
1690
1841
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListObjectTypeAttributesResponse]
|
|
1691
1842
|
def items: () -> ::Array[Types::ListObjectTypeAttributeItem]
|
|
@@ -1775,6 +1926,31 @@ module Aws
|
|
|
1775
1926
|
) -> _ListProfileObjectsResponseSuccess
|
|
1776
1927
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProfileObjectsResponseSuccess
|
|
1777
1928
|
|
|
1929
|
+
interface _ListRecommenderRecipesResponseSuccess
|
|
1930
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRecommenderRecipesResponse]
|
|
1931
|
+
def next_token: () -> ::String
|
|
1932
|
+
def recommender_recipes: () -> ::Array[Types::RecommenderRecipe]
|
|
1933
|
+
end
|
|
1934
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_recommender_recipes-instance_method
|
|
1935
|
+
def list_recommender_recipes: (
|
|
1936
|
+
?max_results: ::Integer,
|
|
1937
|
+
?next_token: ::String
|
|
1938
|
+
) -> _ListRecommenderRecipesResponseSuccess
|
|
1939
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommenderRecipesResponseSuccess
|
|
1940
|
+
|
|
1941
|
+
interface _ListRecommendersResponseSuccess
|
|
1942
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRecommendersResponse]
|
|
1943
|
+
def next_token: () -> ::String
|
|
1944
|
+
def recommenders: () -> ::Array[Types::RecommenderSummary]
|
|
1945
|
+
end
|
|
1946
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#list_recommenders-instance_method
|
|
1947
|
+
def list_recommenders: (
|
|
1948
|
+
domain_name: ::String,
|
|
1949
|
+
?max_results: ::Integer,
|
|
1950
|
+
?next_token: ::String
|
|
1951
|
+
) -> _ListRecommendersResponseSuccess
|
|
1952
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRecommendersResponseSuccess
|
|
1953
|
+
|
|
1778
1954
|
interface _ListRuleBasedMatchesResponseSuccess
|
|
1779
1955
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRuleBasedMatchesResponse]
|
|
1780
1956
|
def match_ids: () -> ::Array[::String]
|
|
@@ -1878,6 +2054,32 @@ module Aws
|
|
|
1878
2054
|
) -> _MergeProfilesResponseSuccess
|
|
1879
2055
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MergeProfilesResponseSuccess
|
|
1880
2056
|
|
|
2057
|
+
interface _PutDomainObjectTypeResponseSuccess
|
|
2058
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutDomainObjectTypeResponse]
|
|
2059
|
+
def object_type_name: () -> ::String
|
|
2060
|
+
def description: () -> ::String
|
|
2061
|
+
def encryption_key: () -> ::String
|
|
2062
|
+
def fields: () -> ::Hash[::String, Types::DomainObjectTypeField]
|
|
2063
|
+
def created_at: () -> ::Time
|
|
2064
|
+
def last_updated_at: () -> ::Time
|
|
2065
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
2066
|
+
end
|
|
2067
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#put_domain_object_type-instance_method
|
|
2068
|
+
def put_domain_object_type: (
|
|
2069
|
+
domain_name: ::String,
|
|
2070
|
+
object_type_name: ::String,
|
|
2071
|
+
?description: ::String,
|
|
2072
|
+
?encryption_key: ::String,
|
|
2073
|
+
fields: Hash[::String, {
|
|
2074
|
+
source: ::String,
|
|
2075
|
+
target: ::String,
|
|
2076
|
+
content_type: ("STRING" | "NUMBER")?,
|
|
2077
|
+
feature_type: ("TEXTUAL" | "CATEGORICAL")?
|
|
2078
|
+
}],
|
|
2079
|
+
?tags: Hash[::String, ::String]
|
|
2080
|
+
) -> _PutDomainObjectTypeResponseSuccess
|
|
2081
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDomainObjectTypeResponseSuccess
|
|
2082
|
+
|
|
1881
2083
|
interface _PutIntegrationResponseSuccess
|
|
1882
2084
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutIntegrationResponse]
|
|
1883
2085
|
def domain_name: () -> ::String
|
|
@@ -1891,12 +2093,14 @@ module Aws
|
|
|
1891
2093
|
def is_unstructured: () -> bool
|
|
1892
2094
|
def role_arn: () -> ::String
|
|
1893
2095
|
def event_trigger_names: () -> ::Array[::String]
|
|
2096
|
+
def scope: () -> ("PROFILE" | "DOMAIN")
|
|
1894
2097
|
end
|
|
1895
2098
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#put_integration-instance_method
|
|
1896
2099
|
def put_integration: (
|
|
1897
2100
|
domain_name: ::String,
|
|
1898
2101
|
?uri: ::String,
|
|
1899
2102
|
?object_type_name: ::String,
|
|
2103
|
+
?object_type_names: Hash[::String, ::String],
|
|
1900
2104
|
?tags: Hash[::String, ::String],
|
|
1901
2105
|
?flow_definition: {
|
|
1902
2106
|
description: ::String?,
|
|
@@ -1959,9 +2163,9 @@ module Aws
|
|
|
1959
2163
|
}?
|
|
1960
2164
|
}
|
|
1961
2165
|
},
|
|
1962
|
-
?object_type_names: Hash[::String, ::String],
|
|
1963
2166
|
?role_arn: ::String,
|
|
1964
|
-
?event_trigger_names: Array[::String]
|
|
2167
|
+
?event_trigger_names: Array[::String],
|
|
2168
|
+
?scope: ("PROFILE" | "DOMAIN")
|
|
1965
2169
|
) -> _PutIntegrationResponseSuccess
|
|
1966
2170
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
|
|
1967
2171
|
|
|
@@ -2042,6 +2246,16 @@ module Aws
|
|
|
2042
2246
|
) -> _SearchProfilesResponseSuccess
|
|
2043
2247
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchProfilesResponseSuccess
|
|
2044
2248
|
|
|
2249
|
+
interface _StartRecommenderResponseSuccess
|
|
2250
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartRecommenderResponse]
|
|
2251
|
+
end
|
|
2252
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#start_recommender-instance_method
|
|
2253
|
+
def start_recommender: (
|
|
2254
|
+
domain_name: ::String,
|
|
2255
|
+
recommender_name: ::String
|
|
2256
|
+
) -> _StartRecommenderResponseSuccess
|
|
2257
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRecommenderResponseSuccess
|
|
2258
|
+
|
|
2045
2259
|
interface _StartUploadJobResponseSuccess
|
|
2046
2260
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartUploadJobResponse]
|
|
2047
2261
|
end
|
|
@@ -2052,6 +2266,16 @@ module Aws
|
|
|
2052
2266
|
) -> _StartUploadJobResponseSuccess
|
|
2053
2267
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartUploadJobResponseSuccess
|
|
2054
2268
|
|
|
2269
|
+
interface _StopRecommenderResponseSuccess
|
|
2270
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopRecommenderResponse]
|
|
2271
|
+
end
|
|
2272
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#stop_recommender-instance_method
|
|
2273
|
+
def stop_recommender: (
|
|
2274
|
+
domain_name: ::String,
|
|
2275
|
+
recommender_name: ::String
|
|
2276
|
+
) -> _StopRecommenderResponseSuccess
|
|
2277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRecommenderResponseSuccess
|
|
2278
|
+
|
|
2055
2279
|
interface _StopUploadJobResponseSuccess
|
|
2056
2280
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopUploadJobResponse]
|
|
2057
2281
|
end
|
|
@@ -2131,6 +2355,7 @@ module Aws
|
|
|
2131
2355
|
def dead_letter_queue_url: () -> ::String
|
|
2132
2356
|
def matching: () -> Types::MatchingResponse
|
|
2133
2357
|
def rule_based_matching: () -> Types::RuleBasedMatchingResponse
|
|
2358
|
+
def data_store: () -> Types::DataStoreResponse
|
|
2134
2359
|
def created_at: () -> ::Time
|
|
2135
2360
|
def last_updated_at: () -> ::Time
|
|
2136
2361
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -2193,6 +2418,9 @@ module Aws
|
|
|
2193
2418
|
}?
|
|
2194
2419
|
}?
|
|
2195
2420
|
},
|
|
2421
|
+
?data_store: {
|
|
2422
|
+
enabled: bool?
|
|
2423
|
+
},
|
|
2196
2424
|
?tags: Hash[::String, ::String]
|
|
2197
2425
|
) -> _UpdateDomainResponseSuccess
|
|
2198
2426
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
|
|
@@ -2368,6 +2596,29 @@ module Aws
|
|
|
2368
2596
|
}
|
|
2369
2597
|
) -> _UpdateProfileResponseSuccess
|
|
2370
2598
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProfileResponseSuccess
|
|
2599
|
+
|
|
2600
|
+
interface _UpdateRecommenderResponseSuccess
|
|
2601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecommenderResponse]
|
|
2602
|
+
def recommender_name: () -> ::String
|
|
2603
|
+
end
|
|
2604
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CustomerProfiles/Client.html#update_recommender-instance_method
|
|
2605
|
+
def update_recommender: (
|
|
2606
|
+
domain_name: ::String,
|
|
2607
|
+
recommender_name: ::String,
|
|
2608
|
+
?description: ::String,
|
|
2609
|
+
?recommender_config: {
|
|
2610
|
+
events_config: {
|
|
2611
|
+
event_parameters_list: Array[
|
|
2612
|
+
{
|
|
2613
|
+
event_type: ::String,
|
|
2614
|
+
event_value_threshold: ::Float?
|
|
2615
|
+
},
|
|
2616
|
+
]
|
|
2617
|
+
},
|
|
2618
|
+
training_frequency: ::Integer?
|
|
2619
|
+
}
|
|
2620
|
+
) -> _UpdateRecommenderResponseSuccess
|
|
2621
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecommenderResponseSuccess
|
|
2371
2622
|
end
|
|
2372
2623
|
end
|
|
2373
2624
|
end
|