@aws-sdk/client-customer-profiles 3.428.0 → 3.429.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.
@@ -351,7 +351,7 @@ export interface SourceFlowConfig {
351
351
  * @public
352
352
  * <p>The type of connector, such as Salesforce, Marketo, and so on.</p>
353
353
  */
354
- ConnectorType: SourceConnectorType | string | undefined;
354
+ ConnectorType: SourceConnectorType | undefined;
355
355
  /**
356
356
  * @public
357
357
  * <p>Defines the configuration for a scheduled incremental data pull. If a valid
@@ -517,27 +517,27 @@ export interface ConnectorOperator {
517
517
  * @public
518
518
  * <p>The operation to be performed on the provided Marketo source fields.</p>
519
519
  */
520
- Marketo?: MarketoConnectorOperator | string;
520
+ Marketo?: MarketoConnectorOperator;
521
521
  /**
522
522
  * @public
523
523
  * <p>The operation to be performed on the provided Amazon S3 source fields.</p>
524
524
  */
525
- S3?: S3ConnectorOperator | string;
525
+ S3?: S3ConnectorOperator;
526
526
  /**
527
527
  * @public
528
528
  * <p>The operation to be performed on the provided Salesforce source fields.</p>
529
529
  */
530
- Salesforce?: SalesforceConnectorOperator | string;
530
+ Salesforce?: SalesforceConnectorOperator;
531
531
  /**
532
532
  * @public
533
533
  * <p>The operation to be performed on the provided ServiceNow source fields.</p>
534
534
  */
535
- ServiceNow?: ServiceNowConnectorOperator | string;
535
+ ServiceNow?: ServiceNowConnectorOperator;
536
536
  /**
537
537
  * @public
538
538
  * <p>The operation to be performed on the provided Zendesk source fields.</p>
539
539
  */
540
- Zendesk?: ZendeskConnectorOperator | string;
540
+ Zendesk?: ZendeskConnectorOperator;
541
541
  }
542
542
  /**
543
543
  * @public
@@ -607,12 +607,12 @@ export interface Task {
607
607
  * <p>A map used to store task-related information. The service looks for particular
608
608
  * information based on the TaskType.</p>
609
609
  */
610
- TaskProperties?: Record<string, string>;
610
+ TaskProperties?: Record<OperatorPropertiesKeys, string>;
611
611
  /**
612
612
  * @public
613
613
  * <p>Specifies the particular task implementation that Amazon AppFlow performs.</p>
614
614
  */
615
- TaskType: TaskType | string | undefined;
615
+ TaskType: TaskType | undefined;
616
616
  }
617
617
  /**
618
618
  * @public
@@ -643,7 +643,7 @@ export interface ScheduledTriggerProperties {
643
643
  * <p>Specifies whether a scheduled flow has an incremental data transfer or a complete data
644
644
  * transfer for each flow run.</p>
645
645
  */
646
- DataPullMode?: DataPullMode | string;
646
+ DataPullMode?: DataPullMode;
647
647
  /**
648
648
  * @public
649
649
  * <p>Specifies the scheduled start time for a scheduled-trigger flow.</p>
@@ -708,7 +708,7 @@ export interface TriggerConfig {
708
708
  * @public
709
709
  * <p>Specifies the type of flow trigger. It can be OnDemand, Scheduled, or Event.</p>
710
710
  */
711
- TriggerType: TriggerType | string | undefined;
711
+ TriggerType: TriggerType | undefined;
712
712
  /**
713
713
  * @public
714
714
  * <p>Specifies the configuration details of a schedule-triggered flow that you define.
@@ -784,7 +784,7 @@ export interface AppflowIntegrationWorkflowAttributes {
784
784
  * @public
785
785
  * <p>Specifies the source connector type, such as Salesforce, ServiceNow, and Marketo. Indicates source of ingestion.</p>
786
786
  */
787
- SourceConnectorType: SourceConnectorType | string | undefined;
787
+ SourceConnectorType: SourceConnectorType | undefined;
788
788
  /**
789
789
  * @public
790
790
  * <p>The name of the AppFlow connector profile used for ingestion.</p>
@@ -848,7 +848,7 @@ export interface AppflowIntegrationWorkflowStep {
848
848
  * @public
849
849
  * <p>Workflow step status for <code>APPFLOW_INTEGRATION</code> workflow.</p>
850
850
  */
851
- Status: Status | string | undefined;
851
+ Status: Status | undefined;
852
852
  /**
853
853
  * @public
854
854
  * <p>Message indicating execution of workflow step for <code>APPFLOW_INTEGRATION</code> workflow.</p>
@@ -973,7 +973,7 @@ export interface AttributeTypesSelector {
973
973
  * <p>Configures the <code>AttributeMatchingModel</code>, you can either choose <code>ONE_TO_ONE</code> or
974
974
  * <code>MANY_TO_MANY</code>.</p>
975
975
  */
