@aws-sdk/client-appintegrations 3.624.0 → 3.626.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 (31) hide show
  1. package/README.md +47 -4
  2. package/dist-cjs/index.js +120 -1
  3. package/dist-es/AppIntegrations.js +4 -0
  4. package/dist-es/commands/CreateDataIntegrationAssociationCommand.js +24 -0
  5. package/dist-es/commands/UpdateDataIntegrationAssociationCommand.js +24 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +9 -0
  8. package/dist-es/protocols/Aws_restJson1.js +59 -0
  9. package/dist-types/AppIntegrations.d.ts +46 -5
  10. package/dist-types/AppIntegrationsClient.d.ts +36 -7
  11. package/dist-types/commands/CreateApplicationCommand.d.ts +1 -2
  12. package/dist-types/commands/CreateDataIntegrationAssociationCommand.d.ts +104 -0
  13. package/dist-types/commands/CreateDataIntegrationCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -1
  15. package/dist-types/commands/GetApplicationCommand.d.ts +1 -2
  16. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -2
  17. package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +17 -0
  18. package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -2
  19. package/dist-types/commands/UpdateDataIntegrationAssociationCommand.d.ts +91 -0
  20. package/dist-types/commands/index.d.ts +2 -0
  21. package/dist-types/index.d.ts +32 -5
  22. package/dist-types/models/models_0.d.ts +197 -18
  23. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  24. package/dist-types/ts3.4/AppIntegrations.d.ts +34 -0
  25. package/dist-types/ts3.4/AppIntegrationsClient.d.ts +12 -0
  26. package/dist-types/ts3.4/commands/CreateDataIntegrationAssociationCommand.d.ts +40 -0
  27. package/dist-types/ts3.4/commands/UpdateDataIntegrationAssociationCommand.d.ts +40 -0
  28. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +56 -9
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  31. package/package.json +1 -1
@@ -280,7 +280,7 @@ export interface CreateDataIntegrationRequest {
280
280
  */
281
281
  Description?: string;
282
282
  /**
283
- * <p>The KMS key for the DataIntegration.</p>
283
+ * <p>The KMS key ARN for the DataIntegration.</p>
284
284
  * @public
285
285
  */
286
286
  KmsKey: string | undefined;
@@ -288,7 +288,7 @@ export interface CreateDataIntegrationRequest {
288
288
  * <p>The URI of the data source.</p>
289
289
  * @public
290
290
  */
291
- SourceURI: string | undefined;
291
+ SourceURI?: string;
292
292
  /**
293
293
  * <p>The name of the data and how often it should be pulled from the source.</p>
294
294
  * @public
@@ -343,7 +343,7 @@ export interface CreateDataIntegrationResponse {
343
343
  */
344
344
  Description?: string;
345
345
  /**
346
- * <p>The KMS key for the DataIntegration.</p>
346
+ * <p>The KMS key ARN for the DataIntegration.</p>
347
347
  * @public
348
348
  */
349
349
  KmsKey?: string;
@@ -381,6 +381,129 @@ export interface CreateDataIntegrationResponse {
381
381
  */
382
382
  ObjectConfiguration?: Record<string, Record<string, string[]>>;
383
383
  }
384
+ /**
385
+ * @public
386
+ * @enum
387
+ */
388
+ export declare const ExecutionMode: {
389
+ readonly ON_DEMAND: "ON_DEMAND";
390
+ readonly SCHEDULED: "SCHEDULED";
391
+ };
392
+ /**
393
+ * @public
394
+ */
395
+ export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
396
+ /**
397
+ * <p>The start and end time for data pull from the source.</p>
398
+ * @public
399
+ */
400
+ export interface OnDemandConfiguration {
401
+ /**
402
+ * <p>The start time for data pull from the source as an Unix/epoch string in
403
+ * milliseconds</p>
404
+ * @public
405
+ */
406
+ StartTime: string | undefined;
407
+ /**
408
+ * <p>The end time for data pull from the source as an Unix/epoch string in
409
+ * milliseconds</p>
410
+ * @public
411
+ */
412
+ EndTime?: string;
413
+ }
414
+ /**
415
+ * <p>The configuration for how the files should be pulled from the source.</p>
416
+ * @public
417
+ */
418
+ export interface ExecutionConfiguration {
419
+ /**
420
+ * <p>The mode for data import/export execution.</p>
421
+ * @public
422
+ */
423
+ ExecutionMode: ExecutionMode | undefined;
424
+ /**
425
+ * <p>The start and end time for data pull from the source.</p>
426
+ * @public
427
+ */
428
+ OnDemandConfiguration?: OnDemandConfiguration;
429
+ /**
430
+ * <p>The name of the data and how often it should be pulled from the source.</p>
431
+ * @public
432
+ */
433
+ ScheduleConfiguration?: ScheduleConfiguration;
434
+ }
435
+ /**
436
+ * @public
437
+ */
438
+ export interface CreateDataIntegrationAssociationRequest {
439
+ /**
440
+ * <p>A unique identifier for the DataIntegration.</p>
441
+ * @public
442
+ */
443
+ DataIntegrationIdentifier: string | undefined;
444
+ /**
445
+ * <p>The identifier for the client that is associated with the DataIntegration
446
+ * association.</p>
447
+ * @public
448
+ */
449
+ ClientId?: string;
450
+ /**
451
+ * <p>The configuration for what data should be pulled from the source.</p>
452
+ * @public
453
+ */
454
+ ObjectConfiguration?: Record<string, Record<string, string[]>>;
455
+ /**
456
+ * <p>The URI of the data destination.</p>
457
+ * @public
458
+ */
459
+ DestinationURI?: string;
460
+ /**
461
+ * <p>The mapping of metadata to be extracted from the data.</p>
462
+ * @public
463
+ */
464
+ ClientAssociationMetadata?: Record<string, string>;
465
+ /**
466
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
467
+ * request. If not provided, the Amazon Web Services
468
+ * SDK populates this field. For more information about idempotency, see
469
+ * <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
470
+ * @public
471
+ */
472
+ ClientToken?: string;
473
+ /**
474
+ * <p>The configuration for how the files should be pulled from the source.</p>
475
+ * @public
476
+ */
477
+ ExecutionConfiguration?: ExecutionConfiguration;
478
+ }
479
+ /**
480
+ * @public
481
+ */
482
+ export interface CreateDataIntegrationAssociationResponse {
483
+ /**
484
+ * <p>A unique identifier. for the DataIntegrationAssociation.</p>
485
+ * @public
486
+ */
487
+ DataIntegrationAssociationId?: string;
488
+ /**
489
+ * <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
490
+ * @public
491
+ */
492
+ DataIntegrationArn?: string;
493
+ }
494
+ /**
495
+ * <p>The specified resource was not found.</p>
496
+ * @public
497
+ */
498
+ export declare class ResourceNotFoundException extends __BaseException {
499
+ readonly name: "ResourceNotFoundException";
500
+ readonly $fault: "client";
501
+ Message?: string;
502
+ /**
503
+ * @internal
504
+ */
505
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
506
+ }
384
507
  /**
385
508
  * <p>The event filter.</p>
386
509
  * @public
@@ -455,19 +578,6 @@ export interface DeleteApplicationRequest {
455
578
  */
456
579
  export interface DeleteApplicationResponse {
457
580
  }
458
- /**
459
- * <p>The specified resource was not found.</p>
460
- * @public
461
- */
462
- export declare class ResourceNotFoundException extends __BaseException {
463
- readonly name: "ResourceNotFoundException";
464
- readonly $fault: "client";
465
- Message?: string;
466
- /**
467
- * @internal
468
- */
469
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
470
- }
471
581
  /**
472
582
  * @public
473
583
  */
@@ -607,12 +717,12 @@ export interface GetDataIntegrationResponse {
607
717
  */
608
718
  Name?: string;
609
719
  /**
610
- * <p>The KMS key for the DataIntegration.</p>
720
+ * <p>The KMS key ARN for the DataIntegration.</p>
611
721
  * @public
612
722
  */
613
723
  Description?: string;
614
724
  /**
615
- * <p>The KMS key for the DataIntegration.</p>
725
+ * <p>The KMS key ARN for the DataIntegration.</p>
616
726
  * @public
617
727
  */
618
728
  KmsKey?: string;
@@ -832,6 +942,35 @@ export interface ListDataIntegrationAssociationsRequest {
832
942
  */
833
943
  MaxResults?: number;
834
944
  }
945
+ /**
946
+ * @public
947
+ * @enum
948
+ */
949
+ export declare const ExecutionStatus: {
950
+ readonly COMPLETED: "COMPLETED";
951
+ readonly FAILED: "FAILED";
952
+ readonly IN_PROGRESS: "IN_PROGRESS";
953
+ };
954
+ /**
955
+ * @public
956
+ */
957
+ export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
958
+ /**
959
+ * <p>The execution status of the last job.</p>
960
+ * @public
961
+ */
962
+ export interface LastExecutionStatus {
963
+ /**
964
+ * <p>The job status enum string.</p>
965
+ * @public
966
+ */
967
+ ExecutionStatus?: ExecutionStatus;
968
+ /**
969
+ * <p>The status message of a job.</p>
970
+ * @public
971
+ */
972
+ StatusMessage?: string;
973
+ }
835
974
  /**
836
975
  * <p>Summary information about the DataIntegration association.</p>
837
976
  * @public
@@ -853,6 +992,21 @@ export interface DataIntegrationAssociationSummary {
853
992
  * @public
854
993
  */
855
994
  ClientId?: string;
995
+ /**
996
+ * <p>The URI of the data destination.</p>
997
+ * @public
998
+ */
999
+ DestinationURI?: string;
1000
+ /**
1001
+ * <p>The execution status of the last job.</p>
1002
+ * @public
1003
+ */
1004
+ LastExecutionStatus?: LastExecutionStatus;
1005
+ /**
1006
+ * <p>The configuration for how the files should be pulled from the source.</p>
1007
+ * @public
1008
+ */
1009
+ ExecutionConfiguration?: ExecutionConfiguration;
856
1010
  }
857
1011
  /**
858
1012
  * @public
@@ -1194,6 +1348,31 @@ export interface UpdateDataIntegrationRequest {
1194
1348
  */
1195
1349
  export interface UpdateDataIntegrationResponse {
1196
1350
  }
1351
+ /**
1352
+ * @public
1353
+ */
1354
+ export interface UpdateDataIntegrationAssociationRequest {
1355
+ /**
1356
+ * <p>A unique identifier for the DataIntegration.</p>
1357
+ * @public
1358
+ */
1359
+ DataIntegrationIdentifier: string | undefined;
1360
+ /**
1361
+ * <p>A unique identifier. of the DataIntegrationAssociation resource</p>
1362
+ * @public
1363
+ */
1364
+ DataIntegrationAssociationIdentifier: string | undefined;
1365
+ /**
1366
+ * <p>The configuration for how the files should be pulled from the source.</p>
1367
+ * @public
1368
+ */
1369
+ ExecutionConfiguration: ExecutionConfiguration | undefined;
1370
+ }
1371
+ /**
1372
+ * @public
1373
+ */
1374
+ export interface UpdateDataIntegrationAssociationResponse {
1375
+ }
1197
1376
  /**
1198
1377
  * @public
1199
1378
  */
@@ -1,6 +1,7 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
4
+ import { CreateDataIntegrationAssociationCommandInput, CreateDataIntegrationAssociationCommandOutput } from "../commands/CreateDataIntegrationAssociationCommand";
4
5
  import { CreateDataIntegrationCommandInput, CreateDataIntegrationCommandOutput } from "../commands/CreateDataIntegrationCommand";
5
6
  import { CreateEventIntegrationCommandInput, CreateEventIntegrationCommandOutput } from "../commands/CreateEventIntegrationCommand";
6
7
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
@@ -19,6 +20,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
19
20
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
20
21
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
21
22
  import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "../commands/UpdateApplicationCommand";
23
+ import { UpdateDataIntegrationAssociationCommandInput, UpdateDataIntegrationAssociationCommandOutput } from "../commands/UpdateDataIntegrationAssociationCommand";
22
24
  import { UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput } from "../commands/UpdateDataIntegrationCommand";
23
25
  import { UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput } from "../commands/UpdateEventIntegrationCommand";
24
26
  /**
@@ -29,6 +31,10 @@ export declare const se_CreateApplicationCommand: (input: CreateApplicationComma
29
31
  * serializeAws_restJson1CreateDataIntegrationCommand
30
32
  */
31
33
  export declare const se_CreateDataIntegrationCommand: (input: CreateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ /**
35
+ * serializeAws_restJson1CreateDataIntegrationAssociationCommand
36
+ */
37
+ export declare const se_CreateDataIntegrationAssociationCommand: (input: CreateDataIntegrationAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
38
  /**
33
39
  * serializeAws_restJson1CreateEventIntegrationCommand
34
40
  */
@@ -101,6 +107,10 @@ export declare const se_UpdateApplicationCommand: (input: UpdateApplicationComma
101
107
  * serializeAws_restJson1UpdateDataIntegrationCommand
102
108
  */
103
109
  export declare const se_UpdateDataIntegrationCommand: (input: UpdateDataIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_restJson1UpdateDataIntegrationAssociationCommand
112
+ */
113
+ export declare const se_UpdateDataIntegrationAssociationCommand: (input: UpdateDataIntegrationAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
114
  /**
105
115
  * serializeAws_restJson1UpdateEventIntegrationCommand
106
116
  */
@@ -113,6 +123,10 @@ export declare const de_CreateApplicationCommand: (output: __HttpResponse, conte
113
123
  * deserializeAws_restJson1CreateDataIntegrationCommand
114
124
  */
115
125
  export declare const de_CreateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationCommandOutput>;
126
+ /**
127
+ * deserializeAws_restJson1CreateDataIntegrationAssociationCommand
128
+ */
129
+ export declare const de_CreateDataIntegrationAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationAssociationCommandOutput>;
116
130
  /**
117
131
  * deserializeAws_restJson1CreateEventIntegrationCommand
118
132
  */
@@ -185,6 +199,10 @@ export declare const de_UpdateApplicationCommand: (output: __HttpResponse, conte
185
199
  * deserializeAws_restJson1UpdateDataIntegrationCommand
186
200
  */
187
201
  export declare const de_UpdateDataIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationCommandOutput>;
202
+ /**
203
+ * deserializeAws_restJson1UpdateDataIntegrationAssociationCommand
204
+ */
205
+ export declare const de_UpdateDataIntegrationAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationAssociationCommandOutput>;
188
206
  /**
189
207
  * deserializeAws_restJson1UpdateEventIntegrationCommand
190
208
  */
@@ -4,6 +4,10 @@ import {
4
4
  CreateApplicationCommandInput,
5
5
  CreateApplicationCommandOutput,
6
6
  } from "./commands/CreateApplicationCommand";
7
+ import {
8
+ CreateDataIntegrationAssociationCommandInput,
9
+ CreateDataIntegrationAssociationCommandOutput,
10
+ } from "./commands/CreateDataIntegrationAssociationCommand";
7
11
  import {
8
12
  CreateDataIntegrationCommandInput,
9
13
  CreateDataIntegrationCommandOutput,
@@ -76,6 +80,10 @@ import {
76
80
  UpdateApplicationCommandInput,
77
81
  UpdateApplicationCommandOutput,
78
82
  } from "./commands/UpdateApplicationCommand";
83
+ import {
84
+ UpdateDataIntegrationAssociationCommandInput,
85
+ UpdateDataIntegrationAssociationCommandOutput,
86
+ } from "./commands/UpdateDataIntegrationAssociationCommand";
79
87
  import {
80
88
  UpdateDataIntegrationCommandInput,
81
89
  UpdateDataIntegrationCommandOutput,
@@ -111,6 +119,19 @@ export interface AppIntegrations {
111
119
  options: __HttpHandlerOptions,
112
120
  cb: (err: any, data?: CreateDataIntegrationCommandOutput) => void
113
121
  ): void;
122
+ createDataIntegrationAssociation(
123
+ args: CreateDataIntegrationAssociationCommandInput,
124
+ options?: __HttpHandlerOptions
125
+ ): Promise<CreateDataIntegrationAssociationCommandOutput>;
126
+ createDataIntegrationAssociation(
127
+ args: CreateDataIntegrationAssociationCommandInput,
128
+ cb: (err: any, data?: CreateDataIntegrationAssociationCommandOutput) => void
129
+ ): void;
130
+ createDataIntegrationAssociation(
131
+ args: CreateDataIntegrationAssociationCommandInput,
132
+ options: __HttpHandlerOptions,
133
+ cb: (err: any, data?: CreateDataIntegrationAssociationCommandOutput) => void
134
+ ): void;
114
135
  createEventIntegration(
115
136
  args: CreateEventIntegrationCommandInput,
116
137
  options?: __HttpHandlerOptions
@@ -348,6 +369,19 @@ export interface AppIntegrations {
348
369
  options: __HttpHandlerOptions,
349
370
  cb: (err: any, data?: UpdateDataIntegrationCommandOutput) => void
350
371
  ): void;
372
+ updateDataIntegrationAssociation(
373
+ args: UpdateDataIntegrationAssociationCommandInput,
374
+ options?: __HttpHandlerOptions
375
+ ): Promise<UpdateDataIntegrationAssociationCommandOutput>;
376
+ updateDataIntegrationAssociation(
377
+ args: UpdateDataIntegrationAssociationCommandInput,
378
+ cb: (err: any, data?: UpdateDataIntegrationAssociationCommandOutput) => void
379
+ ): void;
380
+ updateDataIntegrationAssociation(
381
+ args: UpdateDataIntegrationAssociationCommandInput,
382
+ options: __HttpHandlerOptions,
383
+ cb: (err: any, data?: UpdateDataIntegrationAssociationCommandOutput) => void
384
+ ): void;
351
385
  updateEventIntegration(
352
386
  args: UpdateEventIntegrationCommandInput,
353
387
  options?: __HttpHandlerOptions
@@ -49,6 +49,10 @@ import {
49
49
  CreateApplicationCommandInput,
50
50
  CreateApplicationCommandOutput,
51
51
  } from "./commands/CreateApplicationCommand";
52
+ import {
53
+ CreateDataIntegrationAssociationCommandInput,
54
+ CreateDataIntegrationAssociationCommandOutput,
55
+ } from "./commands/CreateDataIntegrationAssociationCommand";
52
56
  import {
53
57
  CreateDataIntegrationCommandInput,
54
58
  CreateDataIntegrationCommandOutput,
@@ -121,6 +125,10 @@ import {
121
125
  UpdateApplicationCommandInput,
122
126
  UpdateApplicationCommandOutput,
123
127
  } from "./commands/UpdateApplicationCommand";
128
+ import {
129
+ UpdateDataIntegrationAssociationCommandInput,
130
+ UpdateDataIntegrationAssociationCommandOutput,
131
+ } from "./commands/UpdateDataIntegrationAssociationCommand";
124
132
  import {
125
133
  UpdateDataIntegrationCommandInput,
126
134
  UpdateDataIntegrationCommandOutput,
@@ -138,6 +146,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
138
146
  export { __Client };
139
147
  export type ServiceInputTypes =
140
148
  | CreateApplicationCommandInput
149
+ | CreateDataIntegrationAssociationCommandInput
141
150
  | CreateDataIntegrationCommandInput
142
151
  | CreateEventIntegrationCommandInput
143
152
  | DeleteApplicationCommandInput
@@ -156,10 +165,12 @@ export type ServiceInputTypes =
156
165
  | TagResourceCommandInput
157
166
  | UntagResourceCommandInput
158
167
  | UpdateApplicationCommandInput
168
+ | UpdateDataIntegrationAssociationCommandInput
159
169
  | UpdateDataIntegrationCommandInput
160
170
  | UpdateEventIntegrationCommandInput;
161
171
  export type ServiceOutputTypes =
162
172
  | CreateApplicationCommandOutput
173
+ | CreateDataIntegrationAssociationCommandOutput
163
174
  | CreateDataIntegrationCommandOutput
164
175
  | CreateEventIntegrationCommandOutput
165
176
  | DeleteApplicationCommandOutput
@@ -178,6 +189,7 @@ export type ServiceOutputTypes =
178
189
  | TagResourceCommandOutput
179
190
  | UntagResourceCommandOutput
180
191
  | UpdateApplicationCommandOutput
192
+ | UpdateDataIntegrationAssociationCommandOutput
181
193
  | UpdateDataIntegrationCommandOutput
182
194
  | UpdateEventIntegrationCommandOutput;
183
195
  export interface ClientDefaults
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AppIntegrationsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../AppIntegrationsClient";
8
+ import {
9
+ CreateDataIntegrationAssociationRequest,
10
+ CreateDataIntegrationAssociationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateDataIntegrationAssociationCommandInput
15
+ extends CreateDataIntegrationAssociationRequest {}
16
+ export interface CreateDataIntegrationAssociationCommandOutput
17
+ extends CreateDataIntegrationAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateDataIntegrationAssociationCommand_base: {
20
+ new (
21
+ input: CreateDataIntegrationAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateDataIntegrationAssociationCommandInput,
24
+ CreateDataIntegrationAssociationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateDataIntegrationAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateDataIntegrationAssociationCommandInput,
33
+ CreateDataIntegrationAssociationCommandOutput,
34
+ AppIntegrationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateDataIntegrationAssociationCommand extends CreateDataIntegrationAssociationCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ AppIntegrationsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../AppIntegrationsClient";
8
+ import {
9
+ UpdateDataIntegrationAssociationRequest,
10
+ UpdateDataIntegrationAssociationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDataIntegrationAssociationCommandInput
15
+ extends UpdateDataIntegrationAssociationRequest {}
16
+ export interface UpdateDataIntegrationAssociationCommandOutput
17
+ extends UpdateDataIntegrationAssociationResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateDataIntegrationAssociationCommand_base: {
20
+ new (
21
+ input: UpdateDataIntegrationAssociationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateDataIntegrationAssociationCommandInput,
24
+ UpdateDataIntegrationAssociationCommandOutput,
25
+ AppIntegrationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateDataIntegrationAssociationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateDataIntegrationAssociationCommandInput,
33
+ UpdateDataIntegrationAssociationCommandOutput,
34
+ AppIntegrationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateDataIntegrationAssociationCommand extends UpdateDataIntegrationAssociationCommand_base {}
@@ -1,4 +1,5 @@
1
1
  export * from "./CreateApplicationCommand";
2
+ export * from "./CreateDataIntegrationAssociationCommand";
2
3
  export * from "./CreateDataIntegrationCommand";
3
4
  export * from "./CreateEventIntegrationCommand";
4
5
  export * from "./DeleteApplicationCommand";
@@ -17,5 +18,6 @@ export * from "./ListTagsForResourceCommand";
17
18
  export * from "./TagResourceCommand";
18
19
  export * from "./UntagResourceCommand";
19
20
  export * from "./UpdateApplicationCommand";
21
+ export * from "./UpdateDataIntegrationAssociationCommand";
20
22
  export * from "./UpdateDataIntegrationCommand";
21
23
  export * from "./UpdateEventIntegrationCommand";
@@ -100,7 +100,7 @@ export interface CreateDataIntegrationRequest {
100
100
  Name: string | undefined;
101
101
  Description?: string;
102
102
  KmsKey: string | undefined;
103
- SourceURI: string | undefined;
103
+ SourceURI?: string;
104
104
  ScheduleConfig?: ScheduleConfiguration;
105
105
  Tags?: Record<string, string>;
106
106
  ClientToken?: string;
@@ -120,6 +120,41 @@ export interface CreateDataIntegrationResponse {
120
120
  FileConfiguration?: FileConfiguration;
121
121
  ObjectConfiguration?: Record<string, Record<string, string[]>>;
122
122
  }
123
+ export declare const ExecutionMode: {
124
+ readonly ON_DEMAND: "ON_DEMAND";
125
+ readonly SCHEDULED: "SCHEDULED";
126
+ };
127
+ export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
128
+ export interface OnDemandConfiguration {
129
+ StartTime: string | undefined;
130
+ EndTime?: string;
131
+ }
132
+ export interface ExecutionConfiguration {
133
+ ExecutionMode: ExecutionMode | undefined;
134
+ OnDemandConfiguration?: OnDemandConfiguration;
135
+ ScheduleConfiguration?: ScheduleConfiguration;
136
+ }
137
+ export interface CreateDataIntegrationAssociationRequest {
138
+ DataIntegrationIdentifier: string | undefined;
139
+ ClientId?: string;
140
+ ObjectConfiguration?: Record<string, Record<string, string[]>>;
141
+ DestinationURI?: string;
142
+ ClientAssociationMetadata?: Record<string, string>;
143
+ ClientToken?: string;
144
+ ExecutionConfiguration?: ExecutionConfiguration;
145
+ }
146
+ export interface CreateDataIntegrationAssociationResponse {
147
+ DataIntegrationAssociationId?: string;
148
+ DataIntegrationArn?: string;
149
+ }
150
+ export declare class ResourceNotFoundException extends __BaseException {
151
+ readonly name: "ResourceNotFoundException";
152
+ readonly $fault: "client";
153
+ Message?: string;
154
+ constructor(
155
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
156
+ );
157
+ }
123
158
  export interface EventFilter {
124
159
  Source: string | undefined;
125
160
  }
@@ -138,14 +173,6 @@ export interface DeleteApplicationRequest {
138
173
  Arn: string | undefined;
139
174
  }
140
175
  export interface DeleteApplicationResponse {}
141
- export declare class ResourceNotFoundException extends __BaseException {
142
- readonly name: "ResourceNotFoundException";
143
- readonly $fault: "client";
144
- Message?: string;
145
- constructor(
146
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
147
- );
148
- }
149
176
  export interface DeleteDataIntegrationRequest {
150
177
  DataIntegrationIdentifier: string | undefined;
151
178
  }
@@ -232,10 +259,24 @@ export interface ListDataIntegrationAssociationsRequest {
232
259
  NextToken?: string;
233
260
  MaxResults?: number;
234
261
  }
262
+ export declare const ExecutionStatus: {
263
+ readonly COMPLETED: "COMPLETED";
264
+ readonly FAILED: "FAILED";
265
+ readonly IN_PROGRESS: "IN_PROGRESS";
266
+ };
267
+ export type ExecutionStatus =
268
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
269
+ export interface LastExecutionStatus {
270
+ ExecutionStatus?: ExecutionStatus;
271
+ StatusMessage?: string;
272
+ }
235
273
  export interface DataIntegrationAssociationSummary {
236
274
  DataIntegrationAssociationArn?: string;
237
275
  DataIntegrationArn?: string;
238
276
  ClientId?: string;
277
+ DestinationURI?: string;
278
+ LastExecutionStatus?: LastExecutionStatus;
279
+ ExecutionConfiguration?: ExecutionConfiguration;
239
280
  }
240
281
  export interface ListDataIntegrationAssociationsResponse {
241
282
  DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
@@ -319,6 +360,12 @@ export interface UpdateDataIntegrationRequest {
319
360
  Description?: string;
320
361
  }
321
362
  export interface UpdateDataIntegrationResponse {}
363
+ export interface UpdateDataIntegrationAssociationRequest {
364
+ DataIntegrationIdentifier: string | undefined;
365
+ DataIntegrationAssociationIdentifier: string | undefined;
366
+ ExecutionConfiguration: ExecutionConfiguration | undefined;
367
+ }
368
+ export interface UpdateDataIntegrationAssociationResponse {}
322
369
  export interface UpdateEventIntegrationRequest {
323
370
  Name: string | undefined;
324
371
  Description?: string;