@aws-sdk/client-customer-profiles 3.299.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.
Files changed (39) hide show
  1. package/dist-types/commands/AddProfileKeyCommand.d.ts +8 -0
  2. package/dist-types/commands/CreateDomainCommand.d.ts +37 -0
  3. package/dist-types/commands/CreateIntegrationWorkflowCommand.d.ts +84 -0
  4. package/dist-types/commands/CreateProfileCommand.d.ts +72 -0
  5. package/dist-types/commands/DeleteDomainCommand.d.ts +3 -0
  6. package/dist-types/commands/DeleteIntegrationCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteProfileCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteProfileKeyCommand.d.ts +8 -0
  9. package/dist-types/commands/DeleteProfileObjectCommand.d.ts +6 -0
  10. package/dist-types/commands/DeleteProfileObjectTypeCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteWorkflowCommand.d.ts +4 -0
  12. package/dist-types/commands/GetAutoMergingPreviewCommand.d.ts +15 -0
  13. package/dist-types/commands/GetDomainCommand.d.ts +3 -0
  14. package/dist-types/commands/GetIdentityResolutionJobCommand.d.ts +4 -0
  15. package/dist-types/commands/GetIntegrationCommand.d.ts +4 -0
  16. package/dist-types/commands/GetMatchesCommand.d.ts +5 -0
  17. package/dist-types/commands/GetProfileObjectTypeCommand.d.ts +4 -0
  18. package/dist-types/commands/GetProfileObjectTypeTemplateCommand.d.ts +3 -0
  19. package/dist-types/commands/GetWorkflowCommand.d.ts +4 -0
  20. package/dist-types/commands/GetWorkflowStepsCommand.d.ts +6 -0
  21. package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +6 -0
  22. package/dist-types/commands/ListDomainsCommand.d.ts +4 -0
  23. package/dist-types/commands/ListIdentityResolutionJobsCommand.d.ts +5 -0
  24. package/dist-types/commands/ListIntegrationsCommand.d.ts +6 -0
  25. package/dist-types/commands/ListProfileObjectTypeTemplatesCommand.d.ts +4 -0
  26. package/dist-types/commands/ListProfileObjectTypesCommand.d.ts +5 -0
  27. package/dist-types/commands/ListProfileObjectsCommand.d.ts +13 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  29. package/dist-types/commands/ListWorkflowsCommand.d.ts +9 -0
  30. package/dist-types/commands/MergeProfilesCommand.d.ts +32 -0
  31. package/dist-types/commands/PutIntegrationCommand.d.ts +76 -0
  32. package/dist-types/commands/PutProfileObjectCommand.d.ts +5 -0
  33. package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +32 -0
  34. package/dist-types/commands/SearchProfilesCommand.d.ts +18 -0
  35. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  36. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  37. package/dist-types/commands/UpdateDomainCommand.d.ts +37 -0
  38. package/dist-types/commands/UpdateProfileCommand.d.ts +73 -0
  39. package/package.json +8 -8