976
- AttributeMatchingModel: AttributeMatchingModel | string | undefined;
976
+ AttributeMatchingModel: AttributeMatchingModel | undefined;
977
977
  /**
978
978
  * @public
979
979
  * <p>The <code>Address</code> type. You can choose from <code>Address</code>,
@@ -1044,7 +1044,7 @@ export interface ConflictResolution {
1044
1044
  * </li>
1045
1045
  * </ul>
1046
1046
  */
1047
- ConflictResolvingModel: ConflictResolvingModel | string | undefined;
1047
+ ConflictResolvingModel: ConflictResolvingModel | undefined;
1048
1048
  /**
1049
1049
  * @public
1050
1050
  * <p>The <code>ObjectType</code> name that is used to resolve profile merging conflicts when
@@ -1182,7 +1182,7 @@ export interface Range {
1182
1182
  * @public
1183
1183
  * <p>The unit of time.</p>
1184
1184
  */
1185
- Unit: Unit | string | undefined;
1185
+ Unit: Unit | undefined;
1186
1186
  }
1187
1187
  /**
1188
1188
  * @public
@@ -1212,7 +1212,7 @@ export interface Threshold {
1212
1212
  * @public
1213
1213
  * <p>The operator of the threshold.</p>
1214
1214
  */
1215
- Operator: Operator | string | undefined;
1215
+ Operator: Operator | undefined;
1216
1216
  }
1217
1217
  /**
1218
1218
  * @public
@@ -1291,7 +1291,7 @@ export interface CreateCalculatedAttributeDefinitionRequest {
1291
1291
  * @public
1292
1292
  * <p>The aggregation operation to perform for the calculated attribute.</p>
1293
1293
  */
1294
- Statistic: Statistic | string | undefined;
1294
+ Statistic: Statistic | undefined;
1295
1295
  /**
1296
1296
  * @public
1297
1297
  * <p>The tags used to organize, track, or control access for this resource.</p>
@@ -1331,7 +1331,7 @@ export interface CreateCalculatedAttributeDefinitionResponse {
1331
1331
  * @public
1332
1332
  * <p>The aggregation operation to perform for the calculated attribute.</p>
1333
1333
  */
1334
- Statistic?: Statistic | string;
1334
+ Statistic?: Statistic;
1335
1335
  /**
1336
1336
  * @public
1337
1337
  * <p>The timestamp of when the calculated attribute definition was created.</p>
@@ -1406,7 +1406,7 @@ export interface JobSchedule {
1406
1406
  * @public
1407
1407
  * <p>The day when the Identity Resolution Job should run every week.</p>
1408
1408
  */
1409
- DayOfTheWeek: JobScheduleDayOfTheWeek | string | undefined;
1409
+ DayOfTheWeek: JobScheduleDayOfTheWeek | undefined;
1410
1410
  /**
1411
1411
  * @public
1412
1412
  * <p>The time when the Identity Resolution Job should run every week.</p>
@@ -1695,7 +1695,7 @@ export interface RuleBasedMatchingResponse {
1695
1695
  * </li>
1696
1696
  * </ul>
1697
1697
  */
1698
- Status?: RuleBasedMatchingStatus | string;
1698
+ Status?: RuleBasedMatchingStatus;
1699
1699
  /**
1700
1700
  * @public
1701
1701
  * <p>
@@ -1869,7 +1869,7 @@ export interface CreateIntegrationWorkflowRequest {
1869
1869
  * @public
1870
1870
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
1871
1871
  */
1872
- WorkflowType: WorkflowType | string | undefined;
1872
+ WorkflowType: WorkflowType | undefined;
1873
1873
  /**
1874
1874
  * @public
1875
1875
  * <p>Configuration data for integration workflow.</p>
@@ -1957,7 +1957,7 @@ export interface CreateProfileRequest {
1957
1957
  *
1958
1958
  * <p>The type of profile used to describe the customer.</p>
1959
1959
  */
1960
- PartyType?: PartyType | string;
1960
+ PartyType?: PartyType;
1961
1961
  /**
1962
1962
  * @public
1963
1963
  * <p>The name of the customer’s business.</p>
@@ -1989,7 +1989,7 @@ export interface CreateProfileRequest {
1989
1989
  *
1990
1990
  * <p>The gender with which the customer identifies. </p>
1991
1991
  */
1992
- Gender?: Gender | string;
1992
+ Gender?: Gender;
1993
1993
  /**
1994
1994
  * @public
1995
1995
  * <p>The customer’s phone number, which has not been specified as a mobile, home, or business
@@ -2398,7 +2398,7 @@ export interface GetCalculatedAttributeDefinitionResponse {
2398
2398
  * @public
2399
2399
  * <p>The aggregation operation to perform for the calculated attribute.</p>
2400
2400
  */
