@aws-sdk/client-appintegrations 3.686.0 → 3.691.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.
@@ -3,46 +3,46 @@ import { AppIntegrationsServiceException as __BaseException } from "./AppIntegra
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
11
  export interface ExternalUrlConfig {
12
12
  AccessUrl: string | undefined;
13
- ApprovedOrigins?: string[];
13
+ ApprovedOrigins?: string[] | undefined;
14
14
  }
15
15
  export interface ApplicationSourceConfig {
16
- ExternalUrlConfig?: ExternalUrlConfig;
16
+ ExternalUrlConfig?: ExternalUrlConfig | undefined;
17
17
  }
18
18
  export interface Publication {
19
19
  Event: string | undefined;
20
20
  Schema: string | undefined;
21
- Description?: string;
21
+ Description?: string | undefined;
22
22
  }
23
23
  export interface Subscription {
24
24
  Event: string | undefined;
25
- Description?: string;
25
+ Description?: string | undefined;
26
26
  }
27
27
  export interface CreateApplicationRequest {
28
28
  Name: string | undefined;
29
29
  Namespace: string | undefined;
30
- Description?: string;
30
+ Description?: string | undefined;
31
31
  ApplicationSourceConfig: ApplicationSourceConfig | undefined;
32
- Subscriptions?: Subscription[];
33
- Publications?: Publication[];
34
- ClientToken?: string;
35
- Tags?: Record<string, string>;
36
- Permissions?: string[];
32
+ Subscriptions?: Subscription[] | undefined;
33
+ Publications?: Publication[] | undefined;
34
+ ClientToken?: string | undefined;
35
+ Tags?: Record<string, string> | undefined;
36
+ Permissions?: string[] | undefined;
37
37
  }
38
38
  export interface CreateApplicationResponse {
39
- Arn?: string;
40
- Id?: string;
39
+ Arn?: string | undefined;
40
+ Id?: string | undefined;
41
41
  }
