cdk-comprehend-s3olap 2.0.496 → 2.0.497
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +121 -11
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +563 -291
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +122 -13
- package/node_modules/aws-sdk/clients/glue.d.ts +380 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -12,11 +12,11 @@ declare class AppIntegrations extends Service {
|
|
12
12
|
constructor(options?: AppIntegrations.Types.ClientConfiguration)
|
13
13
|
config: Config & AppIntegrations.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Creates and persists an Application resource.
|
16
16
|
*/
|
17
17
|
createApplication(params: AppIntegrations.Types.CreateApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.CreateApplicationResponse) => void): Request<AppIntegrations.Types.CreateApplicationResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
*
|
19
|
+
* Creates and persists an Application resource.
|
20
20
|
*/
|
21
21
|
createApplication(callback?: (err: AWSError, data: AppIntegrations.Types.CreateApplicationResponse) => void): Request<AppIntegrations.Types.CreateApplicationResponse, AWSError>;
|
22
22
|
/**
|
@@ -27,6 +27,14 @@ declare class AppIntegrations extends Service {
|
|
27
27
|
* Creates and persists a DataIntegration resource. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
28
28
|
*/
|
29
29
|
createDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Creates and persists a DataIntegrationAssociation resource.
|
32
|
+
*/
|
33
|
+
createDataIntegrationAssociation(params: AppIntegrations.Types.CreateDataIntegrationAssociationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationAssociationResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Creates and persists a DataIntegrationAssociation resource.
|
36
|
+
*/
|
37
|
+
createDataIntegrationAssociation(callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationAssociationResponse, AWSError>;
|
30
38
|
/**
|
31
39
|
* Creates an EventIntegration, given a specified name, description, and a reference to an Amazon EventBridge bus in your account and a partner event source that pushes events to that bus. No objects are created in the your account, only metadata that is persisted on the EventIntegration control plane.
|
32
40
|
*/
|
@@ -60,11 +68,11 @@ declare class AppIntegrations extends Service {
|
|
60
68
|
*/
|
61
69
|
deleteEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.DeleteEventIntegrationResponse) => void): Request<AppIntegrations.Types.DeleteEventIntegrationResponse, AWSError>;
|
62
70
|
/**
|
63
|
-
*
|
71
|
+
* Get an Application resource.
|
64
72
|
*/
|
65
73
|
getApplication(params: AppIntegrations.Types.GetApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.GetApplicationResponse) => void): Request<AppIntegrations.Types.GetApplicationResponse, AWSError>;
|
66
74
|
/**
|
67
|
-
*
|
75
|
+
* Get an Application resource.
|
68
76
|
*/
|
69
77
|
getApplication(callback?: (err: AWSError, data: AppIntegrations.Types.GetApplicationResponse) => void): Request<AppIntegrations.Types.GetApplicationResponse, AWSError>;
|
70
78
|
/**
|
@@ -92,11 +100,11 @@ declare class AppIntegrations extends Service {
|
|
92
100
|
*/
|
93
101
|
listApplicationAssociations(callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationAssociationsResponse) => void): Request<AppIntegrations.Types.ListApplicationAssociationsResponse, AWSError>;
|
94
102
|
/**
|
95
|
-
*
|
103
|
+
* Lists applications in the account.
|
96
104
|
*/
|
97
105
|
listApplications(params: AppIntegrations.Types.ListApplicationsRequest, callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationsResponse) => void): Request<AppIntegrations.Types.ListApplicationsResponse, AWSError>;
|
98
106
|
/**
|
99
|
-
*
|
107
|
+
* Lists applications in the account.
|
100
108
|
*/
|
101
109
|
listApplications(callback?: (err: AWSError, data: AppIntegrations.Types.ListApplicationsResponse) => void): Request<AppIntegrations.Types.ListApplicationsResponse, AWSError>;
|
102
110
|
/**
|
@@ -156,11 +164,11 @@ declare class AppIntegrations extends Service {
|
|
156
164
|
*/
|
157
165
|
untagResource(callback?: (err: AWSError, data: AppIntegrations.Types.UntagResourceResponse) => void): Request<AppIntegrations.Types.UntagResourceResponse, AWSError>;
|
158
166
|
/**
|
159
|
-
*
|
167
|
+
* Updates and persists an Application resource.
|
160
168
|
*/
|
161
169
|
updateApplication(params: AppIntegrations.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.UpdateApplicationResponse) => void): Request<AppIntegrations.Types.UpdateApplicationResponse, AWSError>;
|
162
170
|
/**
|
163
|
-
*
|
171
|
+
* Updates and persists an Application resource.
|
164
172
|
*/
|
165
173
|
updateApplication(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateApplicationResponse) => void): Request<AppIntegrations.Types.UpdateApplicationResponse, AWSError>;
|
166
174
|
/**
|
@@ -171,6 +179,14 @@ declare class AppIntegrations extends Service {
|
|
171
179
|
* Updates the description of a DataIntegration. You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.
|
172
180
|
*/
|
173
181
|
updateDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationResponse, AWSError>;
|
182
|
+
/**
|
183
|
+
* Updates and persists a DataIntegrationAssociation resource. Updating a DataIntegrationAssociation with ExecutionConfiguration will rerun the on-demand job.
|
184
|
+
*/
|
185
|
+
updateDataIntegrationAssociation(params: AppIntegrations.Types.UpdateDataIntegrationAssociationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationAssociationResponse, AWSError>;
|
186
|
+
/**
|
187
|
+
* Updates and persists a DataIntegrationAssociation resource. Updating a DataIntegrationAssociation with ExecutionConfiguration will rerun the on-demand job.
|
188
|
+
*/
|
189
|
+
updateDataIntegrationAssociation(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationAssociationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationAssociationResponse, AWSError>;
|
174
190
|
/**
|
175
191
|
* Updates the description of an event integration.
|
176
192
|
*/
|
@@ -285,6 +301,43 @@ declare namespace AppIntegrations {
|
|
285
301
|
*/
|
286
302
|
Id?: UUID;
|
287
303
|
}
|
304
|
+
export interface CreateDataIntegrationAssociationRequest {
|
305
|
+
/**
|
306
|
+
* A unique identifier for the DataIntegration.
|
307
|
+
*/
|
308
|
+
DataIntegrationIdentifier: Identifier;
|
309
|
+
/**
|
310
|
+
* The identifier for the client that is associated with the DataIntegration association.
|
311
|
+
*/
|
312
|
+
ClientId?: ClientId;
|
313
|
+
ObjectConfiguration?: ObjectConfiguration;
|
314
|
+
/**
|
315
|
+
* The URI of the data destination.
|
316
|
+
*/
|
317
|
+
DestinationURI?: DestinationURI;
|
318
|
+
/**
|
319
|
+
* The mapping of metadata to be extracted from the data.
|
320
|
+
*/
|
321
|
+
ClientAssociationMetadata?: ClientAssociationMetadata;
|
322
|
+
/**
|
323
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
|
324
|
+
*/
|
325
|
+
ClientToken?: IdempotencyToken;
|
326
|
+
/**
|
327
|
+
* The configuration for how the files should be pulled from the source.
|
328
|
+
*/
|
329
|
+
ExecutionConfiguration?: ExecutionConfiguration;
|
330
|
+
}
|
331
|
+
export interface CreateDataIntegrationAssociationResponse {
|
332
|
+
/**
|
333
|
+
* A unique identifier. for the DataIntegrationAssociation.
|
334
|
+
*/
|
335
|
+
DataIntegrationAssociationId?: UUID;
|
336
|
+
/**
|
337
|
+
* The Amazon Resource Name (ARN) for the DataIntegration.
|
338
|
+
*/
|
339
|
+
DataIntegrationArn?: Arn;
|
340
|
+
}
|
288
341
|
export interface CreateDataIntegrationRequest {
|
289
342
|
/**
|
290
343
|
* The name of the DataIntegration.
|
@@ -295,13 +348,13 @@ declare namespace AppIntegrations {
|
|
295
348
|
*/
|
296
349
|
Description?: Description;
|
297
350
|
/**
|
298
|
-
* The KMS key for the DataIntegration.
|
351
|
+
* The KMS key ARN for the DataIntegration.
|
299
352
|
*/
|
300
353
|
KmsKey: NonBlankString;
|
301
354
|
/**
|
302
355
|
* The URI of the data source.
|
303
356
|
*/
|
304
|
-
SourceURI
|
357
|
+
SourceURI?: SourceURI;
|
305
358
|
/**
|
306
359
|
* The name of the data and how often it should be pulled from the source.
|
307
360
|
*/
|
@@ -341,7 +394,7 @@ declare namespace AppIntegrations {
|
|
341
394
|
*/
|
342
395
|
Description?: Description;
|
343
396
|
/**
|
344
|
-
* The KMS key for the DataIntegration.
|
397
|
+
* The KMS key ARN for the DataIntegration.
|
345
398
|
*/
|
346
399
|
KmsKey?: NonBlankString;
|
347
400
|
/**
|
@@ -414,6 +467,15 @@ declare namespace AppIntegrations {
|
|
414
467
|
* The identifier for the client that is associated with the DataIntegration association.
|
415
468
|
*/
|
416
469
|
ClientId?: ClientId;
|
470
|
+
/**
|
471
|
+
* The URI of the data destination.
|
472
|
+
*/
|
473
|
+
DestinationURI?: DestinationURI;
|
474
|
+
/**
|
475
|
+
* The execution status of the last job.
|
476
|
+
*/
|
477
|
+
LastExecutionStatus?: LastExecutionStatus;
|
478
|
+
ExecutionConfiguration?: ExecutionConfiguration;
|
417
479
|
}
|
418
480
|
export type DataIntegrationAssociationsList = DataIntegrationAssociationSummary[];
|
419
481
|
export interface DataIntegrationSummary {
|
@@ -456,6 +518,7 @@ declare namespace AppIntegrations {
|
|
456
518
|
export interface DeleteEventIntegrationResponse {
|
457
519
|
}
|
458
520
|
export type Description = string;
|
521
|
+
export type DestinationURI = string;
|
459
522
|
export type EventBridgeBus = string;
|
460
523
|
export type EventBridgeRuleName = string;
|
461
524
|
export type EventDefinitionSchema = string;
|
@@ -520,6 +583,16 @@ declare namespace AppIntegrations {
|
|
520
583
|
export type EventIntegrationAssociationsList = EventIntegrationAssociation[];
|
521
584
|
export type EventIntegrationsList = EventIntegration[];
|
522
585
|
export type EventName = string;
|
586
|
+
export interface ExecutionConfiguration {
|
587
|
+
/**
|
588
|
+
* The mode for data import/export execution.
|
589
|
+
*/
|
590
|
+
ExecutionMode: ExecutionMode;
|
591
|
+
OnDemandConfiguration?: OnDemandConfiguration;
|
592
|
+
ScheduleConfiguration?: ScheduleConfiguration;
|
593
|
+
}
|
594
|
+
export type ExecutionMode = "ON_DEMAND"|"SCHEDULED"|string;
|
595
|
+
export type ExecutionStatus = "COMPLETED"|"IN_PROGRESS"|"FAILED"|string;
|
523
596
|
export interface ExternalUrlConfig {
|
524
597
|
/**
|
525
598
|
* The URL to access the application.
|
@@ -620,11 +693,11 @@ declare namespace AppIntegrations {
|
|
620
693
|
*/
|
621
694
|
Name?: Name;
|
622
695
|
/**
|
623
|
-
* The KMS key for the DataIntegration.
|
696
|
+
* The KMS key ARN for the DataIntegration.
|
624
697
|
*/
|
625
698
|
Description?: Description;
|
626
699
|
/**
|
627
|
-
* The KMS key for the DataIntegration.
|
700
|
+
* The KMS key ARN for the DataIntegration.
|
628
701
|
*/
|
629
702
|
KmsKey?: NonBlankString;
|
630
703
|
/**
|
@@ -682,6 +755,16 @@ declare namespace AppIntegrations {
|
|
682
755
|
}
|
683
756
|
export type IdempotencyToken = string;
|
684
757
|
export type Identifier = string;
|
758
|
+
export interface LastExecutionStatus {
|
759
|
+
/**
|
760
|
+
* The job status enum string.
|
761
|
+
*/
|
762
|
+
ExecutionStatus?: ExecutionStatus;
|
763
|
+
/**
|
764
|
+
* The status message of a job.
|
765
|
+
*/
|
766
|
+
StatusMessage?: NonBlankString;
|
767
|
+
}
|
685
768
|
export interface ListApplicationAssociationsRequest {
|
686
769
|
/**
|
687
770
|
* A unique identifier for the Application.
|
@@ -833,6 +916,16 @@ declare namespace AppIntegrations {
|
|
833
916
|
export type NonBlankString = string;
|
834
917
|
export type Object = string;
|
835
918
|
export type ObjectConfiguration = {[key: string]: FieldsMap};
|
919
|
+
export interface OnDemandConfiguration {
|
920
|
+
/**
|
921
|
+
* The start time for data pull from the source as an Unix/epoch string in milliseconds
|
922
|
+
*/
|
923
|
+
StartTime: NonBlankString;
|
924
|
+
/**
|
925
|
+
* The end time for data pull from the source as an Unix/epoch string in milliseconds
|
926
|
+
*/
|
927
|
+
EndTime?: NonBlankString;
|
928
|
+
}
|
836
929
|
export type Permission = string;
|
837
930
|
export type PermissionList = Permission[];
|
838
931
|
export interface Publication {
|
@@ -940,6 +1033,22 @@ declare namespace AppIntegrations {
|
|
940
1033
|
}
|
941
1034
|
export interface UpdateApplicationResponse {
|
942
1035
|
}
|
1036
|
+
export interface UpdateDataIntegrationAssociationRequest {
|
1037
|
+
/**
|
1038
|
+
* A unique identifier for the DataIntegration.
|
1039
|
+
*/
|
1040
|
+
DataIntegrationIdentifier: Identifier;
|
1041
|
+
/**
|
1042
|
+
* A unique identifier. of the DataIntegrationAssociation resource
|
1043
|
+
*/
|
1044
|
+
DataIntegrationAssociationIdentifier: Identifier;
|
1045
|
+
/**
|
1046
|
+
* The configuration for how the files should be pulled from the source.
|
1047
|
+
*/
|
1048
|
+
ExecutionConfiguration: ExecutionConfiguration;
|
1049
|
+
}
|
1050
|
+
export interface UpdateDataIntegrationAssociationResponse {
|
1051
|
+
}
|
943
1052
|
export interface UpdateDataIntegrationRequest {
|
944
1053
|
/**
|
945
1054
|
* A unique identifier for the DataIntegration.
|