2401
- Statistic?: Statistic | string;
2401
+ Statistic?: Statistic;
2402
2402
  /**
2403
2403
  * @public
2404
2404
  * <p>The conditions including range, object count, and threshold for the calculated attribute.</p>
@@ -2608,7 +2608,7 @@ export interface EventStreamDestinationDetails {
2608
2608
  * @public
2609
2609
  * <p>The status of enabling the Kinesis stream as a destination for export.</p>
2610
2610
  */
2611
- Status: EventStreamDestinationStatus | string | undefined;
2611
+ Status: EventStreamDestinationStatus | undefined;
2612
2612
  /**
2613
2613
  * @public
2614
2614
  * <p>The timestamp when the status last changed to <code>UNHEALHY</code>.</p>
@@ -2655,7 +2655,7 @@ export interface GetEventStreamResponse {
2655
2655
  * @public
2656
2656
  * <p>The operational state of destination stream for export.</p>
2657
2657
  */
2658
- State: EventStreamState | string | undefined;
2658
+ State: EventStreamState | undefined;
2659
2659
  /**
2660
2660
  * @public
2661
2661
  * <p>The timestamp when the <code>State</code> changed to <code>STOPPED</code>.</p>
@@ -2805,7 +2805,7 @@ export interface GetIdentityResolutionJobResponse {
2805
2805
  * </li>
2806
2806
  * </ul>
2807
2807
  */
2808
- Status?: IdentityResolutionJobStatus | string;
2808
+ Status?: IdentityResolutionJobStatus;
2809
2809
  /**
2810
2810
  * @public
2811
2811
  * <p>The error messages that are generated when the Identity Resolution Job runs.</p>
@@ -3039,7 +3039,7 @@ export interface ObjectTypeField {
3039
3039
  * @public
3040
3040
  * <p>The content type of the field. Used for determining equality when searching.</p>
3041
3041
  */
3042
- ContentType?: FieldContentType | string;
3042
+ ContentType?: FieldContentType;
3043
3043
  }
3044
3044
  /**
3045
3045
  * @public
@@ -3076,7 +3076,7 @@ export interface ObjectTypeKey {
3076
3076
  * A NEW_ONLY key is only used if the profile does not already exist before the object is
3077
3077
  * ingested, otherwise it is only used for matching objects to profiles.</p>
3078
3078
  */
3079
- StandardIdentifiers?: (StandardIdentifier | string)[];
3079
+ StandardIdentifiers?: StandardIdentifier[];
3080
3080
  /**
3081
3081
  * @public
3082
3082
  * <p>The reference for the key name of the fields map.</p>
@@ -3244,7 +3244,7 @@ export interface GetSimilarProfilesRequest {
3244
3244
  * @public
3245
3245
  * <p>Specify the type of matching to get similar profiles for.</p>
3246
3246
  */
3247
- MatchType: MatchType | string | undefined;
3247
+ MatchType: MatchType | undefined;
3248
3248
  /**
3249
3249
  * @public
3250
3250
  * <p>The string indicating the search key to be used.</p>
@@ -3274,7 +3274,7 @@ export interface GetSimilarProfilesResponse {
3274
3274
  * @public
3275
3275
  * <p>Specify the type of matching to get similar profiles for.</p>
3276
3276
  */
3277
- MatchType?: MatchType | string;
3277
+ MatchType?: MatchType;
3278
3278
  /**
3279
3279
  * @public
3280
3280
  * <p>The integer rule level that the profiles matched on.</p>
@@ -3348,12 +3348,12 @@ export interface GetWorkflowResponse {
3348
3348
  * @public
3349
3349
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
3350
3350
  */
3351
- WorkflowType?: WorkflowType | string;
3351
+ WorkflowType?: WorkflowType;
3352
3352
  /**
3353
3353
  * @public
3354
3354
  * <p>Status of workflow execution.</p>
3355
3355
  */
3356
- Status?: Status | string;
3356
+ Status?: Status;
3357
3357
  /**
3358
3358
  * @public
3359
3359
  * <p>Workflow error messages during execution (if any).</p>
@@ -3430,7 +3430,7 @@ export interface GetWorkflowStepsResponse {
3430
3430
  * @public
3431
3431
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
3432
3432
  */
3433
- WorkflowType?: WorkflowType | string;
3433
+ WorkflowType?: WorkflowType;
3434
3434
  /**
3435
3435
  * @public
3436
3436
  * <p>List containing workflow step details.</p>
@@ -3702,7 +3702,7 @@ export interface DestinationSummary {
3702
3702
  * @public
3703
3703
  * <p>The status of enabling the Kinesis stream as a destination for export.</p>
3704
3704
  */
