aws-sdk-customerprofiles 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-customerprofiles/client.rb +343 -3
- data/lib/aws-sdk-customerprofiles/client_api.rb +207 -0
- data/lib/aws-sdk-customerprofiles/types.rb +833 -5
- data/lib/aws-sdk-customerprofiles.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b94f04755f2fc503f4a6e1255e377229c09022acd8e1d2feaa87ce1dfa8c804d
|
4
|
+
data.tar.gz: 06411063f77dd0162a1b23e49dae590a68d9a0fe1cddedc067331cfe53faac0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 687c4696485ff85856aafe98a3e8acc1564ee3eb89e1cb25f9ae14df331c50e381f08ae73e0e82de688b3572cde5856257cd654dd014d5f92e23393760bfbf45
|
7
|
+
data.tar.gz: 2fb611bf788982376423569e84fa5842f43e1038ea869000d3d29cdb5001b9a0471f7ce2b6dab2b47a92e48bc7158be274294be7eee93dc7f00ea76364f7648a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.19.0 (2022-02-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces apis CreateIntegrationWorkflow, DeleteWorkflow, ListWorkflows, GetWorkflow and GetWorkflowSteps. These apis are used to manage and view integration workflows.
|
8
|
+
|
4
9
|
1.18.0 (2022-02-03)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
@@ -534,6 +534,136 @@ module Aws::CustomerProfiles
|
|
534
534
|
req.send_request(options)
|
535
535
|
end
|
536
536
|
|
537
|
+
# Creates an integration workflow. An integration workflow is an async
|
538
|
+
# process which ingests historic data and sets up an integration for
|
539
|
+
# ongoing updates. The supported Amazon AppFlow sources are Salesforce,
|
540
|
+
# ServiceNow, and Marketo.
|
541
|
+
#
|
542
|
+
# @option params [required, String] :domain_name
|
543
|
+
# The unique name of the domain.
|
544
|
+
#
|
545
|
+
# @option params [required, String] :workflow_type
|
546
|
+
# The type of workflow. The only supported value is
|
547
|
+
# APPFLOW\_INTEGRATION.
|
548
|
+
#
|
549
|
+
# @option params [required, Types::IntegrationConfig] :integration_config
|
550
|
+
# Configuration data for integration workflow.
|
551
|
+
#
|
552
|
+
# @option params [required, String] :object_type_name
|
553
|
+
# The name of the profile object type.
|
554
|
+
#
|
555
|
+
# @option params [required, String] :role_arn
|
556
|
+
# The Amazon Resource Name (ARN) of the IAM role. Customer Profiles
|
557
|
+
# assumes this role to create resources on your behalf as part of
|
558
|
+
# workflow execution.
|
559
|
+
#
|
560
|
+
# @option params [Hash<String,String>] :tags
|
561
|
+
# The tags used to organize, track, or control access for this resource.
|
562
|
+
#
|
563
|
+
# @return [Types::CreateIntegrationWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
564
|
+
#
|
565
|
+
# * {Types::CreateIntegrationWorkflowResponse#workflow_id #workflow_id} => String
|
566
|
+
# * {Types::CreateIntegrationWorkflowResponse#message #message} => String
|
567
|
+
#
|
568
|
+
# @example Request syntax with placeholder values
|
569
|
+
#
|
570
|
+
# resp = client.create_integration_workflow({
|
571
|
+
# domain_name: "name", # required
|
572
|
+
# workflow_type: "APPFLOW_INTEGRATION", # required, accepts APPFLOW_INTEGRATION
|
573
|
+
# integration_config: { # required
|
574
|
+
# appflow_integration: {
|
575
|
+
# flow_definition: { # required
|
576
|
+
# description: "FlowDescription",
|
577
|
+
# flow_name: "FlowName", # required
|
578
|
+
# kms_arn: "KmsArn", # required
|
579
|
+
# source_flow_config: { # required
|
580
|
+
# connector_profile_name: "ConnectorProfileName",
|
581
|
+
# connector_type: "Salesforce", # required, accepts Salesforce, Marketo, Zendesk, Servicenow, S3
|
582
|
+
# incremental_pull_config: {
|
583
|
+
# datetime_type_field_name: "DatetimeTypeFieldName",
|
584
|
+
# },
|
585
|
+
# source_connector_properties: { # required
|
586
|
+
# marketo: {
|
587
|
+
# object: "Object", # required
|
588
|
+
# },
|
589
|
+
# s3: {
|
590
|
+
# bucket_name: "BucketName", # required
|
591
|
+
# bucket_prefix: "BucketPrefix",
|
592
|
+
# },
|
593
|
+
# salesforce: {
|
594
|
+
# object: "Object", # required
|
595
|
+
# enable_dynamic_field_update: false,
|
596
|
+
# include_deleted_records: false,
|
597
|
+
# },
|
598
|
+
# service_now: {
|
599
|
+
# object: "Object", # required
|
600
|
+
# },
|
601
|
+
# zendesk: {
|
602
|
+
# object: "Object", # required
|
603
|
+
# },
|
604
|
+
# },
|
605
|
+
# },
|
606
|
+
# tasks: [ # required
|
607
|
+
# {
|
608
|
+
# connector_operator: {
|
609
|
+
# marketo: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
610
|
+
# s3: "PROJECTION", # accepts PROJECTION, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
611
|
+
# salesforce: "PROJECTION", # accepts PROJECTION, LESS_THAN, CONTAINS, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
612
|
+
# service_now: "PROJECTION", # accepts PROJECTION, CONTAINS, LESS_THAN, GREATER_THAN, BETWEEN, LESS_THAN_OR_EQUAL_TO, GREATER_THAN_OR_EQUAL_TO, EQUAL_TO, NOT_EQUAL_TO, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
613
|
+
# zendesk: "PROJECTION", # accepts PROJECTION, GREATER_THAN, ADDITION, MULTIPLICATION, DIVISION, SUBTRACTION, MASK_ALL, MASK_FIRST_N, MASK_LAST_N, VALIDATE_NON_NULL, VALIDATE_NON_ZERO, VALIDATE_NON_NEGATIVE, VALIDATE_NUMERIC, NO_OP
|
614
|
+
# },
|
615
|
+
# destination_field: "DestinationField",
|
616
|
+
# source_fields: ["stringTo2048"], # required
|
617
|
+
# task_properties: {
|
618
|
+
# "VALUE" => "Property",
|
619
|
+
# },
|
620
|
+
# task_type: "Arithmetic", # required, accepts Arithmetic, Filter, Map, Mask, Merge, Truncate, Validate
|
621
|
+
# },
|
622
|
+
# ],
|
623
|
+
# trigger_config: { # required
|
624
|
+
# trigger_type: "Scheduled", # required, accepts Scheduled, Event, OnDemand
|
625
|
+
# trigger_properties: {
|
626
|
+
# scheduled: {
|
627
|
+
# schedule_expression: "ScheduleExpression", # required
|
628
|
+
# data_pull_mode: "Incremental", # accepts Incremental, Complete
|
629
|
+
# schedule_start_time: Time.now,
|
630
|
+
# schedule_end_time: Time.now,
|
631
|
+
# timezone: "Timezone",
|
632
|
+
# schedule_offset: 1,
|
633
|
+
# first_execution_from: Time.now,
|
634
|
+
# },
|
635
|
+
# },
|
636
|
+
# },
|
637
|
+
# },
|
638
|
+
# batches: [
|
639
|
+
# {
|
640
|
+
# start_time: Time.now, # required
|
641
|
+
# end_time: Time.now, # required
|
642
|
+
# },
|
643
|
+
# ],
|
644
|
+
# },
|
645
|
+
# },
|
646
|
+
# object_type_name: "typeName", # required
|
647
|
+
# role_arn: "RoleArn", # required
|
648
|
+
# tags: {
|
649
|
+
# "TagKey" => "TagValue",
|
650
|
+
# },
|
651
|
+
# })
|
652
|
+
#
|
653
|
+
# @example Response structure
|
654
|
+
#
|
655
|
+
# resp.workflow_id #=> String
|
656
|
+
# resp.message #=> String
|
657
|
+
#
|
658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/CreateIntegrationWorkflow AWS API Documentation
|
659
|
+
#
|
660
|
+
# @overload create_integration_workflow(params = {})
|
661
|
+
# @param [Hash] params ({})
|
662
|
+
def create_integration_workflow(params = {}, options = {})
|
663
|
+
req = build_request(:create_integration_workflow, params)
|
664
|
+
req.send_request(options)
|
665
|
+
end
|
666
|
+
|
537
667
|
# Creates a standard profile.
|
538
668
|
#
|
539
669
|
# A standard profile represents the following attributes for a customer
|
@@ -909,6 +1039,33 @@ module Aws::CustomerProfiles
|
|
909
1039
|
req.send_request(options)
|
910
1040
|
end
|
911
1041
|
|
1042
|
+
# Deletes the specified workflow and all its corresponding resources.
|
1043
|
+
# This is an async process.
|
1044
|
+
#
|
1045
|
+
# @option params [required, String] :domain_name
|
1046
|
+
# The unique name of the domain.
|
1047
|
+
#
|
1048
|
+
# @option params [required, String] :workflow_id
|
1049
|
+
# Unique identifier for the workflow.
|
1050
|
+
#
|
1051
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1052
|
+
#
|
1053
|
+
# @example Request syntax with placeholder values
|
1054
|
+
#
|
1055
|
+
# resp = client.delete_workflow({
|
1056
|
+
# domain_name: "name", # required
|
1057
|
+
# workflow_id: "string1To255", # required
|
1058
|
+
# })
|
1059
|
+
#
|
1060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/DeleteWorkflow AWS API Documentation
|
1061
|
+
#
|
1062
|
+
# @overload delete_workflow(params = {})
|
1063
|
+
# @param [Hash] params ({})
|
1064
|
+
def delete_workflow(params = {}, options = {})
|
1065
|
+
req = build_request(:delete_workflow, params)
|
1066
|
+
req.send_request(options)
|
1067
|
+
end
|
1068
|
+
|
912
1069
|
# Tests the auto-merging settings of your Identity Resolution Job
|
913
1070
|
# without merging your data. It randomly selects a sample of matching
|
914
1071
|
# groups from the existing matching results, and applies the automerging
|
@@ -1118,6 +1275,7 @@ module Aws::CustomerProfiles
|
|
1118
1275
|
# * {Types::GetIntegrationResponse#last_updated_at #last_updated_at} => Time
|
1119
1276
|
# * {Types::GetIntegrationResponse#tags #tags} => Hash<String,String>
|
1120
1277
|
# * {Types::GetIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
1278
|
+
# * {Types::GetIntegrationResponse#workflow_id #workflow_id} => String
|
1121
1279
|
#
|
1122
1280
|
# @example Request syntax with placeholder values
|
1123
1281
|
#
|
@@ -1137,6 +1295,7 @@ module Aws::CustomerProfiles
|
|
1137
1295
|
# resp.tags["TagKey"] #=> String
|
1138
1296
|
# resp.object_type_names #=> Hash
|
1139
1297
|
# resp.object_type_names["string1To255"] #=> String
|
1298
|
+
# resp.workflow_id #=> String
|
1140
1299
|
#
|
1141
1300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetIntegration AWS API Documentation
|
1142
1301
|
#
|
@@ -1183,8 +1342,6 @@ module Aws::CustomerProfiles
|
|
1183
1342
|
#
|
1184
1343
|
# * FullName
|
1185
1344
|
#
|
1186
|
-
# * BusinessName
|
1187
|
-
#
|
1188
1345
|
# For example, two or more profiles—with spelling mistakes such as
|
1189
1346
|
# **John Doe** and **Jhn Doe**, or different casing email addresses such
|
1190
1347
|
# as **JOHN\_DOE@ANYCOMPANY.COM** and **johndoe@anycompany.com**, or
|
@@ -1361,6 +1518,112 @@ module Aws::CustomerProfiles
|
|
1361
1518
|
req.send_request(options)
|
1362
1519
|
end
|
1363
1520
|
|
1521
|
+
# Get details of specified workflow.
|
1522
|
+
#
|
1523
|
+
# @option params [required, String] :domain_name
|
1524
|
+
# The unique name of the domain.
|
1525
|
+
#
|
1526
|
+
# @option params [required, String] :workflow_id
|
1527
|
+
# Unique identifier for the workflow.
|
1528
|
+
#
|
1529
|
+
# @return [Types::GetWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1530
|
+
#
|
1531
|
+
# * {Types::GetWorkflowResponse#workflow_id #workflow_id} => String
|
1532
|
+
# * {Types::GetWorkflowResponse#workflow_type #workflow_type} => String
|
1533
|
+
# * {Types::GetWorkflowResponse#status #status} => String
|
1534
|
+
# * {Types::GetWorkflowResponse#error_description #error_description} => String
|
1535
|
+
# * {Types::GetWorkflowResponse#start_date #start_date} => Time
|
1536
|
+
# * {Types::GetWorkflowResponse#last_updated_at #last_updated_at} => Time
|
1537
|
+
# * {Types::GetWorkflowResponse#attributes #attributes} => Types::WorkflowAttributes
|
1538
|
+
# * {Types::GetWorkflowResponse#metrics #metrics} => Types::WorkflowMetrics
|
1539
|
+
#
|
1540
|
+
# @example Request syntax with placeholder values
|
1541
|
+
#
|
1542
|
+
# resp = client.get_workflow({
|
1543
|
+
# domain_name: "name", # required
|
1544
|
+
# workflow_id: "uuid", # required
|
1545
|
+
# })
|
1546
|
+
#
|
1547
|
+
# @example Response structure
|
1548
|
+
#
|
1549
|
+
# resp.workflow_id #=> String
|
1550
|
+
# resp.workflow_type #=> String, one of "APPFLOW_INTEGRATION"
|
1551
|
+
# resp.status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED", "SPLIT", "RETRY", "CANCELLED"
|
1552
|
+
# resp.error_description #=> String
|
1553
|
+
# resp.start_date #=> Time
|
1554
|
+
# resp.last_updated_at #=> Time
|
1555
|
+
# resp.attributes.appflow_integration.source_connector_type #=> String, one of "Salesforce", "Marketo", "Zendesk", "Servicenow", "S3"
|
1556
|
+
# resp.attributes.appflow_integration.connector_profile_name #=> String
|
1557
|
+
# resp.attributes.appflow_integration.role_arn #=> String
|
1558
|
+
# resp.metrics.appflow_integration.records_processed #=> Integer
|
1559
|
+
# resp.metrics.appflow_integration.steps_completed #=> Integer
|
1560
|
+
# resp.metrics.appflow_integration.total_steps #=> Integer
|
1561
|
+
#
|
1562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetWorkflow AWS API Documentation
|
1563
|
+
#
|
1564
|
+
# @overload get_workflow(params = {})
|
1565
|
+
# @param [Hash] params ({})
|
1566
|
+
def get_workflow(params = {}, options = {})
|
1567
|
+
req = build_request(:get_workflow, params)
|
1568
|
+
req.send_request(options)
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
# Get granular list of steps in workflow.
|
1572
|
+
#
|
1573
|
+
# @option params [required, String] :domain_name
|
1574
|
+
# The unique name of the domain.
|
1575
|
+
#
|
1576
|
+
# @option params [required, String] :workflow_id
|
1577
|
+
# Unique identifier for the workflow.
|
1578
|
+
#
|
1579
|
+
# @option params [String] :next_token
|
1580
|
+
# The token for the next set of results. Use the value returned in the
|
1581
|
+
# previous response in the next request to retrieve the next set of
|
1582
|
+
# results.
|
1583
|
+
#
|
1584
|
+
# @option params [Integer] :max_results
|
1585
|
+
# The maximum number of results to return per page.
|
1586
|
+
#
|
1587
|
+
# @return [Types::GetWorkflowStepsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1588
|
+
#
|
1589
|
+
# * {Types::GetWorkflowStepsResponse#workflow_id #workflow_id} => String
|
1590
|
+
# * {Types::GetWorkflowStepsResponse#workflow_type #workflow_type} => String
|
1591
|
+
# * {Types::GetWorkflowStepsResponse#items #items} => Array<Types::WorkflowStepItem>
|
1592
|
+
# * {Types::GetWorkflowStepsResponse#next_token #next_token} => String
|
1593
|
+
#
|
1594
|
+
# @example Request syntax with placeholder values
|
1595
|
+
#
|
1596
|
+
# resp = client.get_workflow_steps({
|
1597
|
+
# domain_name: "name", # required
|
1598
|
+
# workflow_id: "uuid", # required
|
1599
|
+
# next_token: "token",
|
1600
|
+
# max_results: 1,
|
1601
|
+
# })
|
1602
|
+
#
|
1603
|
+
# @example Response structure
|
1604
|
+
#
|
1605
|
+
# resp.workflow_id #=> String
|
1606
|
+
# resp.workflow_type #=> String, one of "APPFLOW_INTEGRATION"
|
1607
|
+
# resp.items #=> Array
|
1608
|
+
# resp.items[0].appflow_integration.flow_name #=> String
|
1609
|
+
# resp.items[0].appflow_integration.status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED", "SPLIT", "RETRY", "CANCELLED"
|
1610
|
+
# resp.items[0].appflow_integration.execution_message #=> String
|
1611
|
+
# resp.items[0].appflow_integration.records_processed #=> Integer
|
1612
|
+
# resp.items[0].appflow_integration.batch_records_start_time #=> String
|
1613
|
+
# resp.items[0].appflow_integration.batch_records_end_time #=> String
|
1614
|
+
# resp.items[0].appflow_integration.created_at #=> Time
|
1615
|
+
# resp.items[0].appflow_integration.last_updated_at #=> Time
|
1616
|
+
# resp.next_token #=> String
|
1617
|
+
#
|
1618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/GetWorkflowSteps AWS API Documentation
|
1619
|
+
#
|
1620
|
+
# @overload get_workflow_steps(params = {})
|
1621
|
+
# @param [Hash] params ({})
|
1622
|
+
def get_workflow_steps(params = {}, options = {})
|
1623
|
+
req = build_request(:get_workflow_steps, params)
|
1624
|
+
req.send_request(options)
|
1625
|
+
end
|
1626
|
+
|
1364
1627
|
# Lists all of the integrations associated to a specific URI in the AWS
|
1365
1628
|
# account.
|
1366
1629
|
#
|
@@ -1374,6 +1637,10 @@ module Aws::CustomerProfiles
|
|
1374
1637
|
# @option params [Integer] :max_results
|
1375
1638
|
# The maximum number of objects returned per page.
|
1376
1639
|
#
|
1640
|
+
# @option params [Boolean] :include_hidden
|
1641
|
+
# Boolean to indicate if hidden integration should be returned. Defaults
|
1642
|
+
# to `False`.
|
1643
|
+
#
|
1377
1644
|
# @return [Types::ListAccountIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1378
1645
|
#
|
1379
1646
|
# * {Types::ListAccountIntegrationsResponse#items #items} => Array<Types::ListIntegrationItem>
|
@@ -1385,6 +1652,7 @@ module Aws::CustomerProfiles
|
|
1385
1652
|
# uri: "string1To255", # required
|
1386
1653
|
# next_token: "token",
|
1387
1654
|
# max_results: 1,
|
1655
|
+
# include_hidden: false,
|
1388
1656
|
# })
|
1389
1657
|
#
|
1390
1658
|
# @example Response structure
|
@@ -1399,6 +1667,7 @@ module Aws::CustomerProfiles
|
|
1399
1667
|
# resp.items[0].tags["TagKey"] #=> String
|
1400
1668
|
# resp.items[0].object_type_names #=> Hash
|
1401
1669
|
# resp.items[0].object_type_names["string1To255"] #=> String
|
1670
|
+
# resp.items[0].workflow_id #=> String
|
1402
1671
|
# resp.next_token #=> String
|
1403
1672
|
#
|
1404
1673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListAccountIntegrations AWS API Documentation
|
@@ -1513,6 +1782,10 @@ module Aws::CustomerProfiles
|
|
1513
1782
|
# @option params [Integer] :max_results
|
1514
1783
|
# The maximum number of objects returned per page.
|
1515
1784
|
#
|
1785
|
+
# @option params [Boolean] :include_hidden
|
1786
|
+
# Boolean to indicate if hidden integration should be returned. Defaults
|
1787
|
+
# to `False`.
|
1788
|
+
#
|
1516
1789
|
# @return [Types::ListIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1517
1790
|
#
|
1518
1791
|
# * {Types::ListIntegrationsResponse#items #items} => Array<Types::ListIntegrationItem>
|
@@ -1524,6 +1797,7 @@ module Aws::CustomerProfiles
|
|
1524
1797
|
# domain_name: "name", # required
|
1525
1798
|
# next_token: "token",
|
1526
1799
|
# max_results: 1,
|
1800
|
+
# include_hidden: false,
|
1527
1801
|
# })
|
1528
1802
|
#
|
1529
1803
|
# @example Response structure
|
@@ -1538,6 +1812,7 @@ module Aws::CustomerProfiles
|
|
1538
1812
|
# resp.items[0].tags["TagKey"] #=> String
|
1539
1813
|
# resp.items[0].object_type_names #=> Hash
|
1540
1814
|
# resp.items[0].object_type_names["string1To255"] #=> String
|
1815
|
+
# resp.items[0].workflow_id #=> String
|
1541
1816
|
# resp.next_token #=> String
|
1542
1817
|
#
|
1543
1818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListIntegrations AWS API Documentation
|
@@ -1721,6 +1996,69 @@ module Aws::CustomerProfiles
|
|
1721
1996
|
req.send_request(options)
|
1722
1997
|
end
|
1723
1998
|
|
1999
|
+
# Query to list all workflows.
|
2000
|
+
#
|
2001
|
+
# @option params [required, String] :domain_name
|
2002
|
+
# The unique name of the domain.
|
2003
|
+
#
|
2004
|
+
# @option params [String] :workflow_type
|
2005
|
+
# The type of workflow. The only supported value is
|
2006
|
+
# APPFLOW\_INTEGRATION.
|
2007
|
+
#
|
2008
|
+
# @option params [String] :status
|
2009
|
+
# Status of workflow execution.
|
2010
|
+
#
|
2011
|
+
# @option params [Time,DateTime,Date,Integer,String] :query_start_date
|
2012
|
+
# Retrieve workflows started after timestamp.
|
2013
|
+
#
|
2014
|
+
# @option params [Time,DateTime,Date,Integer,String] :query_end_date
|
2015
|
+
# Retrieve workflows ended after timestamp.
|
2016
|
+
#
|
2017
|
+
# @option params [String] :next_token
|
2018
|
+
# The token for the next set of results. Use the value returned in the
|
2019
|
+
# previous response in the next request to retrieve the next set of
|
2020
|
+
# results.
|
2021
|
+
#
|
2022
|
+
# @option params [Integer] :max_results
|
2023
|
+
# The maximum number of results to return per page.
|
2024
|
+
#
|
2025
|
+
# @return [Types::ListWorkflowsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2026
|
+
#
|
2027
|
+
# * {Types::ListWorkflowsResponse#items #items} => Array<Types::ListWorkflowsItem>
|
2028
|
+
# * {Types::ListWorkflowsResponse#next_token #next_token} => String
|
2029
|
+
#
|
2030
|
+
# @example Request syntax with placeholder values
|
2031
|
+
#
|
2032
|
+
# resp = client.list_workflows({
|
2033
|
+
# domain_name: "name", # required
|
2034
|
+
# workflow_type: "APPFLOW_INTEGRATION", # accepts APPFLOW_INTEGRATION
|
2035
|
+
# status: "NOT_STARTED", # accepts NOT_STARTED, IN_PROGRESS, COMPLETE, FAILED, SPLIT, RETRY, CANCELLED
|
2036
|
+
# query_start_date: Time.now,
|
2037
|
+
# query_end_date: Time.now,
|
2038
|
+
# next_token: "token",
|
2039
|
+
# max_results: 1,
|
2040
|
+
# })
|
2041
|
+
#
|
2042
|
+
# @example Response structure
|
2043
|
+
#
|
2044
|
+
# resp.items #=> Array
|
2045
|
+
# resp.items[0].workflow_type #=> String, one of "APPFLOW_INTEGRATION"
|
2046
|
+
# resp.items[0].workflow_id #=> String
|
2047
|
+
# resp.items[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED", "SPLIT", "RETRY", "CANCELLED"
|
2048
|
+
# resp.items[0].status_description #=> String
|
2049
|
+
# resp.items[0].created_at #=> Time
|
2050
|
+
# resp.items[0].last_updated_at #=> Time
|
2051
|
+
# resp.next_token #=> String
|
2052
|
+
#
|
2053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListWorkflows AWS API Documentation
|
2054
|
+
#
|
2055
|
+
# @overload list_workflows(params = {})
|
2056
|
+
# @param [Hash] params ({})
|
2057
|
+
def list_workflows(params = {}, options = {})
|
2058
|
+
req = build_request(:list_workflows, params)
|
2059
|
+
req.send_request(options)
|
2060
|
+
end
|
2061
|
+
|
1724
2062
|
# Runs an AWS Lambda job that does the following:
|
1725
2063
|
#
|
1726
2064
|
# 1. All the profileKeys in the `ProfileToBeMerged` will be moved to
|
@@ -1860,6 +2198,7 @@ module Aws::CustomerProfiles
|
|
1860
2198
|
# * {Types::PutIntegrationResponse#last_updated_at #last_updated_at} => Time
|
1861
2199
|
# * {Types::PutIntegrationResponse#tags #tags} => Hash<String,String>
|
1862
2200
|
# * {Types::PutIntegrationResponse#object_type_names #object_type_names} => Hash<String,String>
|
2201
|
+
# * {Types::PutIntegrationResponse#workflow_id #workflow_id} => String
|
1863
2202
|
#
|
1864
2203
|
# @example Request syntax with placeholder values
|
1865
2204
|
#
|
@@ -1949,6 +2288,7 @@ module Aws::CustomerProfiles
|
|
1949
2288
|
# resp.tags["TagKey"] #=> String
|
1950
2289
|
# resp.object_type_names #=> Hash
|
1951
2290
|
# resp.object_type_names["string1To255"] #=> String
|
2291
|
+
# resp.workflow_id #=> String
|
1952
2292
|
#
|
1953
2293
|
# @see http://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/PutIntegration AWS API Documentation
|
1954
2294
|
#
|
@@ -2632,7 +2972,7 @@ module Aws::CustomerProfiles
|
|
2632
2972
|
params: params,
|
2633
2973
|
config: config)
|
2634
2974
|
context[:gem_name] = 'aws-sdk-customerprofiles'
|
2635
|
-
context[:gem_version] = '1.
|
2975
|
+
context[:gem_version] = '1.19.0'
|
2636
2976
|
Seahorse::Client::Request.new(handlers, context)
|
2637
2977
|
end
|
2638
2978
|
|