@@ -29,6 +29,14 @@ 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 = { // AddProfileKeyRequest
33
+ * ProfileId: "STRING_VALUE", // required
34
+ * KeyName: "STRING_VALUE", // required
35
+ * Values: [ // requestValueList // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * DomainName: "STRING_VALUE", // required
39
+ * };
32
40
  * const command = new AddProfileKeyCommand(input);
33
41
  * const response = await client.send(command);
34
42
  * ```
@@ -35,6 +35,43 @@ 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 = { // CreateDomainRequest
39
+ * DomainName: "STRING_VALUE", // required
40
+ * DefaultExpirationDays: Number("int"), // required
41
+ * DefaultEncryptionKey: "STRING_VALUE",
42
+ * DeadLetterQueueUrl: "STRING_VALUE",
43
+ * Matching: { // MatchingRequest
44
+ * Enabled: true || false, // required
45
+ * JobSchedule: { // JobSchedule
46
+ * DayOfTheWeek: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY", // required
47
+ * Time: "STRING_VALUE", // required
48
+ * },
49
+ * AutoMerging: { // AutoMerging
50
+ * Enabled: true || false, // required
51
+ * Consolidation: { // Consolidation
52
+ * MatchingAttributesList: [ // MatchingAttributesList // required
53
+ * [ // MatchingAttributes
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * ],
57
+ * },
58
+ * ConflictResolution: { // ConflictResolution
59
+ * ConflictResolvingModel: "RECENCY" || "SOURCE", // required
60
+ * SourceName: "STRING_VALUE",
61
+ * },
62
+ * MinAllowedConfidenceScoreForMerging: Number("double"),
63
+ * },
64
+ * ExportingConfig: { // ExportingConfig
65
+ * S3Exporting: { // S3ExportingConfig
66
+ * S3BucketName: "STRING_VALUE", // required
67
+ * S3KeyName: "STRING_VALUE",
68
+ * },
69
+ * },
70
+ * },
71
+ * Tags: { // TagMap
72
+ * "<keys>": "STRING_VALUE",
73
+ * },
74
+ * };
38
75
  * const command = new CreateDomainCommand(input);
39
76
  * const response = await client.send(command);
40
77
  * ```
@@ -28,6 +28,90 @@ 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 = { // CreateIntegrationWorkflowRequest
32
+ * DomainName: "STRING_VALUE", // required
33
+ * WorkflowType: "APPFLOW_INTEGRATION", // required
34
+ * IntegrationConfig: { // IntegrationConfig
35
+ * AppflowIntegration: { // AppflowIntegration
36
+ * FlowDefinition: { // FlowDefinition
37
+ * Description: "STRING_VALUE",
38
+ * FlowName: "STRING_VALUE", // required
39
+ * KmsArn: "STRING_VALUE", // required
40
+ * SourceFlowConfig: { // SourceFlowConfig
41
+ * ConnectorProfileName: "STRING_VALUE",
42
+ * ConnectorType: "Salesforce" || "Marketo" || "Zendesk" || "Servicenow" || "S3", // required
43
+ * IncrementalPullConfig: { // IncrementalPullConfig
44
+ * DatetimeTypeFieldName: "STRING_VALUE",
45
+ * },
46
+ * SourceConnectorProperties: { // SourceConnectorProperties
47
+ * Marketo: { // MarketoSourceProperties
48
+ * Object: "STRING_VALUE", // required
49
+ * },
50
+ * S3: { // S3SourceProperties
51
+ * BucketName: "STRING_VALUE", // required
52
+ * BucketPrefix: "STRING_VALUE",
53
+ * },
54
+ * Salesforce: { // SalesforceSourceProperties
55
+ * Object: "STRING_VALUE", // required
56
+ * EnableDynamicFieldUpdate: true || false,
57
+ * IncludeDeletedRecords: true || false,
58
+ * },
59
+ * ServiceNow: { // ServiceNowSourceProperties
60
+ * Object: "STRING_VALUE", // required
61
+ * },
62
+ * Zendesk: { // ZendeskSourceProperties
63
+ * Object: "STRING_VALUE", // required
64
+ * },
65
+ * },
66
+ * },
67
+ * Tasks: [ // Tasks // required
68
+ * { // Task
69
+ * ConnectorOperator: { // ConnectorOperator
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
+ * 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
+ * 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",
73
+ * ServiceNow: "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",
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
+ * },
76
+ * DestinationField: "STRING_VALUE",
77
+ * SourceFields: [ // SourceFields // required
78
+ * "STRING_VALUE",
79
+ * ],
80
+ * TaskProperties: { // TaskPropertiesMap
81
+ * "<keys>": "STRING_VALUE",
82
+ * },
83
+ * TaskType: "Arithmetic" || "Filter" || "Map" || "Mask" || "Merge" || "Truncate" || "Validate", // required
84
+ * },
85
+ * ],
86
+ * TriggerConfig: { // TriggerConfig
87
+ * TriggerType: "Scheduled" || "Event" || "OnDemand", // required
88
+ * TriggerProperties: { // TriggerProperties
89
+ * Scheduled: { // ScheduledTriggerProperties
90
+ * ScheduleExpression: "STRING_VALUE", // required
91
+ * DataPullMode: "Incremental" || "Complete",
92
+ * ScheduleStartTime: new Date("TIMESTAMP"),
93
+ * ScheduleEndTime: new Date("TIMESTAMP"),
94
+ * Timezone: "STRING_VALUE",
95
+ * ScheduleOffset: Number("long"),
96
+ * FirstExecutionFrom: new Date("TIMESTAMP"),
97
+ * },
98
+ * },
99
+ * },
100
+ * },
101
+ * Batches: [ // Batches
102
+ * { // Batch
103
+ * StartTime: new Date("TIMESTAMP"), // required
104
+ * EndTime: new Date("TIMESTAMP"), // required
105
+ * },
106
+ * ],
107
+ * },
108
+ * },
109
+ * ObjectTypeName: "STRING_VALUE", // required
110
+ * RoleArn: "STRING_VALUE", // required
111
+ * Tags: { // TagMap
112
+ * "<keys>": "STRING_VALUE",
113
+ * },
114
+ * };
31
115
  * const command = new CreateIntegrationWorkflowCommand(input);
32
116
  * const response = await client.send(command);
33
117
  * ```
@@ -28,6 +28,78 @@ 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 = { // CreateProfileRequest
32
+ * DomainName: "STRING_VALUE", // required
33
+ * AccountNumber: "STRING_VALUE",
34
+ * AdditionalInformation: "STRING_VALUE",
35
+ * PartyType: "INDIVIDUAL" || "BUSINESS" || "OTHER",
36
+ * BusinessName: "STRING_VALUE",
37
+ * FirstName: "STRING_VALUE",
38
+ * MiddleName: "STRING_VALUE",
39
+ * LastName: "STRING_VALUE",
40
+ * BirthDate: "STRING_VALUE",
41
+ * Gender: "MALE" || "FEMALE" || "UNSPECIFIED",
42
+ * PhoneNumber: "STRING_VALUE",
43
+ * MobilePhoneNumber: "STRING_VALUE",
44
+ * HomePhoneNumber: "STRING_VALUE",
45
+ * BusinessPhoneNumber: "STRING_VALUE",
46
+ * EmailAddress: "STRING_VALUE",
47
+ * PersonalEmailAddress: "STRING_VALUE",
48
+ * BusinessEmailAddress: "STRING_VALUE",
49
+ * Address: { // Address
50
+ * Address1: "STRING_VALUE",
51
+ * Address2: "STRING_VALUE",
52
+ * Address3: "STRING_VALUE",
53
+ * Address4: "STRING_VALUE",
54
+ * City: "STRING_VALUE",
55
+ * County: "STRING_VALUE",
56
+ * State: "STRING_VALUE",
57
+ * Province: "STRING_VALUE",
58
+ * Country: "STRING_VALUE",
59
+ * PostalCode: "STRING_VALUE",
60
+ * },
61
+ * ShippingAddress: {
62
+ * Address1: "STRING_VALUE",
63
+ * Address2: "STRING_VALUE",
64
+ * Address3: "STRING_VALUE",
65
+ * Address4: "STRING_VALUE",
66
+ * City: "STRING_VALUE",
67
+ * County: "STRING_VALUE",
68
+ * State: "STRING_VALUE",
69
+ * Province: "STRING_VALUE",
70
+ * Country: "STRING_VALUE",
71
+ * PostalCode: "STRING_VALUE",
72
+ * },
73
+ * MailingAddress: {
74
+ * Address1: "STRING_VALUE",
75
+ * Address2: "STRING_VALUE",
76
+ * Address3: "STRING_VALUE",
77
+ * Address4: "STRING_VALUE",
78
+ * City: "STRING_VALUE",
79
+ * County: "STRING_VALUE",
80
+ * State: "STRING_VALUE",
81
+ * Province: "STRING_VALUE",
82
+ * Country: "STRING_VALUE",
83
+ * PostalCode: "STRING_VALUE",
84
+ * },
85
+ * BillingAddress: {
86
+ * Address1: "STRING_VALUE",
87
+ * Address2: "STRING_VALUE",
88
+ * Address3: "STRING_VALUE",
89
+ * Address4: "STRING_VALUE",
90
+ * City: "STRING_VALUE",
91
+ * County: "STRING_VALUE",
92
+ * State: "STRING_VALUE",
93
+ * Province: "STRING_VALUE",
94
+ * Country: "STRING_VALUE",
95
+ * PostalCode: "STRING_VALUE",
96
+ * },
97
+ * Attributes: { // Attributes
98
+ * "<keys>": "STRING_VALUE",
99
+ * },
100
+ * PartyTypeString: "STRING_VALUE",
101
+ * GenderString: "STRING_VALUE",
102
+ * };
31
103
  * const command = new CreateProfileCommand(input);
32
104
  * const response = await client.send(command);
33
105
  * ```
@@ -27,6 +27,9 @@ 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 = { // DeleteDomainRequest
31
+ * DomainName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteDomainCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,10 @@ 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 = { // DeleteIntegrationRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * Uri: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteIntegrationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ 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 = { // DeleteProfileRequest
30
+ * ProfileId: "STRING_VALUE", // required
31
+ * DomainName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteProfileCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,14 @@ 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 = { // DeleteProfileKeyRequest
30
+ * ProfileId: "STRING_VALUE", // required
31
+ * KeyName: "STRING_VALUE", // required
32
+ * Values: [ // requestValueList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * DomainName: "STRING_VALUE", // required
36
+ * };
29
37
  * const command = new DeleteProfileKeyCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,12 @@ 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 = { // DeleteProfileObjectRequest
30
+ * ProfileId: "STRING_VALUE", // required
31
+ * ProfileObjectUniqueKey: "STRING_VALUE", // required
32
+ * ObjectTypeName: "STRING_VALUE", // required
33
+ * DomainName: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new DeleteProfileObjectCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -29,6 +29,10 @@ 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 = { // DeleteProfileObjectTypeRequest
33
+ * DomainName: "STRING_VALUE", // required
34
+ * ObjectTypeName: "STRING_VALUE", // required
35
+ * };
32
36
  * const command = new DeleteProfileObjectTypeCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -26,6 +26,10 @@ 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 = { // DeleteWorkflowRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * WorkflowId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteWorkflowCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -38,6 +38,21 @@ 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 = { // GetAutoMergingPreviewRequest
42
+ * DomainName: "STRING_VALUE", // required
43
+ * Consolidation: { // Consolidation
44
+ * MatchingAttributesList: [ // MatchingAttributesList // required
45
+ * [ // MatchingAttributes
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * ],
49
+ * },
50
+ * ConflictResolution: { // ConflictResolution
51
+ * ConflictResolvingModel: "RECENCY" || "SOURCE", // required
52
+ * SourceName: "STRING_VALUE",
53
+ * },
54
+ * MinAllowedConfidenceScoreForMerging: Number("double"),
55
+ * };
41
56
  * const command = new GetAutoMergingPreviewCommand(input);
42
57
  * const response = await client.send(command);
43
58
  * ```
@@ -26,6 +26,9 @@ 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 = { // GetDomainRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetDomainCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,10 @@ 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 = { // GetIdentityResolutionJobRequest
32
+ * DomainName: "STRING_VALUE", // required
33
+ * JobId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new GetIdentityResolutionJobCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,10 @@ 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 = { // GetIntegrationRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * Uri: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetIntegrationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -70,6 +70,11 @@ 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 = { // GetMatchesRequest
74
+ * NextToken: "STRING_VALUE",
75
+ * MaxResults: Number("int"),
76
+ * DomainName: "STRING_VALUE", // required
77
+ * };
73
78
  * const command = new GetMatchesCommand(input);
74
79
  * const response = await client.send(command);
75
80
  * ```
@@ -26,6 +26,10 @@ 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 = { // GetProfileObjectTypeRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * ObjectTypeName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetProfileObjectTypeCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -30,6 +30,9 @@ 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 = { // GetProfileObjectTypeTemplateRequest
34
+ * TemplateId: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new GetProfileObjectTypeTemplateCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -26,6 +26,10 @@ 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 = { // GetWorkflowRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * WorkflowId: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetWorkflowCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ 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 = { // GetWorkflowStepsRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * WorkflowId: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * };
29
35
  * const command = new GetWorkflowStepsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ 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 = { // ListAccountIntegrationsRequest
30
+ * Uri: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * IncludeHidden: true || false,
34
+ * };
29
35
  * const command = new ListAccountIntegrationsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ 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 = { // ListDomainsRequest
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListDomainsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,11 @@ 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 = { // ListIdentityResolutionJobsRequest
31
+ * DomainName: "STRING_VALUE", // required
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * };
30
35
  * const command = new ListIdentityResolutionJobsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -26,6 +26,12 @@ 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 = { // ListIntegrationsRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * IncludeHidden: true || false,
34
+ * };
29
35
  * const command = new ListIntegrationsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ 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 = { // ListProfileObjectTypeTemplatesRequest
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListProfileObjectTypeTemplatesCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListProfileObjectTypesRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListProfileObjectTypesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,19 @@ 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 = { // ListProfileObjectsRequest
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * DomainName: "STRING_VALUE", // required
33
+ * ObjectTypeName: "STRING_VALUE", // required
34
+ * ProfileId: "STRING_VALUE", // required
35
+ * ObjectFilter: { // ObjectFilter
36
+ * KeyName: "STRING_VALUE", // required
37
+ * Values: [ // requestValueList // required
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * };
29
42
  * const command = new ListProfileObjectsCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -27,6 +27,9 @@ 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 = { // ListTagsForResourceRequest
31
+ * resourceArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new ListTagsForResourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,15 @@ 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 = { // ListWorkflowsRequest
30
+ * DomainName: "STRING_VALUE", // required
31
+ * WorkflowType: "APPFLOW_INTEGRATION",
32
+ * Status: "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "FAILED" || "SPLIT" || "RETRY" || "CANCELLED",
33
+ * QueryStartDate: new Date("TIMESTAMP"),
34
+ * QueryEndDate: new Date("TIMESTAMP"),
35
+ * NextToken: "STRING_VALUE",
36
+ * MaxResults: Number("int"),
37
+ * };
29
38
  * const command = new ListWorkflowsCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -68,6 +68,38 @@ 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 = { // MergeProfilesRequest
72
+ * DomainName: "STRING_VALUE", // required
73
+ * MainProfileId: "STRING_VALUE", // required
74
+ * ProfileIdsToBeMerged: [ // ProfileIdToBeMergedList // required
75
+ * "STRING_VALUE",
76
+ * ],
77
+ * FieldSourceProfileIds: { // FieldSourceProfileIds
78
+ * AccountNumber: "STRING_VALUE",
79
+ * AdditionalInformation: "STRING_VALUE",
80
+ * PartyType: "STRING_VALUE",
81
+ * BusinessName: "STRING_VALUE",
82
+ * FirstName: "STRING_VALUE",
83
+ * MiddleName: "STRING_VALUE",
84
+ * LastName: "STRING_VALUE",
85
+ * BirthDate: "STRING_VALUE",
86
+ * Gender: "STRING_VALUE",
87
+ * PhoneNumber: "STRING_VALUE",
88
+ * MobilePhoneNumber: "STRING_VALUE",
89
+ * HomePhoneNumber: "STRING_VALUE",
90
+ * BusinessPhoneNumber: "STRING_VALUE",
91
+ * EmailAddress: "STRING_VALUE",
92
+ * PersonalEmailAddress: "STRING_VALUE",
93
+ * BusinessEmailAddress: "STRING_VALUE",
94
+ * Address: "STRING_VALUE",
95
+ * ShippingAddress: "STRING_VALUE",
96
+ * MailingAddress: "STRING_VALUE",
97
+ * BillingAddress: "STRING_VALUE",
98
+ * Attributes: { // AttributeSourceIdMap
99
+ * "<keys>": "STRING_VALUE",
100
+ * },
101
+ * },
102
+ * };
71
103
  * const command = new MergeProfilesCommand(input);
72
104
  * const response = await client.send(command);
73
105
  * ```
@@ -31,6 +31,82 @@ 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 = { // PutIntegrationRequest
35
+ * DomainName: "STRING_VALUE", // required
36
+ * Uri: "STRING_VALUE",
37
+ * ObjectTypeName: "STRING_VALUE",
38
+ * Tags: { // TagMap
39
+ * "<keys>": "STRING_VALUE",
40
+ * },
41
+ * FlowDefinition: { // FlowDefinition
42
+ * Description: "STRING_VALUE",
43
+ * FlowName: "STRING_VALUE", // required
44
+ * KmsArn: "STRING_VALUE", // required
45
+ * SourceFlowConfig: { // SourceFlowConfig
46
+ * ConnectorProfileName: "STRING_VALUE",
47
+ * ConnectorType: "Salesforce" || "Marketo" || "Zendesk" || "Servicenow" || "S3", // required
48
+ * IncrementalPullConfig: { // IncrementalPullConfig
49
+ * DatetimeTypeFieldName: "STRING_VALUE",
50
+ * },
51
+ * SourceConnectorProperties: { // SourceConnectorProperties
52
+ * Marketo: { // MarketoSourceProperties
53
+ * Object: "STRING_VALUE", // required
54
+ * },
55
+ * S3: { // S3SourceProperties
56
+ * BucketName: "STRING_VALUE", // required
57
+ * BucketPrefix: "STRING_VALUE",
58
+ * },
59
+ * Salesforce: { // SalesforceSourceProperties
60
+ * Object: "STRING_VALUE", // required
61
+ * EnableDynamicFieldUpdate: true || false,
62
+ * IncludeDeletedRecords: true || false,
63
+ * },
64
+ * ServiceNow: { // ServiceNowSourceProperties
65
+ * Object: "STRING_VALUE", // required
66
+ * },
67
+ * Zendesk: { // ZendeskSourceProperties
68
+ * Object: "STRING_VALUE", // required
69
+ * },
70
+ * },
71
+ * },
72
+ * Tasks: [ // Tasks // required
73
+ * { // Task
74
+ * ConnectorOperator: { // ConnectorOperator
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
+ * 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
+ * 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",
78
+ * ServiceNow: "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",
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
+ * },
81
+ * DestinationField: "STRING_VALUE",
82
+ * SourceFields: [ // SourceFields // required
83
+ * "STRING_VALUE",
84
+ * ],
85
+ * TaskProperties: { // TaskPropertiesMap
86
+ * "<keys>": "STRING_VALUE",
87
+ * },
88
+ * TaskType: "Arithmetic" || "Filter" || "Map" || "Mask" || "Merge" || "Truncate" || "Validate", // required
89
+ * },
90
+ * ],
91
+ * TriggerConfig: { // TriggerConfig
92
+ * TriggerType: "Scheduled" || "Event" || "OnDemand", // required
93
+ * TriggerProperties: { // TriggerProperties
94
+ * Scheduled: { // ScheduledTriggerProperties
95
+ * ScheduleExpression: "STRING_VALUE", // required
96
+ * DataPullMode: "Incremental" || "Complete",
97
+ * ScheduleStartTime: new Date("TIMESTAMP"),
98
+ * ScheduleEndTime: new Date("TIMESTAMP"),
99
+ * Timezone: "STRING_VALUE",
100
+ * ScheduleOffset: Number("long"),
101
+ * FirstExecutionFrom: new Date("TIMESTAMP"),
102
+ * },
103
+ * },
104
+ * },
105
+ * },
106
+ * ObjectTypeNames: { // ObjectTypeNames
107
+ * "<keys>": "STRING_VALUE",
108
+ * },
109
+ * };
34
110
  * const command = new PutIntegrationCommand(input);
35
111
  * const response = await client.send(command);
36
112
  * ```
@@ -35,6 +35,11 @@ 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 = { // PutProfileObjectRequest
39
+ * ObjectTypeName: "STRING_VALUE", // required
40
+ * Object: "STRING_VALUE", // required
41
+ * DomainName: "STRING_VALUE", // required
42
+ * };
38
43
  * const command = new PutProfileObjectCommand(input);
39
44
  * const response = await client.send(command);
40
45
  * ```
@@ -28,6 +28,38 @@ 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 = { // PutProfileObjectTypeRequest
32
+ * DomainName: "STRING_VALUE", // required
33
+ * ObjectTypeName: "STRING_VALUE", // required
34
+ * Description: "STRING_VALUE", // required
35
+ * TemplateId: "STRING_VALUE",
36
+ * ExpirationDays: Number("int"),
37
+ * EncryptionKey: "STRING_VALUE",
38
+ * AllowProfileCreation: true || false,
39
+ * SourceLastUpdatedTimestampFormat: "STRING_VALUE",
40
+ * Fields: { // FieldMap
41
+ * "<keys>": { // ObjectTypeField
42
+ * Source: "STRING_VALUE",
43
+ * Target: "STRING_VALUE",
44
+ * ContentType: "STRING" || "NUMBER" || "PHONE_NUMBER" || "EMAIL_ADDRESS" || "NAME",
45
+ * },
46
+ * },
47
+ * Keys: { // KeyMap
48
+ * "<keys>": [ // ObjectTypeKeyList
49
+ * { // ObjectTypeKey
50
+ * StandardIdentifiers: [ // StandardIdentifierList
51
+ * "PROFILE" || "ASSET" || "CASE" || "UNIQUE" || "SECONDARY" || "LOOKUP_ONLY" || "NEW_ONLY" || "ORDER",
52
+ * ],
53
+ * FieldNames: [ // FieldNameList
54
+ * "STRING_VALUE",
55
+ * ],
56
+ * },
57
+ * ],
58
+ * },
59
+ * Tags: { // TagMap
60
+ * "<keys>": "STRING_VALUE",
61
+ * },
62
+ * };
31
63
  * const command = new PutProfileObjectTypeCommand(input);
32
64
  * const response = await client.send(command);
33
65
  * ```
@@ -30,6 +30,24 @@ 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 = { // SearchProfilesRequest
34
+ * NextToken: "STRING_VALUE",
35
+ * MaxResults: Number("int"),
36
+ * DomainName: "STRING_VALUE", // required
37
+ * KeyName: "STRING_VALUE", // required
38
+ * Values: [ // requestValueList // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * AdditionalSearchKeys: [ // additionalSearchKeysList
42
+ * { // AdditionalSearchKey
43
+ * KeyName: "STRING_VALUE", // required
44
+ * Values: [ // required
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * },
48
+ * ],
49
+ * LogicalOperator: "AND" || "OR",
50
+ * };
33
51
  * const command = new SearchProfilesCommand(input);
34
52
  * const response = await client.send(command);
35
53
  * ```
@@ -37,6 +37,12 @@ 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 = { // TagResourceRequest
41
+ * resourceArn: "STRING_VALUE", // required
42
+ * tags: { // TagMap // required
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * };
40
46
  * const command = new TagResourceCommand(input);
41
47
  * const response = await client.send(command);
42
48
  * ```
@@ -27,6 +27,12 @@ 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 = { // UntagResourceRequest
31
+ * resourceArn: "STRING_VALUE", // required
32
+ * tagKeys: [ // TagKeyList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
30
36
  * const command = new UntagResourceCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -34,6 +34,43 @@ 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 = { // UpdateDomainRequest
38
+ * DomainName: "STRING_VALUE", // required
39
+ * DefaultExpirationDays: Number("int"),
40
+ * DefaultEncryptionKey: "STRING_VALUE",
41
+ * DeadLetterQueueUrl: "STRING_VALUE",
42
+ * Matching: { // MatchingRequest
43
+ * Enabled: true || false, // required
44
+ * JobSchedule: { // JobSchedule
45
+ * DayOfTheWeek: "SUNDAY" || "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY", // required
46
+ * Time: "STRING_VALUE", // required
47
+ * },
48
+ * AutoMerging: { // AutoMerging
49
+ * Enabled: true || false, // required
50
+ * Consolidation: { // Consolidation
51
+ * MatchingAttributesList: [ // MatchingAttributesList // required
52
+ * [ // MatchingAttributes
53
+ * "STRING_VALUE",
54
+ * ],
55
+ * ],
56
+ * },
57
+ * ConflictResolution: { // ConflictResolution
58
+ * ConflictResolvingModel: "RECENCY" || "SOURCE", // required
59
+ * SourceName: "STRING_VALUE",
60
+ * },
61
+ * MinAllowedConfidenceScoreForMerging: Number("double"),
62
+ * },
63
+ * ExportingConfig: { // ExportingConfig
64
+ * S3Exporting: { // S3ExportingConfig
65
+ * S3BucketName: "STRING_VALUE", // required
66
+ * S3KeyName: "STRING_VALUE",
67
+ * },
68
+ * },
69
+ * },
70
+ * Tags: { // TagMap
71
+ * "<keys>": "STRING_VALUE",
72
+ * },
73
+ * };
37
74
  * const command = new UpdateDomainCommand(input);
38
75
  * const response = await client.send(command);
39
76
  * ```
@@ -30,6 +30,79 @@ 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 = { // UpdateProfileRequest
34
+ * DomainName: "STRING_VALUE", // required
35
+ * ProfileId: "STRING_VALUE", // required
36
+ * AdditionalInformation: "STRING_VALUE",
37
+ * AccountNumber: "STRING_VALUE",
38
+ * PartyType: "INDIVIDUAL" || "BUSINESS" || "OTHER",
39
+ * BusinessName: "STRING_VALUE",
40
+ * FirstName: "STRING_VALUE",
41
+ * MiddleName: "STRING_VALUE",
42
+ * LastName: "STRING_VALUE",
43
+ * BirthDate: "STRING_VALUE",
44
+ * Gender: "MALE" || "FEMALE" || "UNSPECIFIED",
45
+ * PhoneNumber: "STRING_VALUE",
46
+ * MobilePhoneNumber: "STRING_VALUE",
47
+ * HomePhoneNumber: "STRING_VALUE",
48
+ * BusinessPhoneNumber: "STRING_VALUE",
49
+ * EmailAddress: "STRING_VALUE",
50
+ * PersonalEmailAddress: "STRING_VALUE",
51
+ * BusinessEmailAddress: "STRING_VALUE",
52
+ * Address: { // UpdateAddress
53
+ * Address1: "STRING_VALUE",
54
+ * Address2: "STRING_VALUE",
55
+ * Address3: "STRING_VALUE",
56
+ * Address4: "STRING_VALUE",
57
+ * City: "STRING_VALUE",
58
+ * County: "STRING_VALUE",
59
+ * State: "STRING_VALUE",
60
+ * Province: "STRING_VALUE",
61
+ * Country: "STRING_VALUE",
62
+ * PostalCode: "STRING_VALUE",
63
+ * },
64
+ * ShippingAddress: {
65
+ * Address1: "STRING_VALUE",
66
+ * Address2: "STRING_VALUE",
67
+ * Address3: "STRING_VALUE",
68
+ * Address4: "STRING_VALUE",
69
+ * City: "STRING_VALUE",
70
+ * County: "STRING_VALUE",
71
+ * State: "STRING_VALUE",
72
+ * Province: "STRING_VALUE",
73
+ * Country: "STRING_VALUE",
74
+ * PostalCode: "STRING_VALUE",
75
+ * },
76
+ * MailingAddress: {
77
+ * Address1: "STRING_VALUE",
78
+ * Address2: "STRING_VALUE",
79
+ * Address3: "STRING_VALUE",
80
+ * Address4: "STRING_VALUE",
81
+ * City: "STRING_VALUE",
82
+ * County: "STRING_VALUE",
83
+ * State: "STRING_VALUE",
84
+ * Province: "STRING_VALUE",
85
+ * Country: "STRING_VALUE",
86
+ * PostalCode: "STRING_VALUE",
87
+ * },
88
+ * BillingAddress: {
89
+ * Address1: "STRING_VALUE",
90
+ * Address2: "STRING_VALUE",
91
+ * Address3: "STRING_VALUE",
92
+ * Address4: "STRING_VALUE",
93
+ * City: "STRING_VALUE",
94
+ * County: "STRING_VALUE",
95
+ * State: "STRING_VALUE",
96
+ * Province: "STRING_VALUE",
97
+ * Country: "STRING_VALUE",
98
+ * PostalCode: "STRING_VALUE",
99
+ * },
100
+ * Attributes: { // UpdateAttributes
101
+ * "<keys>": "STRING_VALUE",
102
+ * },
103
+ * PartyTypeString: "STRING_VALUE",
104
+ * GenderString: "STRING_VALUE",
105
+ * };
33
106
  * const command = new UpdateProfileCommand(input);
34
107
  * const response = await client.send(command);
35
108
  * ```
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.299.0",
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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
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",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },