@aws-sdk/client-customer-profiles 3.52.0 → 3.53.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/CHANGELOG.md +12 -0
- package/dist-cjs/CustomerProfiles.js +75 -0
- package/dist-cjs/commands/CreateIntegrationWorkflowCommand.js +36 -0
- package/dist-cjs/commands/DeleteWorkflowCommand.js +36 -0
- package/dist-cjs/commands/GetWorkflowCommand.js +36 -0
- package/dist-cjs/commands/GetWorkflowStepsCommand.js +36 -0
- package/dist-cjs/commands/ListWorkflowsCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CustomerProfilesServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +349 -144
- package/dist-cjs/protocols/Aws_restJson1.js +997 -1353
- package/dist-es/CustomerProfiles.js +75 -0
- package/dist-es/commands/CreateIntegrationWorkflowCommand.js +39 -0
- package/dist-es/commands/DeleteWorkflowCommand.js +39 -0
- package/dist-es/commands/GetWorkflowCommand.js +39 -0
- package/dist-es/commands/GetWorkflowStepsCommand.js +39 -0
- package/dist-es/commands/ListWorkflowsCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/CustomerProfilesServiceException.js +12 -0
- package/dist-es/models/models_0.js +276 -116
- package/dist-es/protocols/Aws_restJson1.js +1569 -1539
- package/dist-types/CustomerProfiles.d.ts +37 -3
- package/dist-types/CustomerProfilesClient.d.ts +7 -2
- package/dist-types/commands/CreateIntegrationWorkflowCommand.d.ts +37 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +35 -0
- package/dist-types/commands/GetMatchesCommand.d.ts +0 -3
- package/dist-types/commands/GetWorkflowCommand.d.ts +35 -0
- package/dist-types/commands/GetWorkflowStepsCommand.d.ts +35 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CustomerProfilesServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +986 -477
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +25 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/CreateIntegrationWorkflowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetWorkflowStepsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CustomerProfilesServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +549 -254
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +25 -25
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CustomerProfilesServiceException as __BaseException } from "./CustomerProfilesServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
export interface AddProfileKeyRequest {
|
|
9
12
|
|
|
@@ -30,28 +33,36 @@ export declare namespace AddProfileKeyResponse {
|
|
|
30
33
|
const filterSensitiveLog: (obj: AddProfileKeyResponse) => any;
|
|
31
34
|
}
|
|
32
35
|
|
|
33
|
-
export
|
|
34
|
-
name: "BadRequestException";
|
|
35
|
-
$fault: "client";
|
|
36
|
+
export declare class BadRequestException extends __BaseException {
|
|
37
|
+
readonly name: "BadRequestException";
|
|
38
|
+
readonly $fault: "client";
|
|
36
39
|
Message?: string;
|
|
40
|
+
|
|
41
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
37
42
|
}
|
|
38
43
|
|
|
39
|
-
export
|
|
40
|
-
name: "InternalServerException";
|
|
41
|
-
$fault: "server";
|
|
44
|
+
export declare class InternalServerException extends __BaseException {
|
|
45
|
+
readonly name: "InternalServerException";
|
|
46
|
+
readonly $fault: "server";
|
|
42
47
|
Message?: string;
|
|
48
|
+
|
|
49
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
43
50
|
}
|
|
44
51
|
|
|
45
|
-
export
|
|
46
|
-
name: "ResourceNotFoundException";
|
|
47
|
-
$fault: "client";
|
|
52
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
53
|
+
readonly name: "ResourceNotFoundException";
|
|
54
|
+
readonly $fault: "client";
|
|
48
55
|
Message?: string;
|
|
56
|
+
|
|
57
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
49
58
|
}
|
|
50
59
|
|
|
51
|
-
export
|
|
52
|
-
name: "ThrottlingException";
|
|
53
|
-
$fault: "client";
|
|
60
|
+
export declare class ThrottlingException extends __BaseException {
|
|
61
|
+
readonly name: "ThrottlingException";
|
|
62
|
+
readonly $fault: "client";
|
|
54
63
|
Message?: string;
|
|
64
|
+
|
|
65
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
55
66
|
}
|
|
56
67
|
|
|
57
68
|
export interface Address {
|
|
@@ -80,42 +91,115 @@ export declare namespace Address {
|
|
|
80
91
|
|
|
81
92
|
const filterSensitiveLog: (obj: Address) => any;
|
|
82
93
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
94
|
+
|
|
95
|
+
export interface Batch {
|
|
96
|
+
|
|
97
|
+
StartTime: Date | undefined;
|
|
98
|
+
|
|
99
|
+
EndTime: Date | undefined;
|
|
100
|
+
}
|
|
101
|
+
export declare namespace Batch {
|
|
102
|
+
|
|
103
|
+
const filterSensitiveLog: (obj: Batch) => any;
|
|
104
|
+
}
|
|
105
|
+
export declare enum SourceConnectorType {
|
|
106
|
+
MARKETO = "Marketo",
|
|
107
|
+
S3 = "S3",
|
|
108
|
+
SALESFORCE = "Salesforce",
|
|
109
|
+
SERVICENOW = "Servicenow",
|
|
110
|
+
ZENDESK = "Zendesk"
|
|
86
111
|
}
|
|
87
112
|
|
|
88
|
-
export interface
|
|
113
|
+
export interface IncrementalPullConfig {
|
|
89
114
|
|
|
90
|
-
|
|
115
|
+
DatetimeTypeFieldName?: string;
|
|
116
|
+
}
|
|
117
|
+
export declare namespace IncrementalPullConfig {
|
|
91
118
|
|
|
92
|
-
|
|
119
|
+
const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
|
|
93
120
|
}
|
|
94
|
-
|
|
121
|
+
|
|
122
|
+
export interface MarketoSourceProperties {
|
|
95
123
|
|
|
96
|
-
|
|
124
|
+
Object: string | undefined;
|
|
125
|
+
}
|
|
126
|
+
export declare namespace MarketoSourceProperties {
|
|
127
|
+
|
|
128
|
+
const filterSensitiveLog: (obj: MarketoSourceProperties) => any;
|
|
97
129
|
}
|
|
98
130
|
|
|
99
|
-
export interface
|
|
131
|
+
export interface S3SourceProperties {
|
|
100
132
|
|
|
101
|
-
|
|
133
|
+
BucketName: string | undefined;
|
|
134
|
+
|
|
135
|
+
BucketPrefix?: string;
|
|
102
136
|
}
|
|
103
|
-
export declare namespace
|
|
137
|
+
export declare namespace S3SourceProperties {
|
|
104
138
|
|
|
105
|
-
const filterSensitiveLog: (obj:
|
|
139
|
+
const filterSensitiveLog: (obj: S3SourceProperties) => any;
|
|
106
140
|
}
|
|
107
141
|
|
|
108
|
-
export interface
|
|
142
|
+
export interface SalesforceSourceProperties {
|
|
109
143
|
|
|
110
|
-
|
|
144
|
+
Object: string | undefined;
|
|
111
145
|
|
|
112
|
-
|
|
146
|
+
EnableDynamicFieldUpdate?: boolean;
|
|
113
147
|
|
|
114
|
-
|
|
148
|
+
IncludeDeletedRecords?: boolean;
|
|
115
149
|
}
|
|
116
|
-
export declare namespace
|
|
150
|
+
export declare namespace SalesforceSourceProperties {
|
|
117
151
|
|
|
118
|
-
const filterSensitiveLog: (obj:
|
|
152
|
+
const filterSensitiveLog: (obj: SalesforceSourceProperties) => any;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export interface ServiceNowSourceProperties {
|
|
156
|
+
|
|
157
|
+
Object: string | undefined;
|
|
158
|
+
}
|
|
159
|
+
export declare namespace ServiceNowSourceProperties {
|
|
160
|
+
|
|
161
|
+
const filterSensitiveLog: (obj: ServiceNowSourceProperties) => any;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export interface ZendeskSourceProperties {
|
|
165
|
+
|
|
166
|
+
Object: string | undefined;
|
|
167
|
+
}
|
|
168
|
+
export declare namespace ZendeskSourceProperties {
|
|
169
|
+
|
|
170
|
+
const filterSensitiveLog: (obj: ZendeskSourceProperties) => any;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface SourceConnectorProperties {
|
|
174
|
+
|
|
175
|
+
Marketo?: MarketoSourceProperties;
|
|
176
|
+
|
|
177
|
+
S3?: S3SourceProperties;
|
|
178
|
+
|
|
179
|
+
Salesforce?: SalesforceSourceProperties;
|
|
180
|
+
|
|
181
|
+
ServiceNow?: ServiceNowSourceProperties;
|
|
182
|
+
|
|
183
|
+
Zendesk?: ZendeskSourceProperties;
|
|
184
|
+
}
|
|
185
|
+
export declare namespace SourceConnectorProperties {
|
|
186
|
+
|
|
187
|
+
const filterSensitiveLog: (obj: SourceConnectorProperties) => any;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface SourceFlowConfig {
|
|
191
|
+
|
|
192
|
+
ConnectorProfileName?: string;
|
|
193
|
+
|
|
194
|
+
ConnectorType: SourceConnectorType | string | undefined;
|
|
195
|
+
|
|
196
|
+
IncrementalPullConfig?: IncrementalPullConfig;
|
|
197
|
+
|
|
198
|
+
SourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
199
|
+
}
|
|
200
|
+
export declare namespace SourceFlowConfig {
|
|
201
|
+
|
|
202
|
+
const filterSensitiveLog: (obj: SourceFlowConfig) => any;
|
|
119
203
|
}
|
|
120
204
|
export declare enum MarketoConnectorOperator {
|
|
121
205
|
ADDITION = "ADDITION",
|
|
@@ -236,6 +320,225 @@ export declare namespace ConnectorOperator {
|
|
|
236
320
|
|
|
237
321
|
const filterSensitiveLog: (obj: ConnectorOperator) => any;
|
|
238
322
|
}
|
|
323
|
+
export declare enum OperatorPropertiesKeys {
|
|
324
|
+
CONCAT_FORMAT = "CONCAT_FORMAT",
|
|
325
|
+
DATA_TYPE = "DATA_TYPE",
|
|
326
|
+
DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
|
|
327
|
+
LOWER_BOUND = "LOWER_BOUND",
|
|
328
|
+
MASK_LENGTH = "MASK_LENGTH",
|
|
329
|
+
MASK_VALUE = "MASK_VALUE",
|
|
330
|
+
MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
|
|
331
|
+
SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
|
|
332
|
+
SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
|
|
333
|
+
TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
|
|
334
|
+
UPPER_BOUND = "UPPER_BOUND",
|
|
335
|
+
VALIDATION_ACTION = "VALIDATION_ACTION",
|
|
336
|
+
VALUE = "VALUE",
|
|
337
|
+
VALUES = "VALUES"
|
|
338
|
+
}
|
|
339
|
+
export declare enum TaskType {
|
|
340
|
+
ARITHMETIC = "Arithmetic",
|
|
341
|
+
FILTER = "Filter",
|
|
342
|
+
MAP = "Map",
|
|
343
|
+
MASK = "Mask",
|
|
344
|
+
MERGE = "Merge",
|
|
345
|
+
TRUNCATE = "Truncate",
|
|
346
|
+
VALIDATE = "Validate"
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
export interface Task {
|
|
350
|
+
|
|
351
|
+
ConnectorOperator?: ConnectorOperator;
|
|
352
|
+
|
|
353
|
+
DestinationField?: string;
|
|
354
|
+
|
|
355
|
+
SourceFields: string[] | undefined;
|
|
356
|
+
|
|
357
|
+
TaskProperties?: {
|
|
358
|
+
[key: string]: string;
|
|
359
|
+
};
|
|
360
|
+
|
|
361
|
+
TaskType: TaskType | string | undefined;
|
|
362
|
+
}
|
|
363
|
+
export declare namespace Task {
|
|
364
|
+
|
|
365
|
+
const filterSensitiveLog: (obj: Task) => any;
|
|
366
|
+
}
|
|
367
|
+
export declare enum DataPullMode {
|
|
368
|
+
COMPLETE = "Complete",
|
|
369
|
+
INCREMENTAL = "Incremental"
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
export interface ScheduledTriggerProperties {
|
|
373
|
+
|
|
374
|
+
ScheduleExpression: string | undefined;
|
|
375
|
+
|
|
376
|
+
DataPullMode?: DataPullMode | string;
|
|
377
|
+
|
|
378
|
+
ScheduleStartTime?: Date;
|
|
379
|
+
|
|
380
|
+
ScheduleEndTime?: Date;
|
|
381
|
+
|
|
382
|
+
Timezone?: string;
|
|
383
|
+
|
|
384
|
+
ScheduleOffset?: number;
|
|
385
|
+
|
|
386
|
+
FirstExecutionFrom?: Date;
|
|
387
|
+
}
|
|
388
|
+
export declare namespace ScheduledTriggerProperties {
|
|
389
|
+
|
|
390
|
+
const filterSensitiveLog: (obj: ScheduledTriggerProperties) => any;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
export interface TriggerProperties {
|
|
394
|
+
|
|
395
|
+
Scheduled?: ScheduledTriggerProperties;
|
|
396
|
+
}
|
|
397
|
+
export declare namespace TriggerProperties {
|
|
398
|
+
|
|
399
|
+
const filterSensitiveLog: (obj: TriggerProperties) => any;
|
|
400
|
+
}
|
|
401
|
+
export declare enum TriggerType {
|
|
402
|
+
EVENT = "Event",
|
|
403
|
+
ONDEMAND = "OnDemand",
|
|
404
|
+
SCHEDULED = "Scheduled"
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export interface TriggerConfig {
|
|
408
|
+
|
|
409
|
+
TriggerType: TriggerType | string | undefined;
|
|
410
|
+
|
|
411
|
+
TriggerProperties?: TriggerProperties;
|
|
412
|
+
}
|
|
413
|
+
export declare namespace TriggerConfig {
|
|
414
|
+
|
|
415
|
+
const filterSensitiveLog: (obj: TriggerConfig) => any;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
export interface FlowDefinition {
|
|
419
|
+
|
|
420
|
+
Description?: string;
|
|
421
|
+
|
|
422
|
+
FlowName: string | undefined;
|
|
423
|
+
|
|
424
|
+
KmsArn: string | undefined;
|
|
425
|
+
|
|
426
|
+
SourceFlowConfig: SourceFlowConfig | undefined;
|
|
427
|
+
|
|
428
|
+
Tasks: Task[] | undefined;
|
|
429
|
+
|
|
430
|
+
TriggerConfig: TriggerConfig | undefined;
|
|
431
|
+
}
|
|
432
|
+
export declare namespace FlowDefinition {
|
|
433
|
+
|
|
434
|
+
const filterSensitiveLog: (obj: FlowDefinition) => any;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
export interface AppflowIntegration {
|
|
438
|
+
|
|
439
|
+
FlowDefinition: FlowDefinition | undefined;
|
|
440
|
+
|
|
441
|
+
Batches?: Batch[];
|
|
442
|
+
}
|
|
443
|
+
export declare namespace AppflowIntegration {
|
|
444
|
+
|
|
445
|
+
const filterSensitiveLog: (obj: AppflowIntegration) => any;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
export interface AppflowIntegrationWorkflowAttributes {
|
|
449
|
+
|
|
450
|
+
SourceConnectorType: SourceConnectorType | string | undefined;
|
|
451
|
+
|
|
452
|
+
ConnectorProfileName: string | undefined;
|
|
453
|
+
|
|
454
|
+
RoleArn?: string;
|
|
455
|
+
}
|
|
456
|
+
export declare namespace AppflowIntegrationWorkflowAttributes {
|
|
457
|
+
|
|
458
|
+
const filterSensitiveLog: (obj: AppflowIntegrationWorkflowAttributes) => any;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
export interface AppflowIntegrationWorkflowMetrics {
|
|
462
|
+
|
|
463
|
+
RecordsProcessed: number | undefined;
|
|
464
|
+
|
|
465
|
+
StepsCompleted: number | undefined;
|
|
466
|
+
|
|
467
|
+
TotalSteps: number | undefined;
|
|
468
|
+
}
|
|
469
|
+
export declare namespace AppflowIntegrationWorkflowMetrics {
|
|
470
|
+
|
|
471
|
+
const filterSensitiveLog: (obj: AppflowIntegrationWorkflowMetrics) => any;
|
|
472
|
+
}
|
|
473
|
+
export declare enum Status {
|
|
474
|
+
CANCELLED = "CANCELLED",
|
|
475
|
+
COMPLETE = "COMPLETE",
|
|
476
|
+
FAILED = "FAILED",
|
|
477
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
478
|
+
NOT_STARTED = "NOT_STARTED",
|
|
479
|
+
RETRY = "RETRY",
|
|
480
|
+
SPLIT = "SPLIT"
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
export interface AppflowIntegrationWorkflowStep {
|
|
484
|
+
|
|
485
|
+
FlowName: string | undefined;
|
|
486
|
+
|
|
487
|
+
Status: Status | string | undefined;
|
|
488
|
+
|
|
489
|
+
ExecutionMessage: string | undefined;
|
|
490
|
+
|
|
491
|
+
RecordsProcessed: number | undefined;
|
|
492
|
+
|
|
493
|
+
BatchRecordsStartTime: string | undefined;
|
|
494
|
+
|
|
495
|
+
BatchRecordsEndTime: string | undefined;
|
|
496
|
+
|
|
497
|
+
CreatedAt: Date | undefined;
|
|
498
|
+
|
|
499
|
+
LastUpdatedAt: Date | undefined;
|
|
500
|
+
}
|
|
501
|
+
export declare namespace AppflowIntegrationWorkflowStep {
|
|
502
|
+
|
|
503
|
+
const filterSensitiveLog: (obj: AppflowIntegrationWorkflowStep) => any;
|
|
504
|
+
}
|
|
505
|
+
export declare enum ConflictResolvingModel {
|
|
506
|
+
RECENCY = "RECENCY",
|
|
507
|
+
SOURCE = "SOURCE"
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
export interface ConflictResolution {
|
|
511
|
+
|
|
512
|
+
ConflictResolvingModel: ConflictResolvingModel | string | undefined;
|
|
513
|
+
|
|
514
|
+
SourceName?: string;
|
|
515
|
+
}
|
|
516
|
+
export declare namespace ConflictResolution {
|
|
517
|
+
|
|
518
|
+
const filterSensitiveLog: (obj: ConflictResolution) => any;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
export interface Consolidation {
|
|
522
|
+
|
|
523
|
+
MatchingAttributesList: string[][] | undefined;
|
|
524
|
+
}
|
|
525
|
+
export declare namespace Consolidation {
|
|
526
|
+
|
|
527
|
+
const filterSensitiveLog: (obj: Consolidation) => any;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
export interface AutoMerging {
|
|
531
|
+
|
|
532
|
+
Enabled: boolean | undefined;
|
|
533
|
+
|
|
534
|
+
Consolidation?: Consolidation;
|
|
535
|
+
|
|
536
|
+
ConflictResolution?: ConflictResolution;
|
|
537
|
+
}
|
|
538
|
+
export declare namespace AutoMerging {
|
|
539
|
+
|
|
540
|
+
const filterSensitiveLog: (obj: AutoMerging) => any;
|
|
541
|
+
}
|
|
239
542
|
|
|
240
543
|
export interface S3ExportingConfig {
|
|
241
544
|
|
|
@@ -350,6 +653,48 @@ export declare namespace CreateDomainResponse {
|
|
|
350
653
|
|
|
351
654
|
const filterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
352
655
|
}
|
|
656
|
+
|
|
657
|
+
export interface IntegrationConfig {
|
|
658
|
+
|
|
659
|
+
AppflowIntegration?: AppflowIntegration;
|
|
660
|
+
}
|
|
661
|
+
export declare namespace IntegrationConfig {
|
|
662
|
+
|
|
663
|
+
const filterSensitiveLog: (obj: IntegrationConfig) => any;
|
|
664
|
+
}
|
|
665
|
+
export declare enum WorkflowType {
|
|
666
|
+
APPFLOW_INTEGRATION = "APPFLOW_INTEGRATION"
|
|
667
|
+
}
|
|
668
|
+
export interface CreateIntegrationWorkflowRequest {
|
|
669
|
+
|
|
670
|
+
DomainName: string | undefined;
|
|
671
|
+
|
|
672
|
+
WorkflowType: WorkflowType | string | undefined;
|
|
673
|
+
|
|
674
|
+
IntegrationConfig: IntegrationConfig | undefined;
|
|
675
|
+
|
|
676
|
+
ObjectTypeName: string | undefined;
|
|
677
|
+
|
|
678
|
+
RoleArn: string | undefined;
|
|
679
|
+
|
|
680
|
+
Tags?: {
|
|
681
|
+
[key: string]: string;
|
|
682
|
+
};
|
|
683
|
+
}
|
|
684
|
+
export declare namespace CreateIntegrationWorkflowRequest {
|
|
685
|
+
|
|
686
|
+
const filterSensitiveLog: (obj: CreateIntegrationWorkflowRequest) => any;
|
|
687
|
+
}
|
|
688
|
+
export interface CreateIntegrationWorkflowResponse {
|
|
689
|
+
|
|
690
|
+
WorkflowId: string | undefined;
|
|
691
|
+
|
|
692
|
+
Message: string | undefined;
|
|
693
|
+
}
|
|
694
|
+
export declare namespace CreateIntegrationWorkflowResponse {
|
|
695
|
+
|
|
696
|
+
const filterSensitiveLog: (obj: CreateIntegrationWorkflowResponse) => any;
|
|
697
|
+
}
|
|
353
698
|
export declare enum Gender {
|
|
354
699
|
FEMALE = "FEMALE",
|
|
355
700
|
MALE = "MALE",
|
|
@@ -534,6 +879,22 @@ export declare namespace DeleteProfileObjectTypeResponse {
|
|
|
534
879
|
|
|
535
880
|
const filterSensitiveLog: (obj: DeleteProfileObjectTypeResponse) => any;
|
|
536
881
|
}
|
|
882
|
+
export interface DeleteWorkflowRequest {
|
|
883
|
+
|
|
884
|
+
DomainName: string | undefined;
|
|
885
|
+
|
|
886
|
+
WorkflowId: string | undefined;
|
|
887
|
+
}
|
|
888
|
+
export declare namespace DeleteWorkflowRequest {
|
|
889
|
+
|
|
890
|
+
const filterSensitiveLog: (obj: DeleteWorkflowRequest) => any;
|
|
891
|
+
}
|
|
892
|
+
export interface DeleteWorkflowResponse {
|
|
893
|
+
}
|
|
894
|
+
export declare namespace DeleteWorkflowResponse {
|
|
895
|
+
|
|
896
|
+
const filterSensitiveLog: (obj: DeleteWorkflowResponse) => any;
|
|
897
|
+
}
|
|
537
898
|
export interface GetAutoMergingPreviewRequest {
|
|
538
899
|
|
|
539
900
|
DomainName: string | undefined;
|
|
@@ -718,6 +1079,8 @@ export interface GetIntegrationResponse {
|
|
|
718
1079
|
ObjectTypeNames?: {
|
|
719
1080
|
[key: string]: string;
|
|
720
1081
|
};
|
|
1082
|
+
|
|
1083
|
+
WorkflowId?: string;
|
|
721
1084
|
}
|
|
722
1085
|
export declare namespace GetIntegrationResponse {
|
|
723
1086
|
|
|
@@ -869,17 +1232,104 @@ export interface GetProfileObjectTypeTemplateResponse {
|
|
|
869
1232
|
|
|
870
1233
|
SourceLastUpdatedTimestampFormat?: string;
|
|
871
1234
|
|
|
872
|
-
Fields?: {
|
|
873
|
-
[key: string]: ObjectTypeField;
|
|
874
|
-
};
|
|
1235
|
+
Fields?: {
|
|
1236
|
+
[key: string]: ObjectTypeField;
|
|
1237
|
+
};
|
|
1238
|
+
|
|
1239
|
+
Keys?: {
|
|
1240
|
+
[key: string]: ObjectTypeKey[];
|
|
1241
|
+
};
|
|
1242
|
+
}
|
|
1243
|
+
export declare namespace GetProfileObjectTypeTemplateResponse {
|
|
1244
|
+
|
|
1245
|
+
const filterSensitiveLog: (obj: GetProfileObjectTypeTemplateResponse) => any;
|
|
1246
|
+
}
|
|
1247
|
+
export interface GetWorkflowRequest {
|
|
1248
|
+
|
|
1249
|
+
DomainName: string | undefined;
|
|
1250
|
+
|
|
1251
|
+
WorkflowId: string | undefined;
|
|
1252
|
+
}
|
|
1253
|
+
export declare namespace GetWorkflowRequest {
|
|
1254
|
+
|
|
1255
|
+
const filterSensitiveLog: (obj: GetWorkflowRequest) => any;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
export interface WorkflowAttributes {
|
|
1259
|
+
|
|
1260
|
+
AppflowIntegration?: AppflowIntegrationWorkflowAttributes;
|
|
1261
|
+
}
|
|
1262
|
+
export declare namespace WorkflowAttributes {
|
|
1263
|
+
|
|
1264
|
+
const filterSensitiveLog: (obj: WorkflowAttributes) => any;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
export interface WorkflowMetrics {
|
|
1268
|
+
|
|
1269
|
+
AppflowIntegration?: AppflowIntegrationWorkflowMetrics;
|
|
1270
|
+
}
|
|
1271
|
+
export declare namespace WorkflowMetrics {
|
|
1272
|
+
|
|
1273
|
+
const filterSensitiveLog: (obj: WorkflowMetrics) => any;
|
|
1274
|
+
}
|
|
1275
|
+
export interface GetWorkflowResponse {
|
|
1276
|
+
|
|
1277
|
+
WorkflowId?: string;
|
|
1278
|
+
|
|
1279
|
+
WorkflowType?: WorkflowType | string;
|
|
1280
|
+
|
|
1281
|
+
Status?: Status | string;
|
|
1282
|
+
|
|
1283
|
+
ErrorDescription?: string;
|
|
1284
|
+
|
|
1285
|
+
StartDate?: Date;
|
|
1286
|
+
|
|
1287
|
+
LastUpdatedAt?: Date;
|
|
1288
|
+
|
|
1289
|
+
Attributes?: WorkflowAttributes;
|
|
1290
|
+
|
|
1291
|
+
Metrics?: WorkflowMetrics;
|
|
1292
|
+
}
|
|
1293
|
+
export declare namespace GetWorkflowResponse {
|
|
1294
|
+
|
|
1295
|
+
const filterSensitiveLog: (obj: GetWorkflowResponse) => any;
|
|
1296
|
+
}
|
|
1297
|
+
export interface GetWorkflowStepsRequest {
|
|
1298
|
+
|
|
1299
|
+
DomainName: string | undefined;
|
|
1300
|
+
|
|
1301
|
+
WorkflowId: string | undefined;
|
|
1302
|
+
|
|
1303
|
+
NextToken?: string;
|
|
1304
|
+
|
|
1305
|
+
MaxResults?: number;
|
|
1306
|
+
}
|
|
1307
|
+
export declare namespace GetWorkflowStepsRequest {
|
|
1308
|
+
|
|
1309
|
+
const filterSensitiveLog: (obj: GetWorkflowStepsRequest) => any;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
export interface WorkflowStepItem {
|
|
1313
|
+
|
|
1314
|
+
AppflowIntegration?: AppflowIntegrationWorkflowStep;
|
|
1315
|
+
}
|
|
1316
|
+
export declare namespace WorkflowStepItem {
|
|
1317
|
+
|
|
1318
|
+
const filterSensitiveLog: (obj: WorkflowStepItem) => any;
|
|
1319
|
+
}
|
|
1320
|
+
export interface GetWorkflowStepsResponse {
|
|
1321
|
+
|
|
1322
|
+
WorkflowId?: string;
|
|
1323
|
+
|
|
1324
|
+
WorkflowType?: WorkflowType | string;
|
|
1325
|
+
|
|
1326
|
+
Items?: WorkflowStepItem[];
|
|
875
1327
|
|
|
876
|
-
|
|
877
|
-
[key: string]: ObjectTypeKey[];
|
|
878
|
-
};
|
|
1328
|
+
NextToken?: string;
|
|
879
1329
|
}
|
|
880
|
-
export declare namespace
|
|
1330
|
+
export declare namespace GetWorkflowStepsResponse {
|
|
881
1331
|
|
|
882
|
-
const filterSensitiveLog: (obj:
|
|
1332
|
+
const filterSensitiveLog: (obj: GetWorkflowStepsResponse) => any;
|
|
883
1333
|
}
|
|
884
1334
|
export interface ListAccountIntegrationsRequest {
|
|
885
1335
|
|
|
@@ -888,6 +1338,8 @@ export interface ListAccountIntegrationsRequest {
|
|
|
888
1338
|
NextToken?: string;
|
|
889
1339
|
|
|
890
1340
|
MaxResults?: number;
|
|
1341
|
+
|
|
1342
|
+
IncludeHidden?: boolean;
|
|
891
1343
|
}
|
|
892
1344
|
export declare namespace ListAccountIntegrationsRequest {
|
|
893
1345
|
|
|
@@ -913,6 +1365,8 @@ export interface ListIntegrationItem {
|
|
|
913
1365
|
ObjectTypeNames?: {
|
|
914
1366
|
[key: string]: string;
|
|
915
1367
|
};
|
|
1368
|
+
|
|
1369
|
+
WorkflowId?: string;
|
|
916
1370
|
}
|
|
917
1371
|
export declare namespace ListIntegrationItem {
|
|
918
1372
|
|
|
@@ -1017,6 +1471,8 @@ export interface ListIntegrationsRequest {
|
|
|
1017
1471
|
NextToken?: string;
|
|
1018
1472
|
|
|
1019
1473
|
MaxResults?: number;
|
|
1474
|
+
|
|
1475
|
+
IncludeHidden?: boolean;
|
|
1020
1476
|
}
|
|
1021
1477
|
export declare namespace ListIntegrationsRequest {
|
|
1022
1478
|
|
|
@@ -1176,6 +1632,55 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
1176
1632
|
|
|
1177
1633
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1178
1634
|
}
|
|
1635
|
+
export interface ListWorkflowsRequest {
|
|
1636
|
+
|
|
1637
|
+
DomainName: string | undefined;
|
|
1638
|
+
|
|
1639
|
+
WorkflowType?: WorkflowType | string;
|
|
1640
|
+
|
|
1641
|
+
Status?: Status | string;
|
|
1642
|
+
|
|
1643
|
+
QueryStartDate?: Date;
|
|
1644
|
+
|
|
1645
|
+
QueryEndDate?: Date;
|
|
1646
|
+
|
|
1647
|
+
NextToken?: string;
|
|
1648
|
+
|
|
1649
|
+
MaxResults?: number;
|
|
1650
|
+
}
|
|
1651
|
+
export declare namespace ListWorkflowsRequest {
|
|
1652
|
+
|
|
1653
|
+
const filterSensitiveLog: (obj: ListWorkflowsRequest) => any;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
export interface ListWorkflowsItem {
|
|
1657
|
+
|
|
1658
|
+
WorkflowType: WorkflowType | string | undefined;
|
|
1659
|
+
|
|
1660
|
+
WorkflowId: string | undefined;
|
|
1661
|
+
|
|
1662
|
+
Status: Status | string | undefined;
|
|
1663
|
+
|
|
1664
|
+
StatusDescription: string | undefined;
|
|
1665
|
+
|
|
1666
|
+
CreatedAt: Date | undefined;
|
|
1667
|
+
|
|
1668
|
+
LastUpdatedAt: Date | undefined;
|
|
1669
|
+
}
|
|
1670
|
+
export declare namespace ListWorkflowsItem {
|
|
1671
|
+
|
|
1672
|
+
const filterSensitiveLog: (obj: ListWorkflowsItem) => any;
|
|
1673
|
+
}
|
|
1674
|
+
export interface ListWorkflowsResponse {
|
|
1675
|
+
|
|
1676
|
+
Items?: ListWorkflowsItem[];
|
|
1677
|
+
|
|
1678
|
+
NextToken?: string;
|
|
1679
|
+
}
|
|
1680
|
+
export declare namespace ListWorkflowsResponse {
|
|
1681
|
+
|
|
1682
|
+
const filterSensitiveLog: (obj: ListWorkflowsResponse) => any;
|
|
1683
|
+
}
|
|
1179
1684
|
|
|
1180
1685
|
export interface FieldSourceProfileIds {
|
|
1181
1686
|
|
|
@@ -1249,218 +1754,6 @@ export declare namespace MergeProfilesResponse {
|
|
|
1249
1754
|
|
|
1250
1755
|
const filterSensitiveLog: (obj: MergeProfilesResponse) => any;
|
|
1251
1756
|
}
|
|
1252
|
-
export declare enum SourceConnectorType {
|
|
1253
|
-
MARKETO = "Marketo",
|
|
1254
|
-
S3 = "S3",
|
|
1255
|
-
SALESFORCE = "Salesforce",
|
|
1256
|
-
SERVICENOW = "Servicenow",
|
|
1257
|
-
ZENDESK = "Zendesk"
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
export interface IncrementalPullConfig {
|
|
1261
|
-
|
|
1262
|
-
DatetimeTypeFieldName?: string;
|
|
1263
|
-
}
|
|
1264
|
-
export declare namespace IncrementalPullConfig {
|
|
1265
|
-
|
|
1266
|
-
const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
export interface MarketoSourceProperties {
|
|
1270
|
-
|
|
1271
|
-
Object: string | undefined;
|
|
1272
|
-
}
|
|
1273
|
-
export declare namespace MarketoSourceProperties {
|
|
1274
|
-
|
|
1275
|
-
const filterSensitiveLog: (obj: MarketoSourceProperties) => any;
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
export interface S3SourceProperties {
|
|
1279
|
-
|
|
1280
|
-
BucketName: string | undefined;
|
|
1281
|
-
|
|
1282
|
-
BucketPrefix?: string;
|
|
1283
|
-
}
|
|
1284
|
-
export declare namespace S3SourceProperties {
|
|
1285
|
-
|
|
1286
|
-
const filterSensitiveLog: (obj: S3SourceProperties) => any;
|
|
1287
|
-
}
|
|
1288
|
-
|
|
1289
|
-
export interface SalesforceSourceProperties {
|
|
1290
|
-
|
|
1291
|
-
Object: string | undefined;
|
|
1292
|
-
|
|
1293
|
-
EnableDynamicFieldUpdate?: boolean;
|
|
1294
|
-
|
|
1295
|
-
IncludeDeletedRecords?: boolean;
|
|
1296
|
-
}
|
|
1297
|
-
export declare namespace SalesforceSourceProperties {
|
|
1298
|
-
|
|
1299
|
-
const filterSensitiveLog: (obj: SalesforceSourceProperties) => any;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
export interface ServiceNowSourceProperties {
|
|
1303
|
-
|
|
1304
|
-
Object: string | undefined;
|
|
1305
|
-
}
|
|
1306
|
-
export declare namespace ServiceNowSourceProperties {
|
|
1307
|
-
|
|
1308
|
-
const filterSensitiveLog: (obj: ServiceNowSourceProperties) => any;
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
export interface ZendeskSourceProperties {
|
|
1312
|
-
|
|
1313
|
-
Object: string | undefined;
|
|
1314
|
-
}
|
|
1315
|
-
export declare namespace ZendeskSourceProperties {
|
|
1316
|
-
|
|
1317
|
-
const filterSensitiveLog: (obj: ZendeskSourceProperties) => any;
|
|
1318
|
-
}
|
|
1319
|
-
|
|
1320
|
-
export interface SourceConnectorProperties {
|
|
1321
|
-
|
|
1322
|
-
Marketo?: MarketoSourceProperties;
|
|
1323
|
-
|
|
1324
|
-
S3?: S3SourceProperties;
|
|
1325
|
-
|
|
1326
|
-
Salesforce?: SalesforceSourceProperties;
|
|
1327
|
-
|
|
1328
|
-
ServiceNow?: ServiceNowSourceProperties;
|
|
1329
|
-
|
|
1330
|
-
Zendesk?: ZendeskSourceProperties;
|
|
1331
|
-
}
|
|
1332
|
-
export declare namespace SourceConnectorProperties {
|
|
1333
|
-
|
|
1334
|
-
const filterSensitiveLog: (obj: SourceConnectorProperties) => any;
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
export interface SourceFlowConfig {
|
|
1338
|
-
|
|
1339
|
-
ConnectorProfileName?: string;
|
|
1340
|
-
|
|
1341
|
-
ConnectorType: SourceConnectorType | string | undefined;
|
|
1342
|
-
|
|
1343
|
-
IncrementalPullConfig?: IncrementalPullConfig;
|
|
1344
|
-
|
|
1345
|
-
SourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
1346
|
-
}
|
|
1347
|
-
export declare namespace SourceFlowConfig {
|
|
1348
|
-
|
|
1349
|
-
const filterSensitiveLog: (obj: SourceFlowConfig) => any;
|
|
1350
|
-
}
|
|
1351
|
-
export declare enum OperatorPropertiesKeys {
|
|
1352
|
-
CONCAT_FORMAT = "CONCAT_FORMAT",
|
|
1353
|
-
DATA_TYPE = "DATA_TYPE",
|
|
1354
|
-
DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
|
|
1355
|
-
LOWER_BOUND = "LOWER_BOUND",
|
|
1356
|
-
MASK_LENGTH = "MASK_LENGTH",
|
|
1357
|
-
MASK_VALUE = "MASK_VALUE",
|
|
1358
|
-
MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
|
|
1359
|
-
SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
|
|
1360
|
-
SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
|
|
1361
|
-
TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
|
|
1362
|
-
UPPER_BOUND = "UPPER_BOUND",
|
|
1363
|
-
VALIDATION_ACTION = "VALIDATION_ACTION",
|
|
1364
|
-
VALUE = "VALUE",
|
|
1365
|
-
VALUES = "VALUES"
|
|
1366
|
-
}
|
|
1367
|
-
export declare enum TaskType {
|
|
1368
|
-
ARITHMETIC = "Arithmetic",
|
|
1369
|
-
FILTER = "Filter",
|
|
1370
|
-
MAP = "Map",
|
|
1371
|
-
MASK = "Mask",
|
|
1372
|
-
MERGE = "Merge",
|
|
1373
|
-
TRUNCATE = "Truncate",
|
|
1374
|
-
VALIDATE = "Validate"
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
|
-
export interface Task {
|
|
1378
|
-
|
|
1379
|
-
ConnectorOperator?: ConnectorOperator;
|
|
1380
|
-
|
|
1381
|
-
DestinationField?: string;
|
|
1382
|
-
|
|
1383
|
-
SourceFields: string[] | undefined;
|
|
1384
|
-
|
|
1385
|
-
TaskProperties?: {
|
|
1386
|
-
[key: string]: string;
|
|
1387
|
-
};
|
|
1388
|
-
|
|
1389
|
-
TaskType: TaskType | string | undefined;
|
|
1390
|
-
}
|
|
1391
|
-
export declare namespace Task {
|
|
1392
|
-
|
|
1393
|
-
const filterSensitiveLog: (obj: Task) => any;
|
|
1394
|
-
}
|
|
1395
|
-
export declare enum DataPullMode {
|
|
1396
|
-
COMPLETE = "Complete",
|
|
1397
|
-
INCREMENTAL = "Incremental"
|
|
1398
|
-
}
|
|
1399
|
-
|
|
1400
|
-
export interface ScheduledTriggerProperties {
|
|
1401
|
-
|
|
1402
|
-
ScheduleExpression: string | undefined;
|
|
1403
|
-
|
|
1404
|
-
DataPullMode?: DataPullMode | string;
|
|
1405
|
-
|
|
1406
|
-
ScheduleStartTime?: Date;
|
|
1407
|
-
|
|
1408
|
-
ScheduleEndTime?: Date;
|
|
1409
|
-
|
|
1410
|
-
Timezone?: string;
|
|
1411
|
-
|
|
1412
|
-
ScheduleOffset?: number;
|
|
1413
|
-
|
|
1414
|
-
FirstExecutionFrom?: Date;
|
|
1415
|
-
}
|
|
1416
|
-
export declare namespace ScheduledTriggerProperties {
|
|
1417
|
-
|
|
1418
|
-
const filterSensitiveLog: (obj: ScheduledTriggerProperties) => any;
|
|
1419
|
-
}
|
|
1420
|
-
|
|
1421
|
-
export interface TriggerProperties {
|
|
1422
|
-
|
|
1423
|
-
Scheduled?: ScheduledTriggerProperties;
|
|
1424
|
-
}
|
|
1425
|
-
export declare namespace TriggerProperties {
|
|
1426
|
-
|
|
1427
|
-
const filterSensitiveLog: (obj: TriggerProperties) => any;
|
|
1428
|
-
}
|
|
1429
|
-
export declare enum TriggerType {
|
|
1430
|
-
EVENT = "Event",
|
|
1431
|
-
ONDEMAND = "OnDemand",
|
|
1432
|
-
SCHEDULED = "Scheduled"
|
|
1433
|
-
}
|
|
1434
|
-
|
|
1435
|
-
export interface TriggerConfig {
|
|
1436
|
-
|
|
1437
|
-
TriggerType: TriggerType | string | undefined;
|
|
1438
|
-
|
|
1439
|
-
TriggerProperties?: TriggerProperties;
|
|
1440
|
-
}
|
|
1441
|
-
export declare namespace TriggerConfig {
|
|
1442
|
-
|
|
1443
|
-
const filterSensitiveLog: (obj: TriggerConfig) => any;
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
export interface FlowDefinition {
|
|
1447
|
-
|
|
1448
|
-
Description?: string;
|
|
1449
|
-
|
|
1450
|
-
FlowName: string | undefined;
|
|
1451
|
-
|
|
1452
|
-
KmsArn: string | undefined;
|
|
1453
|
-
|
|
1454
|
-
SourceFlowConfig: SourceFlowConfig | undefined;
|
|
1455
|
-
|
|
1456
|
-
Tasks: Task[] | undefined;
|
|
1457
|
-
|
|
1458
|
-
TriggerConfig: TriggerConfig | undefined;
|
|
1459
|
-
}
|
|
1460
|
-
export declare namespace FlowDefinition {
|
|
1461
|
-
|
|
1462
|
-
const filterSensitiveLog: (obj: FlowDefinition) => any;
|
|
1463
|
-
}
|
|
1464
1757
|
export interface PutIntegrationRequest {
|
|
1465
1758
|
|
|
1466
1759
|
DomainName: string | undefined;
|
|
@@ -1502,6 +1795,8 @@ export interface PutIntegrationResponse {
|
|
|
1502
1795
|
ObjectTypeNames?: {
|
|
1503
1796
|
[key: string]: string;
|
|
1504
1797
|
};
|
|
1798
|
+
|
|
1799
|
+
WorkflowId?: string;
|
|
1505
1800
|
}
|
|
1506
1801
|
export declare namespace PutIntegrationResponse {
|
|
1507
1802
|
|