3705
- Status: EventStreamDestinationStatus | string | undefined;
3705
+ Status: EventStreamDestinationStatus | undefined;
3706
3706
  /**
3707
3707
  * @public
3708
3708
  * <p>The timestamp when the status last changed to <code>UNHEALHY</code>.</p>
@@ -3733,7 +3733,7 @@ export interface EventStreamSummary {
3733
3733
  * @public
3734
3734
  * <p>The operational state of destination stream for export.</p>
3735
3735
  */
3736
- State: EventStreamState | string | undefined;
3736
+ State: EventStreamState | undefined;
3737
3737
  /**
3738
3738
  * @public
3739
3739
  * <p>The timestamp when the <code>State</code> changed to <code>STOPPED</code>.</p>
@@ -3840,7 +3840,7 @@ export interface IdentityResolutionJob {
3840
3840
  * </li>
3841
3841
  * </ul>
3842
3842
  */
3843
- Status?: IdentityResolutionJobStatus | string;
3843
+ Status?: IdentityResolutionJobStatus;
3844
3844
  /**
3845
3845
  * @public
3846
3846
  * <p>The timestamp of when the job was started or will be started.</p>
@@ -4203,12 +4203,12 @@ export interface ListWorkflowsRequest {
4203
4203
  * @public
4204
4204
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
4205
4205
  */
4206
- WorkflowType?: WorkflowType | string;
4206
+ WorkflowType?: WorkflowType;
4207
4207
  /**
4208
4208
  * @public
4209
4209
  * <p>Status of workflow execution.</p>
4210
4210
  */
4211
- Status?: Status | string;
4211
+ Status?: Status;
4212
4212
  /**
4213
4213
  * @public
4214
4214
  * <p>Retrieve workflows started after timestamp.</p>
@@ -4240,7 +4240,7 @@ export interface ListWorkflowsItem {
4240
4240
  * @public
4241
4241
  * <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
4242
4242
  */
4243
- WorkflowType: WorkflowType | string | undefined;
4243
+ WorkflowType: WorkflowType | undefined;
4244
4244
  /**
4245
4245
  * @public
4246
4246
  * <p>Unique identifier for the workflow.</p>
@@ -4250,7 +4250,7 @@ export interface ListWorkflowsItem {
4250
4250
  * @public
4251
4251
  * <p>Status of workflow execution.</p>
4252
4252
  */
4253
- Status: Status | string | undefined;
4253
+ Status: Status | undefined;
4254
4254
  /**
4255
4255
  * @public
4256
4256
  * <p>Description for workflow execution status.</p>
@@ -4769,7 +4769,7 @@ export interface SearchProfilesRequest {
4769
4769
  * </ul>
4770
4770
  * <p>The <code>OR</code> relationship is the default behavior if this parameter is not included in the request.</p>
4771
4771
  */
4772
- LogicalOperator?: LogicalOperator | string;
4772
+ LogicalOperator?: LogicalOperator;
4773
4773
  }
4774
4774
  /**
4775
4775
  * @public
@@ -4814,7 +4814,7 @@ export interface Profile {
4814
4814
  *
4815
4815
  * <p>The type of profile used to describe the customer.</p>
4816
4816
  */
4817
- PartyType?: PartyType | string;
4817
+ PartyType?: PartyType;
4818
4818
  /**
4819
4819
  * @public
4820
4820
  * <p>The name of the customer’s business.</p>
@@ -4846,7 +4846,7 @@ export interface Profile {
4846
4846
  *
4847
4847
  * <p>The gender with which the customer identifies. </p>
4848
4848
  */
4849
- Gender?: Gender | string;
4849
+ Gender?: Gender;
4850
4850
  /**
4851
4851
  * @public
4852
4852
  * <p>The customer's phone number, which has not been specified as a mobile, home, or business
@@ -5064,7 +5064,7 @@ export interface UpdateCalculatedAttributeDefinitionResponse {
5064
5064
  * @public
5065
5065
  * <p>The aggregation operation to perform for the calculated attribute.</p>
5066
5066
  */
5067
- Statistic?: Statistic | string;
5067
+ Statistic?: Statistic;
5068
5068
  /**
5069
5069
  * @public
5070
5070
  * <p>The conditions including range, object count, and threshold for the calculated attribute.</p>
@@ -5291,7 +5291,7 @@ export interface UpdateProfileRequest {
5291
5291
  *
5292
5292
  * <p>The type of profile used to describe the customer.</p>
5293
5293
  */