42
42
  export declare class DuplicateResourceException extends __BaseException {
43
43
  readonly name: "DuplicateResourceException";
44
44
  readonly $fault: "client";
45
- Message?: string;
45
+ Message?: string | undefined;
46
46
  constructor(
47
47
  opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
48
48
  );
@@ -50,7 +50,7 @@ export declare class DuplicateResourceException extends __BaseException {
50
50
  export declare class InternalServiceError extends __BaseException {
51
51
  readonly name: "InternalServiceError";
52
52
  readonly $fault: "server";
53
- Message?: string;
53
+ Message?: string | undefined;
54
54
  constructor(
55
55
  opts: __ExceptionOptionType<InternalServiceError, __BaseException>
56
56
  );
@@ -58,7 +58,7 @@ export declare class InternalServiceError extends __BaseException {
58
58
  export declare class InvalidRequestException extends __BaseException {
59
59
  readonly name: "InvalidRequestException";
60
60
  readonly $fault: "client";
61
- Message?: string;
61
+ Message?: string | undefined;
62
62
  constructor(
63
63
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
64
64
  );
@@ -66,7 +66,7 @@ export declare class InvalidRequestException extends __BaseException {
66
66
  export declare class ResourceQuotaExceededException extends __BaseException {
67
67
  readonly name: "ResourceQuotaExceededException";
68
68
  readonly $fault: "client";
69
- Message?: string;
69
+ Message?: string | undefined;
70
70
  constructor(
71
71
  opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>
72
72
  );
@@ -74,7 +74,7 @@ export declare class ResourceQuotaExceededException extends __BaseException {
74
74
  export declare class ThrottlingException extends __BaseException {
75
75
  readonly name: "ThrottlingException";
76
76
  readonly $fault: "client";
77
- Message?: string;
77
+ Message?: string | undefined;
78
78
  constructor(
79
79
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
80
80
  );
@@ -82,43 +82,43 @@ export declare class ThrottlingException extends __BaseException {
82
82
  export declare class UnsupportedOperationException extends __BaseException {
83
83
  readonly name: "UnsupportedOperationException";
84
84
  readonly $fault: "client";
85
- Message?: string;
85
+ Message?: string | undefined;
86
86
  constructor(
87
87
  opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
88
88
  );
89
89
  }
90
90
  export interface FileConfiguration {
91
91
  Folders: string[] | undefined;
92
- Filters?: Record<string, string[]>;
92
+ Filters?: Record<string, string[]> | undefined;
93
93
  }
94
94
  export interface ScheduleConfiguration {
95
- FirstExecutionFrom?: string;
96
- Object?: string;
95
+ FirstExecutionFrom?: string | undefined;
96
+ Object?: string | undefined;
97
97
  ScheduleExpression: string | undefined;
98
98
  }
99
99
  export interface CreateDataIntegrationRequest {
100
100
  Name: string | undefined;
101
- Description?: string;
101
+ Description?: string | undefined;
102
102
  KmsKey: string | undefined;
103
- SourceURI?: string;
104
- ScheduleConfig?: ScheduleConfiguration;
105
- Tags?: Record<string, string>;
106
- ClientToken?: string;
107
- FileConfiguration?: FileConfiguration;
108
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
103
+ SourceURI?: string | undefined;
104
+ ScheduleConfig?: ScheduleConfiguration | undefined;
105
+ Tags?: Record<string, string> | undefined;
106
+ ClientToken?: string | undefined;
107
+ FileConfiguration?: FileConfiguration | undefined;
108
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
109
109
  }
110
110
  export interface CreateDataIntegrationResponse {
111
- Arn?: string;
112
- Id?: string;
113
- Name?: string;
114
- Description?: string;
115
- KmsKey?: string;
116
- SourceURI?: string;
117
- ScheduleConfiguration?: ScheduleConfiguration;
118
- Tags?: Record<string, string>;
119
- ClientToken?: string;
120
- FileConfiguration?: FileConfiguration;
121
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
111
+ Arn?: string | undefined;
112
+ Id?: string | undefined;
113
+ Name?: string | undefined;
114
+ Description?: string | undefined;
115
+ KmsKey?: string | undefined;
116
+ SourceURI?: string | undefined;
117
+ ScheduleConfiguration?: ScheduleConfiguration | undefined;
118
+ Tags?: Record<string, string> | undefined;
119
+ ClientToken?: string | undefined;
120
+ FileConfiguration?: FileConfiguration | undefined;
121
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
122
122
  }
123
123
  export declare const ExecutionMode: {
124
124
  readonly ON_DEMAND: "ON_DEMAND";
@@ -127,30 +127,30 @@ export declare const ExecutionMode: {
127
127
  export type ExecutionMode = (typeof ExecutionMode)[keyof typeof ExecutionMode];
128
128
  export interface OnDemandConfiguration {
129
129
  StartTime: string | undefined;
130
- EndTime?: string;
130
+ EndTime?: string | undefined;
131
131
  }
132
132
  export interface ExecutionConfiguration {
133
133
  ExecutionMode: ExecutionMode | undefined;
134
- OnDemandConfiguration?: OnDemandConfiguration;
135
- ScheduleConfiguration?: ScheduleConfiguration;
134
+ OnDemandConfiguration?: OnDemandConfiguration | undefined;
135
+ ScheduleConfiguration?: ScheduleConfiguration | undefined;
136
136
  }
137
137
  export interface CreateDataIntegrationAssociationRequest {
138
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;
139
+ ClientId?: string | undefined;
140
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
141
+ DestinationURI?: string | undefined;
142
+ ClientAssociationMetadata?: Record<string, string> | undefined;
143
+ ClientToken?: string | undefined;
144
+ ExecutionConfiguration?: ExecutionConfiguration | undefined;
145
145
  }
146
146
  export interface CreateDataIntegrationAssociationResponse {
147
- DataIntegrationAssociationId?: string;
148
- DataIntegrationArn?: string;
147
+ DataIntegrationAssociationId?: string | undefined;
148
+ DataIntegrationArn?: string | undefined;
149
149
  }
150
150
  export declare class ResourceNotFoundException extends __BaseException {
151
151
  readonly name: "ResourceNotFoundException";
152
152
  readonly $fault: "client";
153
- Message?: string;
153
+ Message?: string | undefined;
154
154
  constructor(
155
155
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
156
156
  );
@@ -160,14 +160,14 @@ export interface EventFilter {
160
160
  }
161
161
  export interface CreateEventIntegrationRequest {
162
162
  Name: string | undefined;
163
- Description?: string;
163
+ Description?: string | undefined;
164
164
  EventFilter: EventFilter | undefined;
165
165
  EventBridgeBus: string | undefined;
166
- ClientToken?: string;
167
- Tags?: Record<string, string>;
166
+ ClientToken?: string | undefined;
167
+ Tags?: Record<string, string> | undefined;
168
168
  }
169
169
  export interface CreateEventIntegrationResponse {
170
- EventIntegrationArn?: string;
170
+ EventIntegrationArn?: string | undefined;
171
171
  }
172
172
  export interface DeleteApplicationRequest {
173
173
  Arn: string | undefined;
@@ -185,79 +185,79 @@ export interface GetApplicationRequest {
185
185
  Arn: string | undefined;
186
186
  }
187
187
  export interface GetApplicationResponse {
188
- Arn?: string;
189
- Id?: string;
190
- Name?: string;
191
- Namespace?: string;
192
- Description?: string;
193
- ApplicationSourceConfig?: ApplicationSourceConfig;
194
- Subscriptions?: Subscription[];
195
- Publications?: Publication[];
196
- CreatedTime?: Date;
197
- LastModifiedTime?: Date;
198
- Tags?: Record<string, string>;
199
- Permissions?: string[];
188
+ Arn?: string | undefined;
189
+ Id?: string | undefined;
190
+ Name?: string | undefined;
191
+ Namespace?: string | undefined;
192
+ Description?: string | undefined;
193
+ ApplicationSourceConfig?: ApplicationSourceConfig | undefined;
194
+ Subscriptions?: Subscription[] | undefined;
195
+ Publications?: Publication[] | undefined;
196
+ CreatedTime?: Date | undefined;
197
+ LastModifiedTime?: Date | undefined;
198
+ Tags?: Record<string, string> | undefined;
199
+ Permissions?: string[] | undefined;
200
200
  }
201
201
  export interface GetDataIntegrationRequest {
202
202
  Identifier: string | undefined;
203
203
  }
204
204
  export interface GetDataIntegrationResponse {
205
- Arn?: string;
206
- Id?: string;
207
- Name?: string;
208
- Description?: string;
209
- KmsKey?: string;
210
- SourceURI?: string;
211
- ScheduleConfiguration?: ScheduleConfiguration;
212
- Tags?: Record<string, string>;
213
- FileConfiguration?: FileConfiguration;
214
- ObjectConfiguration?: Record<string, Record<string, string[]>>;
205
+ Arn?: string | undefined;
206
+ Id?: string | undefined;
207
+ Name?: string | undefined;
208
+ Description?: string | undefined;
209
+ KmsKey?: string | undefined;
210
+ SourceURI?: string | undefined;
211
+ ScheduleConfiguration?: ScheduleConfiguration | undefined;
212
+ Tags?: Record<string, string> | undefined;
213
+ FileConfiguration?: FileConfiguration | undefined;
214
+ ObjectConfiguration?: Record<string, Record<string, string[]>> | undefined;
215
215
  }
216
216
  export interface GetEventIntegrationRequest {
217
217
  Name: string | undefined;
218
218
  }
219
219
  export interface GetEventIntegrationResponse {
220
- Name?: string;
221
- Description?: string;
222
- EventIntegrationArn?: string;
223
- EventBridgeBus?: string;
224
- EventFilter?: EventFilter;
225
- Tags?: Record<string, string>;
220
+ Name?: string | undefined;
221
+ Description?: string | undefined;
222
+ EventIntegrationArn?: string | undefined;
223
+ EventBridgeBus?: string | undefined;
224
+ EventFilter?: EventFilter | undefined;
225
+ Tags?: Record<string, string> | undefined;
226
226
  }
227
227
  export interface ListApplicationAssociationsRequest {
228
228
  ApplicationId: string | undefined;
229
- NextToken?: string;
230
- MaxResults?: number;
229
+ NextToken?: string | undefined;
230
+ MaxResults?: number | undefined;
231
231
  }
232
232
  export interface ApplicationAssociationSummary {
233
- ApplicationAssociationArn?: string;
234
- ApplicationArn?: string;
235
- ClientId?: string;
233
+ ApplicationAssociationArn?: string | undefined;
234
+ ApplicationArn?: string | undefined;
235
+ ClientId?: string | undefined;
236
236
  }
237
237
  export interface ListApplicationAssociationsResponse {
238
- ApplicationAssociations?: ApplicationAssociationSummary[];
239
- NextToken?: string;
238
+ ApplicationAssociations?: ApplicationAssociationSummary[] | undefined;
239
+ NextToken?: string | undefined;
240
240
  }
241
241
  export interface ListApplicationsRequest {
242
- NextToken?: string;
243
- MaxResults?: number;
242
+ NextToken?: string | undefined;
243
+ MaxResults?: number | undefined;
244
244
  }
245
245
  export interface ApplicationSummary {
246
- Arn?: string;
247
- Id?: string;
248
- Name?: string;
249
- Namespace?: string;
250
- CreatedTime?: Date;
251
- LastModifiedTime?: Date;
246
+ Arn?: string | undefined;
247
+ Id?: string | undefined;
248
+ Name?: string | undefined;
249
+ Namespace?: string | undefined;
250
+ CreatedTime?: Date | undefined;
251
+ LastModifiedTime?: Date | undefined;
252
252
  }
253
253
  export interface ListApplicationsResponse {
254
- Applications?: ApplicationSummary[];
255
- NextToken?: string;
254
+ Applications?: ApplicationSummary[] | undefined;
255
+ NextToken?: string | undefined;
256
256
  }
257
257
  export interface ListDataIntegrationAssociationsRequest {
258
258
  DataIntegrationIdentifier: string | undefined;
259
- NextToken?: string;
260
- MaxResults?: number;
259
+ NextToken?: string | undefined;
260
+ MaxResults?: number | undefined;
261
261
  }
262
262
  export declare const ExecutionStatus: {
263
263
  readonly COMPLETED: "COMPLETED";
@@ -267,72 +267,72 @@ export declare const ExecutionStatus: {
267
267
  export type ExecutionStatus =
268
268
  (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
269
269
  export interface LastExecutionStatus {
270
- ExecutionStatus?: ExecutionStatus;
271
- StatusMessage?: string;
270
+ ExecutionStatus?: ExecutionStatus | undefined;
271
+ StatusMessage?: string | undefined;
272
272
  }
273
273
  export interface DataIntegrationAssociationSummary {
274
- DataIntegrationAssociationArn?: string;
275
- DataIntegrationArn?: string;
276
- ClientId?: string;
277
- DestinationURI?: string;
278
- LastExecutionStatus?: LastExecutionStatus;
279
- ExecutionConfiguration?: ExecutionConfiguration;
274
+ DataIntegrationAssociationArn?: string | undefined;
275
+ DataIntegrationArn?: string | undefined;
276
+ ClientId?: string | undefined;
277
+ DestinationURI?: string | undefined;
278
+ LastExecutionStatus?: LastExecutionStatus | undefined;
279
+ ExecutionConfiguration?: ExecutionConfiguration | undefined;
280
280
  }
281
281
  export interface ListDataIntegrationAssociationsResponse {
282
- DataIntegrationAssociations?: DataIntegrationAssociationSummary[];
283
- NextToken?: string;
282
+ DataIntegrationAssociations?: DataIntegrationAssociationSummary[] | undefined;
283
+ NextToken?: string | undefined;
284
284
  }
285
285
  export interface ListDataIntegrationsRequest {
286
- NextToken?: string;
287
- MaxResults?: number;
286
+ NextToken?: string | undefined;
287
+ MaxResults?: number | undefined;
288
288
  }
289
289
  export interface DataIntegrationSummary {
290
- Arn?: string;
291
- Name?: string;
292
- SourceURI?: string;
290
+ Arn?: string | undefined;
291
+ Name?: string | undefined;
292
+ SourceURI?: string | undefined;
293
293
  }
294
294
  export interface ListDataIntegrationsResponse {
295
- DataIntegrations?: DataIntegrationSummary[];
296
- NextToken?: string;
295
+ DataIntegrations?: DataIntegrationSummary[] | undefined;
296
+ NextToken?: string | undefined;
297
297
  }
298
298
  export interface ListEventIntegrationAssociationsRequest {
299
299
  EventIntegrationName: string | undefined;
300
- NextToken?: string;
301
- MaxResults?: number;
300
+ NextToken?: string | undefined;
301
+ MaxResults?: number | undefined;
302
302
  }
303
303
  export interface EventIntegrationAssociation {
304
- EventIntegrationAssociationArn?: string;
305
- EventIntegrationAssociationId?: string;
306
- EventIntegrationName?: string;
307
- ClientId?: string;
308
- EventBridgeRuleName?: string;
309
- ClientAssociationMetadata?: Record<string, string>;
304
+ EventIntegrationAssociationArn?: string | undefined;
305
+ EventIntegrationAssociationId?: string | undefined;
306
+ EventIntegrationName?: string | undefined;
307
+ ClientId?: string | undefined;
308
+ EventBridgeRuleName?: string | undefined;
309
+ ClientAssociationMetadata?: Record<string, string> | undefined;
310
310
  }
311
311
  export interface ListEventIntegrationAssociationsResponse {
312
- EventIntegrationAssociations?: EventIntegrationAssociation[];
313
- NextToken?: string;
312
+ EventIntegrationAssociations?: EventIntegrationAssociation[] | undefined;
313
+ NextToken?: string | undefined;
314
314
  }
315
315
  export interface ListEventIntegrationsRequest {
316
- NextToken?: string;
317
- MaxResults?: number;
316
+ NextToken?: string | undefined;
317
+ MaxResults?: number | undefined;
318
318
  }
319
319
  export interface EventIntegration {
320
- EventIntegrationArn?: string;
321
- Name?: string;
322
- Description?: string;
323
- EventFilter?: EventFilter;
324
- EventBridgeBus?: string;
325
- Tags?: Record<string, string>;
320
+ EventIntegrationArn?: string | undefined;
321
+ Name?: string | undefined;
322
+ Description?: string | undefined;
323
+ EventFilter?: EventFilter | undefined;
324
+ EventBridgeBus?: string | undefined;
325
+ Tags?: Record<string, string> | undefined;
326
326
  }
327
327
  export interface ListEventIntegrationsResponse {
328
- EventIntegrations?: EventIntegration[];
329
- NextToken?: string;
328
+ EventIntegrations?: EventIntegration[] | undefined;
329
+ NextToken?: string | undefined;
330
330
  }
331
331
  export interface ListTagsForResourceRequest {
332
332
  resourceArn: string | undefined;
333
333
  }
334
334
  export interface ListTagsForResourceResponse {
335
- tags?: Record<string, string>;
335
+ tags?: Record<string, string> | undefined;
336
336
  }
337
337
  export interface TagResourceRequest {
338
338
  resourceArn: string | undefined;
@@ -346,18 +346,18 @@ export interface UntagResourceRequest {
346
346
  export interface UntagResourceResponse {}
347
347
  export interface UpdateApplicationRequest {
348
348
  Arn: string | undefined;
349
- Name?: string;
350
- Description?: string;
351
- ApplicationSourceConfig?: ApplicationSourceConfig;
352
- Subscriptions?: Subscription[];
353
- Publications?: Publication[];
354
- Permissions?: string[];
349
+ Name?: string | undefined;
350
+ Description?: string | undefined;
351
+ ApplicationSourceConfig?: ApplicationSourceConfig | undefined;
352
+ Subscriptions?: Subscription[] | undefined;
353
+ Publications?: Publication[] | undefined;
354
+ Permissions?: string[] | undefined;
355
355
  }
356
356
  export interface UpdateApplicationResponse {}
357
357
  export interface UpdateDataIntegrationRequest {
358
358
  Identifier: string | undefined;
359
- Name?: string;
360
- Description?: string;
359
+ Name?: string | undefined;
360
+ Description?: string | undefined;
361
361
  }
362
362
  export interface UpdateDataIntegrationResponse {}
363
363
  export interface UpdateDataIntegrationAssociationRequest {
@@ -368,6 +368,6 @@ export interface UpdateDataIntegrationAssociationRequest {
368
368
  export interface UpdateDataIntegrationAssociationResponse {}
369
369
  export interface UpdateEventIntegrationRequest {
370
370
  Name: string | undefined;
371
- Description?: string;
371
+ Description?: string | undefined;
372
372
  }
373
373
  export interface UpdateEventIntegrationResponse {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appintegrations",
3
3
  "description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
4
- "version": "3.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appintegrations",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",