@aws-sdk/client-customer-profiles 3.300.0 → 3.301.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.
- package/dist-types/commands/AddProfileKeyCommand.d.ts +2 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +11 -11
- package/dist-types/commands/CreateIntegrationWorkflowCommand.d.ts +23 -23
- package/dist-types/commands/CreateProfileCommand.d.ts +3 -3
- package/dist-types/commands/DeleteDomainCommand.d.ts +1 -1
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileKeyCommand.d.ts +2 -2
- package/dist-types/commands/DeleteProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetAutoMergingPreviewCommand.d.ts +5 -5
- package/dist-types/commands/GetDomainCommand.d.ts +1 -1
- package/dist-types/commands/GetIdentityResolutionJobCommand.d.ts +1 -1
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/GetMatchesCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
- package/dist-types/commands/ListIdentityResolutionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileObjectTypeTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileObjectTypesCommand.d.ts +1 -1
- package/dist-types/commands/ListProfileObjectsCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/MergeProfilesCommand.d.ts +4 -4
- package/dist-types/commands/PutIntegrationCommand.d.ts +20 -20
- package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +9 -9
- package/dist-types/commands/SearchProfilesCommand.d.ts +4 -4
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDomainCommand.d.ts +11 -11
- package/dist-types/commands/UpdateProfileCommand.d.ts +3 -3
- package/package.json +3 -3
|
@@ -29,10 +29,10 @@ export interface AddProfileKeyCommandOutput extends AddProfileKeyResponse, __Met
|
|
|
29
29
|
* import { CustomerProfilesClient, AddProfileKeyCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
30
30
|
* // const { CustomerProfilesClient, AddProfileKeyCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
31
31
|
* const client = new CustomerProfilesClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // AddProfileKeyRequest
|
|
33
33
|
* ProfileId: "STRING_VALUE", // required
|
|
34
34
|
* KeyName: "STRING_VALUE", // required
|
|
35
|
-
* Values: [ // required
|
|
35
|
+
* Values: [ // requestValueList // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* DomainName: "STRING_VALUE", // required
|
|
@@ -35,40 +35,40 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
35
35
|
* import { CustomerProfilesClient, CreateDomainCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
36
36
|
* // const { CustomerProfilesClient, CreateDomainCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
37
37
|
* const client = new CustomerProfilesClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // CreateDomainRequest
|
|
39
39
|
* DomainName: "STRING_VALUE", // required
|
|
40
40
|
* DefaultExpirationDays: Number("int"), // required
|
|
41
41
|
* DefaultEncryptionKey: "STRING_VALUE",
|
|
42
42
|
* DeadLetterQueueUrl: "STRING_VALUE",
|
|
43
|
-
* Matching: {
|
|
43
|
+
* Matching: { // MatchingRequest
|
|
44
44
|
* Enabled: true || false, // required
|
|
45
|
-
* JobSchedule: {
|
|
45
|
+
* JobSchedule: { // JobSchedule
|
|
46
46
|
* DayOfTheWeek: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY", // required
|
|
47
47
|
* Time: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
49
|
-
* AutoMerging: {
|
|
49
|
+
* AutoMerging: { // AutoMerging
|
|
50
50
|
* Enabled: true || false, // required
|
|
51
|
-
* Consolidation: {
|
|
52
|
-
* MatchingAttributesList: [ // required
|
|
53
|
-
* [
|
|
51
|
+
* Consolidation: { // Consolidation
|
|
52
|
+
* MatchingAttributesList: [ // MatchingAttributesList // required
|
|
53
|
+
* [ // MatchingAttributes
|
|
54
54
|
* "STRING_VALUE",
|
|
55
55
|
* ],
|
|
56
56
|
* ],
|
|
57
57
|
* },
|
|
58
|
-
* ConflictResolution: {
|
|
58
|
+
* ConflictResolution: { // ConflictResolution
|
|
59
59
|
* ConflictResolvingModel: "RECENCY" || "SOURCE", // required
|
|
60
60
|
* SourceName: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
62
|
* MinAllowedConfidenceScoreForMerging: Number("double"),
|
|
63
63
|
* },
|
|
64
|
-
* ExportingConfig: {
|
|
65
|
-
* S3Exporting: {
|
|
64
|
+
* ExportingConfig: { // ExportingConfig
|
|
65
|
+
* S3Exporting: { // S3ExportingConfig
|
|
66
66
|
* S3BucketName: "STRING_VALUE", // required
|
|
67
67
|
* S3KeyName: "STRING_VALUE",
|
|
68
68
|
* },
|
|
69
69
|
* },
|
|
70
70
|
* },
|
|
71
|
-
* Tags: {
|
|
71
|
+
* Tags: { // TagMap
|
|
72
72
|
* "<keys>": "STRING_VALUE",
|
|
73
73
|
* },
|
|
74
74
|
* };
|
|
@@ -28,45 +28,45 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
|
|
|
28
28
|
* import { CustomerProfilesClient, CreateIntegrationWorkflowCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
29
29
|
* // const { CustomerProfilesClient, CreateIntegrationWorkflowCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
30
30
|
* const client = new CustomerProfilesClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateIntegrationWorkflowRequest
|
|
32
32
|
* DomainName: "STRING_VALUE", // required
|
|
33
33
|
* WorkflowType: "APPFLOW_INTEGRATION", // required
|
|
34
|
-
* IntegrationConfig: {
|
|
35
|
-
* AppflowIntegration: {
|
|
36
|
-
* FlowDefinition: {
|
|
34
|
+
* IntegrationConfig: { // IntegrationConfig
|
|
35
|
+
* AppflowIntegration: { // AppflowIntegration
|
|
36
|
+
* FlowDefinition: { // FlowDefinition
|
|
37
37
|
* Description: "STRING_VALUE",
|
|
38
38
|
* FlowName: "STRING_VALUE", // required
|
|
39
39
|
* KmsArn: "STRING_VALUE", // required
|
|
40
|
-
* SourceFlowConfig: {
|
|
40
|
+
* SourceFlowConfig: { // SourceFlowConfig
|
|
41
41
|
* ConnectorProfileName: "STRING_VALUE",
|
|
42
42
|
* ConnectorType: "Salesforce" || "Marketo" || "Zendesk" || "Servicenow" || "S3", // required
|
|
43
|
-
* IncrementalPullConfig: {
|
|
43
|
+
* IncrementalPullConfig: { // IncrementalPullConfig
|
|
44
44
|
* DatetimeTypeFieldName: "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
|
-
* SourceConnectorProperties: {
|
|
47
|
-
* Marketo: {
|
|
46
|
+
* SourceConnectorProperties: { // SourceConnectorProperties
|
|
47
|
+
* Marketo: { // MarketoSourceProperties
|
|
48
48
|
* Object: "STRING_VALUE", // required
|
|
49
49
|
* },
|
|
50
|
-
* S3: {
|
|
50
|
+
* S3: { // S3SourceProperties
|
|
51
51
|
* BucketName: "STRING_VALUE", // required
|
|
52
52
|
* BucketPrefix: "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
|
-
* Salesforce: {
|
|
54
|
+
* Salesforce: { // SalesforceSourceProperties
|
|
55
55
|
* Object: "STRING_VALUE", // required
|
|
56
56
|
* EnableDynamicFieldUpdate: true || false,
|
|
57
57
|
* IncludeDeletedRecords: true || false,
|
|
58
58
|
* },
|
|
59
|
-
* ServiceNow: {
|
|
59
|
+
* ServiceNow: { // ServiceNowSourceProperties
|
|
60
60
|
* Object: "STRING_VALUE", // required
|
|
61
61
|
* },
|
|
62
|
-
* Zendesk: {
|
|
62
|
+
* Zendesk: { // ZendeskSourceProperties
|
|
63
63
|
* Object: "STRING_VALUE", // required
|
|
64
64
|
* },
|
|
65
65
|
* },
|
|
66
66
|
* },
|
|
67
|
-
* Tasks: [ // required
|
|
68
|
-
* {
|
|
69
|
-
* ConnectorOperator: {
|
|
67
|
+
* Tasks: [ // Tasks // required
|
|
68
|
+
* { // Task
|
|
69
|
+
* ConnectorOperator: { // ConnectorOperator
|
|
70
70
|
* Marketo: "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",
|
|
71
71
|
* S3: "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",
|
|
72
72
|
* Salesforce: "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",
|
|
@@ -74,19 +74,19 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
|
|
|
74
74
|
* Zendesk: "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",
|
|
75
75
|
* },
|
|
76
76
|
* DestinationField: "STRING_VALUE",
|
|
77
|
-
* SourceFields: [ // required
|
|
77
|
+
* SourceFields: [ // SourceFields // required
|
|
78
78
|
* "STRING_VALUE",
|
|
79
79
|
* ],
|
|
80
|
-
* TaskProperties: {
|
|
80
|
+
* TaskProperties: { // TaskPropertiesMap
|
|
81
81
|
* "<keys>": "STRING_VALUE",
|
|
82
82
|
* },
|
|
83
83
|
* TaskType: "Arithmetic" || "Filter" || "Map" || "Mask" || "Merge" || "Truncate" || "Validate", // required
|
|
84
84
|
* },
|
|
85
85
|
* ],
|
|
86
|
-
* TriggerConfig: {
|
|
86
|
+
* TriggerConfig: { // TriggerConfig
|
|
87
87
|
* TriggerType: "Scheduled" || "Event" || "OnDemand", // required
|
|
88
|
-
* TriggerProperties: {
|
|
89
|
-
* Scheduled: {
|
|
88
|
+
* TriggerProperties: { // TriggerProperties
|
|
89
|
+
* Scheduled: { // ScheduledTriggerProperties
|
|
90
90
|
* ScheduleExpression: "STRING_VALUE", // required
|
|
91
91
|
* DataPullMode: "Incremental" || "Complete",
|
|
92
92
|
* ScheduleStartTime: new Date("TIMESTAMP"),
|
|
@@ -98,8 +98,8 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
|
|
|
98
98
|
* },
|
|
99
99
|
* },
|
|
100
100
|
* },
|
|
101
|
-
* Batches: [
|
|
102
|
-
* {
|
|
101
|
+
* Batches: [ // Batches
|
|
102
|
+
* { // Batch
|
|
103
103
|
* StartTime: new Date("TIMESTAMP"), // required
|
|
104
104
|
* EndTime: new Date("TIMESTAMP"), // required
|
|
105
105
|
* },
|
|
@@ -108,7 +108,7 @@ export interface CreateIntegrationWorkflowCommandOutput extends CreateIntegratio
|
|
|
108
108
|
* },
|
|
109
109
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
110
110
|
* RoleArn: "STRING_VALUE", // required
|
|
111
|
-
* Tags: {
|
|
111
|
+
* Tags: { // TagMap
|
|
112
112
|
* "<keys>": "STRING_VALUE",
|
|
113
113
|
* },
|
|
114
114
|
* };
|
|
@@ -28,7 +28,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
28
28
|
* import { CustomerProfilesClient, CreateProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
29
29
|
* // const { CustomerProfilesClient, CreateProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
30
30
|
* const client = new CustomerProfilesClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateProfileRequest
|
|
32
32
|
* DomainName: "STRING_VALUE", // required
|
|
33
33
|
* AccountNumber: "STRING_VALUE",
|
|
34
34
|
* AdditionalInformation: "STRING_VALUE",
|
|
@@ -46,7 +46,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
46
46
|
* EmailAddress: "STRING_VALUE",
|
|
47
47
|
* PersonalEmailAddress: "STRING_VALUE",
|
|
48
48
|
* BusinessEmailAddress: "STRING_VALUE",
|
|
49
|
-
* Address: {
|
|
49
|
+
* Address: { // Address
|
|
50
50
|
* Address1: "STRING_VALUE",
|
|
51
51
|
* Address2: "STRING_VALUE",
|
|
52
52
|
* Address3: "STRING_VALUE",
|
|
@@ -94,7 +94,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
94
94
|
* Country: "STRING_VALUE",
|
|
95
95
|
* PostalCode: "STRING_VALUE",
|
|
96
96
|
* },
|
|
97
|
-
* Attributes: {
|
|
97
|
+
* Attributes: { // Attributes
|
|
98
98
|
* "<keys>": "STRING_VALUE",
|
|
99
99
|
* },
|
|
100
100
|
* PartyTypeString: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
|
|
|
27
27
|
* import { CustomerProfilesClient, DeleteDomainCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
28
28
|
* // const { CustomerProfilesClient, DeleteDomainCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
29
29
|
* const client = new CustomerProfilesClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteDomainRequest
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteDomainCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteIntegrationCommandOutput extends DeleteIntegrationRespons
|
|
|
26
26
|
* import { CustomerProfilesClient, DeleteIntegrationCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, DeleteIntegrationCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteIntegrationRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* Uri: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteProfileCommandOutput extends DeleteProfileResponse, __Met
|
|
|
26
26
|
* import { CustomerProfilesClient, DeleteProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, DeleteProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteProfileRequest
|
|
30
30
|
* ProfileId: "STRING_VALUE", // required
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,10 +26,10 @@ export interface DeleteProfileKeyCommandOutput extends DeleteProfileKeyResponse,
|
|
|
26
26
|
* import { CustomerProfilesClient, DeleteProfileKeyCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, DeleteProfileKeyCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteProfileKeyRequest
|
|
30
30
|
* ProfileId: "STRING_VALUE", // required
|
|
31
31
|
* KeyName: "STRING_VALUE", // required
|
|
32
|
-
* Values: [ // required
|
|
32
|
+
* Values: [ // requestValueList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* DomainName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface DeleteProfileObjectCommandOutput extends DeleteProfileObjectRes
|
|
|
26
26
|
* import { CustomerProfilesClient, DeleteProfileObjectCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, DeleteProfileObjectCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteProfileObjectRequest
|
|
30
30
|
* ProfileId: "STRING_VALUE", // required
|
|
31
31
|
* ProfileObjectUniqueKey: "STRING_VALUE", // required
|
|
32
32
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
@@ -29,7 +29,7 @@ export interface DeleteProfileObjectTypeCommandOutput extends DeleteProfileObjec
|
|
|
29
29
|
* import { CustomerProfilesClient, DeleteProfileObjectTypeCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
30
30
|
* // const { CustomerProfilesClient, DeleteProfileObjectTypeCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
31
31
|
* const client = new CustomerProfilesClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DeleteProfileObjectTypeRequest
|
|
33
33
|
* DomainName: "STRING_VALUE", // required
|
|
34
34
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteWorkflowCommandOutput extends DeleteWorkflowResponse, __M
|
|
|
26
26
|
* import { CustomerProfilesClient, DeleteWorkflowCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, DeleteWorkflowCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteWorkflowRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* WorkflowId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -38,16 +38,16 @@ export interface GetAutoMergingPreviewCommandOutput extends GetAutoMergingPrevie
|
|
|
38
38
|
* import { CustomerProfilesClient, GetAutoMergingPreviewCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
39
39
|
* // const { CustomerProfilesClient, GetAutoMergingPreviewCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
40
40
|
* const client = new CustomerProfilesClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // GetAutoMergingPreviewRequest
|
|
42
42
|
* DomainName: "STRING_VALUE", // required
|
|
43
|
-
* Consolidation: {
|
|
44
|
-
* MatchingAttributesList: [ // required
|
|
45
|
-
* [
|
|
43
|
+
* Consolidation: { // Consolidation
|
|
44
|
+
* MatchingAttributesList: [ // MatchingAttributesList // required
|
|
45
|
+
* [ // MatchingAttributes
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* ],
|
|
49
49
|
* },
|
|
50
|
-
* ConflictResolution: {
|
|
50
|
+
* ConflictResolution: { // ConflictResolution
|
|
51
51
|
* ConflictResolvingModel: "RECENCY" || "SOURCE", // required
|
|
52
52
|
* SourceName: "STRING_VALUE",
|
|
53
53
|
* },
|
|
@@ -26,7 +26,7 @@ export interface GetDomainCommandOutput extends GetDomainResponse, __MetadataBea
|
|
|
26
26
|
* import { CustomerProfilesClient, GetDomainCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, GetDomainCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetDomainRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetDomainCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetIdentityResolutionJobCommandOutput extends GetIdentityResolu
|
|
|
28
28
|
* import { CustomerProfilesClient, GetIdentityResolutionJobCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
29
29
|
* // const { CustomerProfilesClient, GetIdentityResolutionJobCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
30
30
|
* const client = new CustomerProfilesClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetIdentityResolutionJobRequest
|
|
32
32
|
* DomainName: "STRING_VALUE", // required
|
|
33
33
|
* JobId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetIntegrationCommandOutput extends GetIntegrationResponse, __M
|
|
|
26
26
|
* import { CustomerProfilesClient, GetIntegrationCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, GetIntegrationCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetIntegrationRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* Uri: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -70,7 +70,7 @@ export interface GetMatchesCommandOutput extends GetMatchesResponse, __MetadataB
|
|
|
70
70
|
* import { CustomerProfilesClient, GetMatchesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
71
71
|
* // const { CustomerProfilesClient, GetMatchesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
72
72
|
* const client = new CustomerProfilesClient(config);
|
|
73
|
-
* const input = {
|
|
73
|
+
* const input = { // GetMatchesRequest
|
|
74
74
|
* NextToken: "STRING_VALUE",
|
|
75
75
|
* MaxResults: Number("int"),
|
|
76
76
|
* DomainName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface GetProfileObjectTypeCommandOutput extends GetProfileObjectTypeR
|
|
|
26
26
|
* import { CustomerProfilesClient, GetProfileObjectTypeCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, GetProfileObjectTypeCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetProfileObjectTypeRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -30,7 +30,7 @@ export interface GetProfileObjectTypeTemplateCommandOutput extends GetProfileObj
|
|
|
30
30
|
* import { CustomerProfilesClient, GetProfileObjectTypeTemplateCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
31
31
|
* // const { CustomerProfilesClient, GetProfileObjectTypeTemplateCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
32
32
|
* const client = new CustomerProfilesClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetProfileObjectTypeTemplateRequest
|
|
34
34
|
* TemplateId: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new GetProfileObjectTypeTemplateCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __Metadat
|
|
|
26
26
|
* import { CustomerProfilesClient, GetWorkflowCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, GetWorkflowCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetWorkflowRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* WorkflowId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetWorkflowStepsCommandOutput extends GetWorkflowStepsResponse,
|
|
|
26
26
|
* import { CustomerProfilesClient, GetWorkflowStepsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, GetWorkflowStepsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetWorkflowStepsRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* WorkflowId: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListAccountIntegrationsCommandOutput extends ListAccountIntegra
|
|
|
26
26
|
* import { CustomerProfilesClient, ListAccountIntegrationsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListAccountIntegrationsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAccountIntegrationsRequest
|
|
30
30
|
* Uri: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListDomainsCommandOutput extends ListDomainsResponse, __Metadat
|
|
|
26
26
|
* import { CustomerProfilesClient, ListDomainsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListDomainsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListDomainsRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListIdentityResolutionJobsCommandOutput extends ListIdentityRes
|
|
|
27
27
|
* import { CustomerProfilesClient, ListIdentityResolutionJobsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
28
28
|
* // const { CustomerProfilesClient, ListIdentityResolutionJobsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
29
29
|
* const client = new CustomerProfilesClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListIdentityResolutionJobsRequest
|
|
31
31
|
* DomainName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListIntegrationsCommandOutput extends ListIntegrationsResponse,
|
|
|
26
26
|
* import { CustomerProfilesClient, ListIntegrationsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListIntegrationsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListIntegrationsRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListProfileObjectTypeTemplatesCommandOutput extends ListProfile
|
|
|
26
26
|
* import { CustomerProfilesClient, ListProfileObjectTypeTemplatesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListProfileObjectTypeTemplatesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListProfileObjectTypeTemplatesRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListProfileObjectTypesCommandOutput extends ListProfileObjectTy
|
|
|
26
26
|
* import { CustomerProfilesClient, ListProfileObjectTypesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListProfileObjectTypesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListProfileObjectTypesRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,15 +26,15 @@ export interface ListProfileObjectsCommandOutput extends ListProfileObjectsRespo
|
|
|
26
26
|
* import { CustomerProfilesClient, ListProfileObjectsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListProfileObjectsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListProfileObjectsRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* DomainName: "STRING_VALUE", // required
|
|
33
33
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
34
34
|
* ProfileId: "STRING_VALUE", // required
|
|
35
|
-
* ObjectFilter: {
|
|
35
|
+
* ObjectFilter: { // ObjectFilter
|
|
36
36
|
* KeyName: "STRING_VALUE", // required
|
|
37
|
-
* Values: [ // required
|
|
37
|
+
* Values: [ // requestValueList // required
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* },
|
|
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { CustomerProfilesClient, ListTagsForResourceCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
28
28
|
* // const { CustomerProfilesClient, ListTagsForResourceCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
29
29
|
* const client = new CustomerProfilesClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
26
26
|
* import { CustomerProfilesClient, ListWorkflowsCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
27
27
|
* // const { CustomerProfilesClient, ListWorkflowsCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
28
28
|
* const client = new CustomerProfilesClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListWorkflowsRequest
|
|
30
30
|
* DomainName: "STRING_VALUE", // required
|
|
31
31
|
* WorkflowType: "APPFLOW_INTEGRATION",
|
|
32
32
|
* Status: "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "FAILED" || "SPLIT" || "RETRY" || "CANCELLED",
|
|
@@ -68,13 +68,13 @@ export interface MergeProfilesCommandOutput extends MergeProfilesResponse, __Met
|
|
|
68
68
|
* import { CustomerProfilesClient, MergeProfilesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
69
69
|
* // const { CustomerProfilesClient, MergeProfilesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
70
70
|
* const client = new CustomerProfilesClient(config);
|
|
71
|
-
* const input = {
|
|
71
|
+
* const input = { // MergeProfilesRequest
|
|
72
72
|
* DomainName: "STRING_VALUE", // required
|
|
73
73
|
* MainProfileId: "STRING_VALUE", // required
|
|
74
|
-
* ProfileIdsToBeMerged: [ // required
|
|
74
|
+
* ProfileIdsToBeMerged: [ // ProfileIdToBeMergedList // required
|
|
75
75
|
* "STRING_VALUE",
|
|
76
76
|
* ],
|
|
77
|
-
* FieldSourceProfileIds: {
|
|
77
|
+
* FieldSourceProfileIds: { // FieldSourceProfileIds
|
|
78
78
|
* AccountNumber: "STRING_VALUE",
|
|
79
79
|
* AdditionalInformation: "STRING_VALUE",
|
|
80
80
|
* PartyType: "STRING_VALUE",
|
|
@@ -95,7 +95,7 @@ export interface MergeProfilesCommandOutput extends MergeProfilesResponse, __Met
|
|
|
95
95
|
* ShippingAddress: "STRING_VALUE",
|
|
96
96
|
* MailingAddress: "STRING_VALUE",
|
|
97
97
|
* BillingAddress: "STRING_VALUE",
|
|
98
|
-
* Attributes: {
|
|
98
|
+
* Attributes: { // AttributeSourceIdMap
|
|
99
99
|
* "<keys>": "STRING_VALUE",
|
|
100
100
|
* },
|
|
101
101
|
* },
|
|
@@ -31,47 +31,47 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M
|
|
|
31
31
|
* import { CustomerProfilesClient, PutIntegrationCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
32
32
|
* // const { CustomerProfilesClient, PutIntegrationCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
33
33
|
* const client = new CustomerProfilesClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // PutIntegrationRequest
|
|
35
35
|
* DomainName: "STRING_VALUE", // required
|
|
36
36
|
* Uri: "STRING_VALUE",
|
|
37
37
|
* ObjectTypeName: "STRING_VALUE",
|
|
38
|
-
* Tags: {
|
|
38
|
+
* Tags: { // TagMap
|
|
39
39
|
* "<keys>": "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
|
-
* FlowDefinition: {
|
|
41
|
+
* FlowDefinition: { // FlowDefinition
|
|
42
42
|
* Description: "STRING_VALUE",
|
|
43
43
|
* FlowName: "STRING_VALUE", // required
|
|
44
44
|
* KmsArn: "STRING_VALUE", // required
|
|
45
|
-
* SourceFlowConfig: {
|
|
45
|
+
* SourceFlowConfig: { // SourceFlowConfig
|
|
46
46
|
* ConnectorProfileName: "STRING_VALUE",
|
|
47
47
|
* ConnectorType: "Salesforce" || "Marketo" || "Zendesk" || "Servicenow" || "S3", // required
|
|
48
|
-
* IncrementalPullConfig: {
|
|
48
|
+
* IncrementalPullConfig: { // IncrementalPullConfig
|
|
49
49
|
* DatetimeTypeFieldName: "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
|
-
* SourceConnectorProperties: {
|
|
52
|
-
* Marketo: {
|
|
51
|
+
* SourceConnectorProperties: { // SourceConnectorProperties
|
|
52
|
+
* Marketo: { // MarketoSourceProperties
|
|
53
53
|
* Object: "STRING_VALUE", // required
|
|
54
54
|
* },
|
|
55
|
-
* S3: {
|
|
55
|
+
* S3: { // S3SourceProperties
|
|
56
56
|
* BucketName: "STRING_VALUE", // required
|
|
57
57
|
* BucketPrefix: "STRING_VALUE",
|
|
58
58
|
* },
|
|
59
|
-
* Salesforce: {
|
|
59
|
+
* Salesforce: { // SalesforceSourceProperties
|
|
60
60
|
* Object: "STRING_VALUE", // required
|
|
61
61
|
* EnableDynamicFieldUpdate: true || false,
|
|
62
62
|
* IncludeDeletedRecords: true || false,
|
|
63
63
|
* },
|
|
64
|
-
* ServiceNow: {
|
|
64
|
+
* ServiceNow: { // ServiceNowSourceProperties
|
|
65
65
|
* Object: "STRING_VALUE", // required
|
|
66
66
|
* },
|
|
67
|
-
* Zendesk: {
|
|
67
|
+
* Zendesk: { // ZendeskSourceProperties
|
|
68
68
|
* Object: "STRING_VALUE", // required
|
|
69
69
|
* },
|
|
70
70
|
* },
|
|
71
71
|
* },
|
|
72
|
-
* Tasks: [ // required
|
|
73
|
-
* {
|
|
74
|
-
* ConnectorOperator: {
|
|
72
|
+
* Tasks: [ // Tasks // required
|
|
73
|
+
* { // Task
|
|
74
|
+
* ConnectorOperator: { // ConnectorOperator
|
|
75
75
|
* Marketo: "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",
|
|
76
76
|
* S3: "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",
|
|
77
77
|
* Salesforce: "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",
|
|
@@ -79,19 +79,19 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M
|
|
|
79
79
|
* Zendesk: "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",
|
|
80
80
|
* },
|
|
81
81
|
* DestinationField: "STRING_VALUE",
|
|
82
|
-
* SourceFields: [ // required
|
|
82
|
+
* SourceFields: [ // SourceFields // required
|
|
83
83
|
* "STRING_VALUE",
|
|
84
84
|
* ],
|
|
85
|
-
* TaskProperties: {
|
|
85
|
+
* TaskProperties: { // TaskPropertiesMap
|
|
86
86
|
* "<keys>": "STRING_VALUE",
|
|
87
87
|
* },
|
|
88
88
|
* TaskType: "Arithmetic" || "Filter" || "Map" || "Mask" || "Merge" || "Truncate" || "Validate", // required
|
|
89
89
|
* },
|
|
90
90
|
* ],
|
|
91
|
-
* TriggerConfig: {
|
|
91
|
+
* TriggerConfig: { // TriggerConfig
|
|
92
92
|
* TriggerType: "Scheduled" || "Event" || "OnDemand", // required
|
|
93
|
-
* TriggerProperties: {
|
|
94
|
-
* Scheduled: {
|
|
93
|
+
* TriggerProperties: { // TriggerProperties
|
|
94
|
+
* Scheduled: { // ScheduledTriggerProperties
|
|
95
95
|
* ScheduleExpression: "STRING_VALUE", // required
|
|
96
96
|
* DataPullMode: "Incremental" || "Complete",
|
|
97
97
|
* ScheduleStartTime: new Date("TIMESTAMP"),
|
|
@@ -103,7 +103,7 @@ export interface PutIntegrationCommandOutput extends PutIntegrationResponse, __M
|
|
|
103
103
|
* },
|
|
104
104
|
* },
|
|
105
105
|
* },
|
|
106
|
-
* ObjectTypeNames: {
|
|
106
|
+
* ObjectTypeNames: { // ObjectTypeNames
|
|
107
107
|
* "<keys>": "STRING_VALUE",
|
|
108
108
|
* },
|
|
109
109
|
* };
|
|
@@ -35,7 +35,7 @@ export interface PutProfileObjectCommandOutput extends PutProfileObjectResponse,
|
|
|
35
35
|
* import { CustomerProfilesClient, PutProfileObjectCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
36
36
|
* // const { CustomerProfilesClient, PutProfileObjectCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
37
37
|
* const client = new CustomerProfilesClient(config);
|
|
38
|
-
* const input = {
|
|
38
|
+
* const input = { // PutProfileObjectRequest
|
|
39
39
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
40
40
|
* Object: "STRING_VALUE", // required
|
|
41
41
|
* DomainName: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeR
|
|
|
28
28
|
* import { CustomerProfilesClient, PutProfileObjectTypeCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
29
29
|
* // const { CustomerProfilesClient, PutProfileObjectTypeCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
30
30
|
* const client = new CustomerProfilesClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // PutProfileObjectTypeRequest
|
|
32
32
|
* DomainName: "STRING_VALUE", // required
|
|
33
33
|
* ObjectTypeName: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE", // required
|
|
@@ -37,26 +37,26 @@ export interface PutProfileObjectTypeCommandOutput extends PutProfileObjectTypeR
|
|
|
37
37
|
* EncryptionKey: "STRING_VALUE",
|
|
38
38
|
* AllowProfileCreation: true || false,
|
|
39
39
|
* SourceLastUpdatedTimestampFormat: "STRING_VALUE",
|
|
40
|
-
* Fields: {
|
|
41
|
-
* "<keys>": {
|
|
40
|
+
* Fields: { // FieldMap
|
|
41
|
+
* "<keys>": { // ObjectTypeField
|
|
42
42
|
* Source: "STRING_VALUE",
|
|
43
43
|
* Target: "STRING_VALUE",
|
|
44
44
|
* ContentType: "STRING" || "NUMBER" || "PHONE_NUMBER" || "EMAIL_ADDRESS" || "NAME",
|
|
45
45
|
* },
|
|
46
46
|
* },
|
|
47
|
-
* Keys: {
|
|
48
|
-
* "<keys>": [
|
|
49
|
-
* {
|
|
50
|
-
* StandardIdentifiers: [
|
|
47
|
+
* Keys: { // KeyMap
|
|
48
|
+
* "<keys>": [ // ObjectTypeKeyList
|
|
49
|
+
* { // ObjectTypeKey
|
|
50
|
+
* StandardIdentifiers: [ // StandardIdentifierList
|
|
51
51
|
* "PROFILE" || "ASSET" || "CASE" || "UNIQUE" || "SECONDARY" || "LOOKUP_ONLY" || "NEW_ONLY" || "ORDER",
|
|
52
52
|
* ],
|
|
53
|
-
* FieldNames: [
|
|
53
|
+
* FieldNames: [ // FieldNameList
|
|
54
54
|
* "STRING_VALUE",
|
|
55
55
|
* ],
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
|
-
* Tags: {
|
|
59
|
+
* Tags: { // TagMap
|
|
60
60
|
* "<keys>": "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
62
|
* };
|
|
@@ -30,16 +30,16 @@ export interface SearchProfilesCommandOutput extends SearchProfilesResponse, __M
|
|
|
30
30
|
* import { CustomerProfilesClient, SearchProfilesCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
31
31
|
* // const { CustomerProfilesClient, SearchProfilesCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
32
32
|
* const client = new CustomerProfilesClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // SearchProfilesRequest
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
36
|
* DomainName: "STRING_VALUE", // required
|
|
37
37
|
* KeyName: "STRING_VALUE", // required
|
|
38
|
-
* Values: [ // required
|
|
38
|
+
* Values: [ // requestValueList // required
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* AdditionalSearchKeys: [
|
|
42
|
-
* {
|
|
41
|
+
* AdditionalSearchKeys: [ // additionalSearchKeysList
|
|
42
|
+
* { // AdditionalSearchKey
|
|
43
43
|
* KeyName: "STRING_VALUE", // required
|
|
44
44
|
* Values: [ // required
|
|
45
45
|
* "STRING_VALUE",
|
|
@@ -37,9 +37,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
37
37
|
* import { CustomerProfilesClient, TagResourceCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
38
38
|
* // const { CustomerProfilesClient, TagResourceCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
39
39
|
* const client = new CustomerProfilesClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // TagResourceRequest
|
|
41
41
|
* resourceArn: "STRING_VALUE", // required
|
|
42
|
-
* tags: { // required
|
|
42
|
+
* tags: { // TagMap // required
|
|
43
43
|
* "<keys>": "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { CustomerProfilesClient, UntagResourceCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
28
28
|
* // const { CustomerProfilesClient, UntagResourceCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
29
29
|
* const client = new CustomerProfilesClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* resourceArn: "STRING_VALUE", // required
|
|
32
|
-
* tagKeys: [ // required
|
|
32
|
+
* tagKeys: [ // TagKeyList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -34,40 +34,40 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
|
|
|
34
34
|
* import { CustomerProfilesClient, UpdateDomainCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
35
|
* // const { CustomerProfilesClient, UpdateDomainCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
36
|
* const client = new CustomerProfilesClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // UpdateDomainRequest
|
|
38
38
|
* DomainName: "STRING_VALUE", // required
|
|
39
39
|
* DefaultExpirationDays: Number("int"),
|
|
40
40
|
* DefaultEncryptionKey: "STRING_VALUE",
|
|
41
41
|
* DeadLetterQueueUrl: "STRING_VALUE",
|
|
42
|
-
* Matching: {
|
|
42
|
+
* Matching: { // MatchingRequest
|
|
43
43
|
* Enabled: true || false, // required
|
|
44
|
-
* JobSchedule: {
|
|
44
|
+
* JobSchedule: { // JobSchedule
|
|
45
45
|
* DayOfTheWeek: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY", // required
|
|
46
46
|
* Time: "STRING_VALUE", // required
|
|
47
47
|
* },
|
|
48
|
-
* AutoMerging: {
|
|
48
|
+
* AutoMerging: { // AutoMerging
|
|
49
49
|
* Enabled: true || false, // required
|
|
50
|
-
* Consolidation: {
|
|
51
|
-
* MatchingAttributesList: [ // required
|
|
52
|
-
* [
|
|
50
|
+
* Consolidation: { // Consolidation
|
|
51
|
+
* MatchingAttributesList: [ // MatchingAttributesList // required
|
|
52
|
+
* [ // MatchingAttributes
|
|
53
53
|
* "STRING_VALUE",
|
|
54
54
|
* ],
|
|
55
55
|
* ],
|
|
56
56
|
* },
|
|
57
|
-
* ConflictResolution: {
|
|
57
|
+
* ConflictResolution: { // ConflictResolution
|
|
58
58
|
* ConflictResolvingModel: "RECENCY" || "SOURCE", // required
|
|
59
59
|
* SourceName: "STRING_VALUE",
|
|
60
60
|
* },
|
|
61
61
|
* MinAllowedConfidenceScoreForMerging: Number("double"),
|
|
62
62
|
* },
|
|
63
|
-
* ExportingConfig: {
|
|
64
|
-
* S3Exporting: {
|
|
63
|
+
* ExportingConfig: { // ExportingConfig
|
|
64
|
+
* S3Exporting: { // S3ExportingConfig
|
|
65
65
|
* S3BucketName: "STRING_VALUE", // required
|
|
66
66
|
* S3KeyName: "STRING_VALUE",
|
|
67
67
|
* },
|
|
68
68
|
* },
|
|
69
69
|
* },
|
|
70
|
-
* Tags: {
|
|
70
|
+
* Tags: { // TagMap
|
|
71
71
|
* "<keys>": "STRING_VALUE",
|
|
72
72
|
* },
|
|
73
73
|
* };
|
|
@@ -30,7 +30,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
|
|
|
30
30
|
* import { CustomerProfilesClient, UpdateProfileCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
31
31
|
* // const { CustomerProfilesClient, UpdateProfileCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
32
32
|
* const client = new CustomerProfilesClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // UpdateProfileRequest
|
|
34
34
|
* DomainName: "STRING_VALUE", // required
|
|
35
35
|
* ProfileId: "STRING_VALUE", // required
|
|
36
36
|
* AdditionalInformation: "STRING_VALUE",
|
|
@@ -49,7 +49,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
|
|
|
49
49
|
* EmailAddress: "STRING_VALUE",
|
|
50
50
|
* PersonalEmailAddress: "STRING_VALUE",
|
|
51
51
|
* BusinessEmailAddress: "STRING_VALUE",
|
|
52
|
-
* Address: {
|
|
52
|
+
* Address: { // UpdateAddress
|
|
53
53
|
* Address1: "STRING_VALUE",
|
|
54
54
|
* Address2: "STRING_VALUE",
|
|
55
55
|
* Address3: "STRING_VALUE",
|
|
@@ -97,7 +97,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
|
|
|
97
97
|
* Country: "STRING_VALUE",
|
|
98
98
|
* PostalCode: "STRING_VALUE",
|
|
99
99
|
* },
|
|
100
|
-
* Attributes: {
|
|
100
|
+
* Attributes: { // UpdateAttributes
|
|
101
101
|
* "<keys>": "STRING_VALUE",
|
|
102
102
|
* },
|
|
103
103
|
* PartyTypeString: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-customer-profiles",
|
|
3
3
|
"description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|