5294
- PartyType?: PartyType | string;
5294
+ PartyType?: PartyType;
5295
5295
  /**
5296
5296
  * @public
5297
5297
  * <p>The name of the customer’s business.</p>
@@ -5323,7 +5323,7 @@ export interface UpdateProfileRequest {
5323
5323
  *
5324
5324
  * <p>The gender with which the customer identifies. </p>
5325
5325
  */
5326
- Gender?: Gender | string;
5326
+ Gender?: Gender;
5327
5327
  /**
5328
5328
  * @public
5329
5329
  * <p>The customer’s phone number, which has not been specified as a mobile, home, or business
@@ -109,7 +109,7 @@ export interface SourceConnectorProperties {
109
109
  }
110
110
  export interface SourceFlowConfig {
111
111
  ConnectorProfileName?: string;
112
- ConnectorType: SourceConnectorType | string | undefined;
112
+ ConnectorType: SourceConnectorType | undefined;
113
113
  IncrementalPullConfig?: IncrementalPullConfig;
114
114
  SourceConnectorProperties: SourceConnectorProperties | undefined;
115
115
  }
@@ -226,11 +226,11 @@ export declare const ZendeskConnectorOperator: {
226
226
  export type ZendeskConnectorOperator =
227
227
  (typeof ZendeskConnectorOperator)[keyof typeof ZendeskConnectorOperator];
228
228
  export interface ConnectorOperator {
229
- Marketo?: MarketoConnectorOperator | string;
230
- S3?: S3ConnectorOperator | string;
231
- Salesforce?: SalesforceConnectorOperator | string;
232
- ServiceNow?: ServiceNowConnectorOperator | string;
233
- Zendesk?: ZendeskConnectorOperator | string;
229
+ Marketo?: MarketoConnectorOperator;
230
+ S3?: S3ConnectorOperator;
231
+ Salesforce?: SalesforceConnectorOperator;
232
+ ServiceNow?: ServiceNowConnectorOperator;
233
+ Zendesk?: ZendeskConnectorOperator;
234
234
  }
235
235
  export declare const OperatorPropertiesKeys: {
236
236
  readonly CONCAT_FORMAT: "CONCAT_FORMAT";
@@ -264,8 +264,8 @@ export interface Task {
264
264
  ConnectorOperator?: ConnectorOperator;
265
265
  DestinationField?: string;
266
266
  SourceFields: string[] | undefined;
267
- TaskProperties?: Record<string, string>;
268
- TaskType: TaskType | string | undefined;
267
+ TaskProperties?: Record<OperatorPropertiesKeys, string>;
268
+ TaskType: TaskType | undefined;
269
269
  }
270
270
  export declare const DataPullMode: {
271
271
  readonly COMPLETE: "Complete";
@@ -274,7 +274,7 @@ export declare const DataPullMode: {
274
274
  export type DataPullMode = (typeof DataPullMode)[keyof typeof DataPullMode];
275
275
  export interface ScheduledTriggerProperties {
276
276
  ScheduleExpression: string | undefined;
277
- DataPullMode?: DataPullMode | string;
277
+ DataPullMode?: DataPullMode;
278
278
  ScheduleStartTime?: Date;
279
279
  ScheduleEndTime?: Date;
280
280
  Timezone?: string;
@@ -291,7 +291,7 @@ export declare const TriggerType: {
291
291
  };
292
292
  export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
293
293
  export interface TriggerConfig {
294
- TriggerType: TriggerType | string | undefined;
294
+ TriggerType: TriggerType | undefined;
295
295
  TriggerProperties?: TriggerProperties;
296
296
  }
297
297
  export interface FlowDefinition {
@@ -307,7 +307,7 @@ export interface AppflowIntegration {
307
307
  Batches?: Batch[];
308
308
  }
309
309
  export interface AppflowIntegrationWorkflowAttributes {
310
- SourceConnectorType: SourceConnectorType | string | undefined;
310
+ SourceConnectorType: SourceConnectorType | undefined;
311
311
  ConnectorProfileName: string | undefined;
312
312
  RoleArn?: string;
313
313
  }
@@ -328,7 +328,7 @@ export declare const Status: {
328
328
  export type Status = (typeof Status)[keyof typeof Status];
329
329
  export interface AppflowIntegrationWorkflowStep {
330
330
  FlowName: string | undefined;
331
- Status: Status | string | undefined;
331
+ Status: Status | undefined;
332
332
  ExecutionMessage: string | undefined;
333
333
  RecordsProcessed: number | undefined;
334
334
  BatchRecordsStartTime: string | undefined;
@@ -350,7 +350,7 @@ export declare const AttributeMatchingModel: {
350
350
  export type AttributeMatchingModel =
351
351
  (typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
352
352
  export interface AttributeTypesSelector {
353
- AttributeMatchingModel: AttributeMatchingModel | string | undefined;
353
+ AttributeMatchingModel: AttributeMatchingModel | undefined;
354
354
  Address?: string[];
355
355
  PhoneNumber?: string[];
356
356
  EmailAddress?: string[];
@@ -362,7 +362,7 @@ export declare const ConflictResolvingModel: {
362
362
  export type ConflictResolvingModel =
363
363
  (typeof ConflictResolvingModel)[keyof typeof ConflictResolvingModel];
364
364
  export interface ConflictResolution {
365
- ConflictResolvingModel: ConflictResolvingModel | string | undefined;
365
+ ConflictResolvingModel: ConflictResolvingModel | undefined;
366
366
  SourceName?: string;
367
367
  }
368
368
  export interface Consolidation {
@@ -394,7 +394,7 @@ export declare const Unit: {
394
394
  export type Unit = (typeof Unit)[keyof typeof Unit];
395
395
  export interface Range {
396
396
  Value: number | undefined;
397
- Unit: Unit | string | undefined;
397
+ Unit: Unit | undefined;
398
398
  }
399
399
  export declare const Operator: {
400
400
  readonly EQUAL_TO: "EQUAL_TO";
@@ -405,7 +405,7 @@ export declare const Operator: {
405
405
  export type Operator = (typeof Operator)[keyof typeof Operator];
406
406
  export interface Threshold {
407
407
  Value: string | undefined;
408
- Operator: Operator | string | undefined;
408
+ Operator: Operator | undefined;
409
409
  }
410
410
  export interface Conditions {
411
411
  Range?: Range;
@@ -430,7 +430,7 @@ export interface CreateCalculatedAttributeDefinitionRequest {
430
430
  Description?: string;
431
431
  AttributeDetails: AttributeDetails | undefined;
432
432
  Conditions?: Conditions;
433
- Statistic: Statistic | string | undefined;
433
+ Statistic: Statistic | undefined;
434
434
  Tags?: Record<string, string>;
435
435
  }
436
436
  export interface CreateCalculatedAttributeDefinitionResponse {
@@ -439,7 +439,7 @@ export interface CreateCalculatedAttributeDefinitionResponse {
439
439
  Description?: string;
440
440
  AttributeDetails?: AttributeDetails;
441
441
  Conditions?: Conditions;
442
- Statistic?: Statistic | string;
442
+ Statistic?: Statistic;
443
443
  CreatedAt?: Date;
444
444
  LastUpdatedAt?: Date;
445
445
  Tags?: Record<string, string>;
@@ -463,7 +463,7 @@ export declare const JobScheduleDayOfTheWeek: {
463
463
  export type JobScheduleDayOfTheWeek =
464
464
  (typeof JobScheduleDayOfTheWeek)[keyof typeof JobScheduleDayOfTheWeek];
465
465
  export interface JobSchedule {
466
- DayOfTheWeek: JobScheduleDayOfTheWeek | string | undefined;
466
+ DayOfTheWeek: JobScheduleDayOfTheWeek | undefined;
467
467
  Time: string | undefined;
468
468
  }
469
469
  export interface MatchingRequest {
@@ -509,7 +509,7 @@ export type RuleBasedMatchingStatus =
509
509
  export interface RuleBasedMatchingResponse {
510
510
  Enabled?: boolean;
511
511
  MatchingRules?: MatchingRule[];
512
- Status?: RuleBasedMatchingStatus | string;
512
+ Status?: RuleBasedMatchingStatus;
513
513
  MaxAllowedRuleLevelForMerging?: number;
514
514
  MaxAllowedRuleLevelForMatching?: number;
515
515
  AttributeTypesSelector?: AttributeTypesSelector;
@@ -546,7 +546,7 @@ export declare const WorkflowType: {
546
546
  export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
547
547
  export interface CreateIntegrationWorkflowRequest {
548
548
  DomainName: string | undefined;
549
- WorkflowType: WorkflowType | string | undefined;
549
+ WorkflowType: WorkflowType | undefined;
550
550
  IntegrationConfig: IntegrationConfig | undefined;
551
551
  ObjectTypeName: string | undefined;
552
552
  RoleArn: string | undefined;
@@ -572,13 +572,13 @@ export interface CreateProfileRequest {
572
572
  DomainName: string | undefined;
573
573
  AccountNumber?: string;
574
574
  AdditionalInformation?: string;
575
- PartyType?: PartyType | string;
575
+ PartyType?: PartyType;
576
576
  BusinessName?: string;
577
577
  FirstName?: string;
578
578
  MiddleName?: string;
579
579
  LastName?: string;
580
580
  BirthDate?: string;
581
- Gender?: Gender | string;
581
+ Gender?: Gender;
582
582
  PhoneNumber?: string;
583
583
  MobilePhoneNumber?: string;
584
584
  HomePhoneNumber?: string;
@@ -679,7 +679,7 @@ export interface GetCalculatedAttributeDefinitionResponse {
679
679
  Description?: string;
680
680
  CreatedAt?: Date;
681
681
  LastUpdatedAt?: Date;
682
- Statistic?: Statistic | string;
682
+ Statistic?: Statistic;
683
683
  Conditions?: Conditions;
684
684
  AttributeDetails?: AttributeDetails;
685
685
  Tags?: Record<string, string>;
@@ -728,7 +728,7 @@ export type EventStreamDestinationStatus =
728
728
  (typeof EventStreamDestinationStatus)[keyof typeof EventStreamDestinationStatus];
729
729
  export interface EventStreamDestinationDetails {
730
730
  Uri: string | undefined;
731
- Status: EventStreamDestinationStatus | string | undefined;
731
+ Status: EventStreamDestinationStatus | undefined;
732
732
  UnhealthySince?: Date;
733
733
  Message?: string;
734
734
  }
@@ -742,7 +742,7 @@ export interface GetEventStreamResponse {
742
742
  DomainName: string | undefined;
743
743
  EventStreamArn: string | undefined;
744
744
  CreatedAt: Date | undefined;
745
- State: EventStreamState | string | undefined;
745
+ State: EventStreamState | undefined;
746
746
  StoppedSince?: Date;
747
747
  DestinationDetails: EventStreamDestinationDetails | undefined;
748
748
  Tags?: Record<string, string>;
@@ -777,7 +777,7 @@ export type IdentityResolutionJobStatus =
777
777
  export interface GetIdentityResolutionJobResponse {
778
778
  DomainName?: string;
779
779
  JobId?: string;
780
- Status?: IdentityResolutionJobStatus | string;
780
+ Status?: IdentityResolutionJobStatus;
781
781
  Message?: string;
782
782
  JobStartTime?: Date;
783
783
  JobEndTime?: Date;
@@ -834,7 +834,7 @@ export type FieldContentType =
834
834
  export interface ObjectTypeField {
835
835
  Source?: string;
836
836
  Target?: string;
837
- ContentType?: FieldContentType | string;
837
+ ContentType?: FieldContentType;
838
838
  }
839
839
  export declare const StandardIdentifier: {
840
840
  readonly ASSET: "ASSET";
@@ -849,7 +849,7 @@ export declare const StandardIdentifier: {
849
849
  export type StandardIdentifier =
850
850
  (typeof StandardIdentifier)[keyof typeof StandardIdentifier];
851
851
  export interface ObjectTypeKey {
852
- StandardIdentifiers?: (StandardIdentifier | string)[];
852
+ StandardIdentifiers?: StandardIdentifier[];
853
853
  FieldNames?: string[];
854
854
  }
855
855
  export interface GetProfileObjectTypeResponse {
@@ -887,14 +887,14 @@ export interface GetSimilarProfilesRequest {
887
887
  NextToken?: string;
888
888
  MaxResults?: number;
889
889
  DomainName: string | undefined;
890
- MatchType: MatchType | string | undefined;
890
+ MatchType: MatchType | undefined;
891
891
  SearchKey: string | undefined;
892
892
  SearchValue: string | undefined;
893
893
  }
894
894
  export interface GetSimilarProfilesResponse {
895
895
  ProfileIds?: string[];
896
896
  MatchId?: string;
897
- MatchType?: MatchType | string;
897
+ MatchType?: MatchType;
898
898
  RuleLevel?: number;
899
899
  ConfidenceScore?: number;
900
900
  NextToken?: string;
@@ -911,8 +911,8 @@ export interface WorkflowMetrics {
911
911
  }
912
912
  export interface GetWorkflowResponse {
913
913
  WorkflowId?: string;
914
- WorkflowType?: WorkflowType | string;
915
- Status?: Status | string;
914
+ WorkflowType?: WorkflowType;
915
+ Status?: Status;
916
916
  ErrorDescription?: string;
917
917
  StartDate?: Date;
918
918
  LastUpdatedAt?: Date;
@@ -930,7 +930,7 @@ export interface WorkflowStepItem {
930
930
  }
931
931
  export interface GetWorkflowStepsResponse {
932
932
  WorkflowId?: string;
933
- WorkflowType?: WorkflowType | string;
933
+ WorkflowType?: WorkflowType;
934
934
  Items?: WorkflowStepItem[];
935
935
  NextToken?: string;
936
936
  }
@@ -995,14 +995,14 @@ export interface ListEventStreamsRequest {
995
995
  }
996
996
  export interface DestinationSummary {
997
997
  Uri: string | undefined;
998
- Status: EventStreamDestinationStatus | string | undefined;
998
+ Status: EventStreamDestinationStatus | undefined;
999
999
  UnhealthySince?: Date;
1000
1000
  }
1001
1001
  export interface EventStreamSummary {
1002
1002
  DomainName: string | undefined;
1003
1003
  EventStreamName: string | undefined;
1004
1004
  EventStreamArn: string | undefined;
1005
- State: EventStreamState | string | undefined;
1005
+ State: EventStreamState | undefined;
1006
1006
  StoppedSince?: Date;
1007
1007
  DestinationSummary?: DestinationSummary;
1008
1008
  Tags?: Record<string, string>;
@@ -1019,7 +1019,7 @@ export interface ListIdentityResolutionJobsRequest {
1019
1019
  export interface IdentityResolutionJob {
1020
1020
  DomainName?: string;
1021
1021
  JobId?: string;
1022
- Status?: IdentityResolutionJobStatus | string;
1022
+ Status?: IdentityResolutionJobStatus;
1023
1023
  JobStartTime?: Date;
1024
1024
  JobEndTime?: Date;
1025
1025
  JobStats?: JobStats;
@@ -1107,17 +1107,17 @@ export interface ListTagsForResourceResponse {
1107
1107
  }
1108
1108
  export interface ListWorkflowsRequest {
1109
1109
  DomainName: string | undefined;
1110
- WorkflowType?: WorkflowType | string;
1111
- Status?: Status | string;
1110
+ WorkflowType?: WorkflowType;
1111
+ Status?: Status;
1112
1112
  QueryStartDate?: Date;
1113
1113
  QueryEndDate?: Date;
1114
1114
  NextToken?: string;
1115
1115
  MaxResults?: number;
1116
1116
  }
1117
1117
  export interface ListWorkflowsItem {
1118
- WorkflowType: WorkflowType | string | undefined;
1118
+ WorkflowType: WorkflowType | undefined;
1119
1119
  WorkflowId: string | undefined;
1120
- Status: Status | string | undefined;
1120
+ Status: Status | undefined;
1121
1121
  StatusDescription: string | undefined;
1122
1122
  CreatedAt: Date | undefined;
1123
1123
  LastUpdatedAt: Date | undefined;
@@ -1225,7 +1225,7 @@ export interface SearchProfilesRequest {
1225
1225
  KeyName: string | undefined;
1226
1226
  Values: string[] | undefined;
1227
1227
  AdditionalSearchKeys?: AdditionalSearchKey[];
1228
- LogicalOperator?: LogicalOperator | string;
1228
+ LogicalOperator?: LogicalOperator;
1229
1229
  }
1230
1230
  export interface FoundByKeyValue {
1231
1231
  KeyName?: string;
@@ -1235,13 +1235,13 @@ export interface Profile {
1235
1235
  ProfileId?: string;
1236
1236
  AccountNumber?: string;
1237
1237
  AdditionalInformation?: string;
1238
- PartyType?: PartyType | string;
1238
+ PartyType?: PartyType;
1239
1239
  BusinessName?: string;
1240
1240
  FirstName?: string;
1241
1241
  MiddleName?: string;
1242
1242
  LastName?: string;
1243
1243
  BirthDate?: string;
1244
- Gender?: Gender | string;
1244
+ Gender?: Gender;
1245
1245
  PhoneNumber?: string;
1246
1246
  MobilePhoneNumber?: string;
1247
1247
  HomePhoneNumber?: string;
@@ -1285,7 +1285,7 @@ export interface UpdateCalculatedAttributeDefinitionResponse {
1285
1285
  Description?: string;
1286
1286
  CreatedAt?: Date;
1287
1287
  LastUpdatedAt?: Date;
1288
- Statistic?: Statistic | string;
1288
+ Statistic?: Statistic;
1289
1289
  Conditions?: Conditions;
1290
1290
  AttributeDetails?: AttributeDetails;
1291
1291
  Tags?: Record<string, string>;
@@ -1327,13 +1327,13 @@ export interface UpdateProfileRequest {
1327
1327
  ProfileId: string | undefined;
1328
1328
  AdditionalInformation?: string;
1329
1329
  AccountNumber?: string;
1330
- PartyType?: PartyType | string;
1330
+ PartyType?: PartyType;
1331
1331
  BusinessName?: string;
1332
1332
  FirstName?: string;
1333
1333
  MiddleName?: string;
1334
1334
  LastName?: string;
1335
1335
  BirthDate?: string;
1336
- Gender?: Gender | string;
1336
+ Gender?: Gender;
1337
1337
  PhoneNumber?: string;
1338
1338
  MobilePhoneNumber?: string;
1339
1339
  HomePhoneNumber?: string;
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.428.0",
4
+ "version": "3.429.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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
@@ -38,7 +38,7 @@
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",