aws-sdk 2.995.0 → 2.996.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.
@@ -0,0 +1,46 @@
1
+ {
2
+ "pagination": {
3
+ "ListAssistantAssociations": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults",
7
+ "result_key": "assistantAssociationSummaries"
8
+ },
9
+ "ListAssistants": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "assistantSummaries"
14
+ },
15
+ "ListContents": {
16
+ "input_token": "nextToken",
17
+ "output_token": "nextToken",
18
+ "limit_key": "maxResults",
19
+ "result_key": "contentSummaries"
20
+ },
21
+ "ListKnowledgeBases": {
22
+ "input_token": "nextToken",
23
+ "output_token": "nextToken",
24
+ "limit_key": "maxResults",
25
+ "result_key": "knowledgeBaseSummaries"
26
+ },
27
+ "QueryAssistant": {
28
+ "input_token": "nextToken",
29
+ "output_token": "nextToken",
30
+ "limit_key": "maxResults",
31
+ "result_key": "results"
32
+ },
33
+ "SearchContent": {
34
+ "input_token": "nextToken",
35
+ "output_token": "nextToken",
36
+ "limit_key": "maxResults",
37
+ "result_key": "contentSummaries"
38
+ },
39
+ "SearchSessions": {
40
+ "input_token": "nextToken",
41
+ "output_token": "nextToken",
42
+ "limit_key": "maxResults",
43
+ "result_key": "sessionSummaries"
44
+ }
45
+ }
46
+ }
package/clients/all.d.ts CHANGED
@@ -278,3 +278,5 @@ export import SnowDeviceManagement = require('./snowdevicemanagement');
278
278
  export import MemoryDB = require('./memorydb');
279
279
  export import OpenSearch = require('./opensearch');
280
280
  export import KafkaConnect = require('./kafkaconnect');
281
+ export import VoiceID = require('./voiceid');
282
+ export import Wisdom = require('./wisdom');
package/clients/all.js CHANGED
@@ -279,5 +279,7 @@ module.exports = {
279
279
  SnowDeviceManagement: require('./snowdevicemanagement'),
280
280
  MemoryDB: require('./memorydb'),
281
281
  OpenSearch: require('./opensearch'),
282
- KafkaConnect: require('./kafkaconnect')
282
+ KafkaConnect: require('./kafkaconnect'),
283
+ VoiceID: require('./voiceid'),
284
+ Wisdom: require('./wisdom')
283
285
  };
@@ -11,6 +11,14 @@ declare class AppIntegrations extends Service {
11
11
  */
12
12
  constructor(options?: AppIntegrations.Types.ClientConfiguration)
13
13
  config: Config & AppIntegrations.Types.ClientConfiguration;
14
+ /**
15
+ * 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.
16
+ */
17
+ createDataIntegration(params: AppIntegrations.Types.CreateDataIntegrationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationResponse, AWSError>;
18
+ /**
19
+ * 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.
20
+ */
21
+ createDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.CreateDataIntegrationResponse) => void): Request<AppIntegrations.Types.CreateDataIntegrationResponse, AWSError>;
14
22
  /**
15
23
  * 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.
16
24
  */
@@ -19,6 +27,14 @@ declare class AppIntegrations extends Service {
19
27
  * 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.
20
28
  */
21
29
  createEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.CreateEventIntegrationResponse) => void): Request<AppIntegrations.Types.CreateEventIntegrationResponse, AWSError>;
30
+ /**
31
+ * Deletes the DataIntegration. Only DataIntegrations that don't have any DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the underlying Amazon AppFlow flow and service linked role. 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.
32
+ */
33
+ deleteDataIntegration(params: AppIntegrations.Types.DeleteDataIntegrationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.DeleteDataIntegrationResponse) => void): Request<AppIntegrations.Types.DeleteDataIntegrationResponse, AWSError>;
34
+ /**
35
+ * Deletes the DataIntegration. Only DataIntegrations that don't have any DataIntegrationAssociations can be deleted. Deleting a DataIntegration also deletes the underlying Amazon AppFlow flow and service linked role. 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.
36
+ */
37
+ deleteDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.DeleteDataIntegrationResponse) => void): Request<AppIntegrations.Types.DeleteDataIntegrationResponse, AWSError>;
22
38
  /**
23
39
  * Deletes the specified existing event integration. If the event integration is associated with clients, the request is rejected.
24
40
  */
@@ -28,13 +44,37 @@ declare class AppIntegrations extends Service {
28
44
  */
29
45
  deleteEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.DeleteEventIntegrationResponse) => void): Request<AppIntegrations.Types.DeleteEventIntegrationResponse, AWSError>;
30
46
  /**
31
- * Return information about the event integration.
47
+ * Returns information about the 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.
48
+ */
49
+ getDataIntegration(params: AppIntegrations.Types.GetDataIntegrationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.GetDataIntegrationResponse) => void): Request<AppIntegrations.Types.GetDataIntegrationResponse, AWSError>;
50
+ /**
51
+ * Returns information about the 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.
52
+ */
53
+ getDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.GetDataIntegrationResponse) => void): Request<AppIntegrations.Types.GetDataIntegrationResponse, AWSError>;
54
+ /**
55
+ * Returns information about the event integration.
32
56
  */
33
57
  getEventIntegration(params: AppIntegrations.Types.GetEventIntegrationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.GetEventIntegrationResponse) => void): Request<AppIntegrations.Types.GetEventIntegrationResponse, AWSError>;
34
58
  /**
35
- * Return information about the event integration.
59
+ * Returns information about the event integration.
36
60
  */
37
61
  getEventIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.GetEventIntegrationResponse) => void): Request<AppIntegrations.Types.GetEventIntegrationResponse, AWSError>;
62
+ /**
63
+ * Returns a paginated list of DataIntegration associations in the account. 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.
64
+ */
65
+ listDataIntegrationAssociations(params: AppIntegrations.Types.ListDataIntegrationAssociationsRequest, callback?: (err: AWSError, data: AppIntegrations.Types.ListDataIntegrationAssociationsResponse) => void): Request<AppIntegrations.Types.ListDataIntegrationAssociationsResponse, AWSError>;
66
+ /**
67
+ * Returns a paginated list of DataIntegration associations in the account. 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.
68
+ */
69
+ listDataIntegrationAssociations(callback?: (err: AWSError, data: AppIntegrations.Types.ListDataIntegrationAssociationsResponse) => void): Request<AppIntegrations.Types.ListDataIntegrationAssociationsResponse, AWSError>;
70
+ /**
71
+ * Returns a paginated list of DataIntegrations in the account. 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.
72
+ */
73
+ listDataIntegrations(params: AppIntegrations.Types.ListDataIntegrationsRequest, callback?: (err: AWSError, data: AppIntegrations.Types.ListDataIntegrationsResponse) => void): Request<AppIntegrations.Types.ListDataIntegrationsResponse, AWSError>;
74
+ /**
75
+ * Returns a paginated list of DataIntegrations in the account. 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.
76
+ */
77
+ listDataIntegrations(callback?: (err: AWSError, data: AppIntegrations.Types.ListDataIntegrationsResponse) => void): Request<AppIntegrations.Types.ListDataIntegrationsResponse, AWSError>;
38
78
  /**
39
79
  * Returns a paginated list of event integration associations in the account.
40
80
  */
@@ -75,6 +115,14 @@ declare class AppIntegrations extends Service {
75
115
  * Removes the specified tags from the specified resource.
76
116
  */
77
117
  untagResource(callback?: (err: AWSError, data: AppIntegrations.Types.UntagResourceResponse) => void): Request<AppIntegrations.Types.UntagResourceResponse, AWSError>;
118
+ /**
119
+ * 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.
120
+ */
121
+ updateDataIntegration(params: AppIntegrations.Types.UpdateDataIntegrationRequest, callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationResponse, AWSError>;
122
+ /**
123
+ * 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.
124
+ */
125
+ updateDataIntegration(callback?: (err: AWSError, data: AppIntegrations.Types.UpdateDataIntegrationResponse) => void): Request<AppIntegrations.Types.UpdateDataIntegrationResponse, AWSError>;
78
126
  /**
79
127
  * Updates the description of an event integration.
80
128
  */
@@ -88,6 +136,74 @@ declare namespace AppIntegrations {
88
136
  export type Arn = string;
89
137
  export type ClientAssociationMetadata = {[key: string]: NonBlankString};
90
138
  export type ClientId = string;
139
+ export interface CreateDataIntegrationRequest {
140
+ /**
141
+ * The name of the DataIntegration.
142
+ */
143
+ Name: Name;
144
+ /**
145
+ * A description of the DataIntegration.
146
+ */
147
+ Description?: Description;
148
+ /**
149
+ * The KMS key for the DataIntegration.
150
+ */
151
+ KmsKey?: NonBlankString;
152
+ /**
153
+ * The URI of the data source.
154
+ */
155
+ SourceURI?: NonBlankString;
156
+ /**
157
+ * The name of the data and how often it should be pulled from the source.
158
+ */
159
+ ScheduleConfig?: ScheduleConfiguration;
160
+ /**
161
+ * One or more tags.
162
+ */
163
+ Tags?: TagMap;
164
+ /**
165
+ * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
166
+ */
167
+ ClientToken?: IdempotencyToken;
168
+ }
169
+ export interface CreateDataIntegrationResponse {
170
+ /**
171
+ * The Amazon Resource Name (ARN)
172
+ */
173
+ Arn?: Arn;
174
+ /**
175
+ * A unique identifier.
176
+ */
177
+ Id?: UUID;
178
+ /**
179
+ * The name of the DataIntegration.
180
+ */
181
+ Name?: Name;
182
+ /**
183
+ * A description of the DataIntegration.
184
+ */
185
+ Description?: Description;
186
+ /**
187
+ * The KMS key for the DataIntegration.
188
+ */
189
+ KmsKey?: NonBlankString;
190
+ /**
191
+ * The URI of the data source.
192
+ */
193
+ SourceURI?: NonBlankString;
194
+ /**
195
+ * The name of the data and how often it should be pulled from the source.
196
+ */
197
+ ScheduleConfiguration?: ScheduleConfiguration;
198
+ /**
199
+ * One or more tags.
200
+ */
201
+ Tags?: TagMap;
202
+ /**
203
+ * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
204
+ */
205
+ ClientToken?: IdempotencyToken;
206
+ }
91
207
  export interface CreateEventIntegrationRequest {
92
208
  /**
93
209
  * The name of the event integration.
@@ -120,6 +236,44 @@ declare namespace AppIntegrations {
120
236
  */
121
237
  EventIntegrationArn?: Arn;
122
238
  }
239
+ export interface DataIntegrationAssociationSummary {
240
+ /**
241
+ * The Amazon Resource Name (ARN) of the DataIntegration association.
242
+ */
243
+ DataIntegrationAssociationArn?: Arn;
244
+ /**
245
+ * The Amazon Resource Name (ARN)of the DataIntegration.
246
+ */
247
+ DataIntegrationArn?: Arn;
248
+ /**
249
+ * The identifier for teh client that is associated with the DataIntegration association.
250
+ */
251
+ ClientId?: ClientId;
252
+ }
253
+ export type DataIntegrationAssociationsList = DataIntegrationAssociationSummary[];
254
+ export interface DataIntegrationSummary {
255
+ /**
256
+ * The Amazon Resource Name (ARN) of the DataIntegration.
257
+ */
258
+ Arn?: Arn;
259
+ /**
260
+ * The name of the DataIntegration.
261
+ */
262
+ Name?: Name;
263
+ /**
264
+ * The URI of the data source.
265
+ */
266
+ SourceURI?: NonBlankString;
267
+ }
268
+ export type DataIntegrationsList = DataIntegrationSummary[];
269
+ export interface DeleteDataIntegrationRequest {
270
+ /**
271
+ * A unique identifier for the DataIntegration.
272
+ */
273
+ DataIntegrationIdentifier: Identifier;
274
+ }
275
+ export interface DeleteDataIntegrationResponse {
276
+ }
123
277
  export interface DeleteEventIntegrationRequest {
124
278
  /**
125
279
  * The name of the event integration.
@@ -191,6 +345,46 @@ declare namespace AppIntegrations {
191
345
  }
192
346
  export type EventIntegrationAssociationsList = EventIntegrationAssociation[];
193
347
  export type EventIntegrationsList = EventIntegration[];
348
+ export interface GetDataIntegrationRequest {
349
+ /**
350
+ * A unique identifier.
351
+ */
352
+ Identifier: Identifier;
353
+ }
354
+ export interface GetDataIntegrationResponse {
355
+ /**
356
+ * The Amazon Resource Name (ARN) for the DataIntegration.
357
+ */
358
+ Arn?: Arn;
359
+ /**
360
+ * A unique identifier.
361
+ */
362
+ Id?: UUID;
363
+ /**
364
+ * The name of the DataIntegration.
365
+ */
366
+ Name?: Name;
367
+ /**
368
+ * The KMS key for the DataIntegration.
369
+ */
370
+ Description?: Description;
371
+ /**
372
+ * The KMS key for the DataIntegration.
373
+ */
374
+ KmsKey?: NonBlankString;
375
+ /**
376
+ * The URI of the data source.
377
+ */
378
+ SourceURI?: NonBlankString;
379
+ /**
380
+ * The name of the data and how often it should be pulled from the source.
381
+ */
382
+ ScheduleConfiguration?: ScheduleConfiguration;
383
+ /**
384
+ * One or more tags.
385
+ */
386
+ Tags?: TagMap;
387
+ }
194
388
  export interface GetEventIntegrationRequest {
195
389
  /**
196
390
  * The name of the event integration.
@@ -224,6 +418,51 @@ declare namespace AppIntegrations {
224
418
  Tags?: TagMap;
225
419
  }
226
420
  export type IdempotencyToken = string;
421
+ export type Identifier = string;
422
+ export interface ListDataIntegrationAssociationsRequest {
423
+ /**
424
+ * A unique identifier for the DataIntegration.
425
+ */
426
+ DataIntegrationIdentifier: Identifier;
427
+ /**
428
+ * The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
429
+ */
430
+ NextToken?: NextToken;
431
+ /**
432
+ * The maximum number of results to return per page.
433
+ */
434
+ MaxResults?: MaxResults;
435
+ }
436
+ export interface ListDataIntegrationAssociationsResponse {
437
+ /**
438
+ * The Amazon Resource Name (ARN) and unique ID of the DataIntegration association.
439
+ */
440
+ DataIntegrationAssociations?: DataIntegrationAssociationsList;
441
+ /**
442
+ * If there are additional results, this is the token for the next set of results.
443
+ */
444
+ NextToken?: NextToken;
445
+ }
446
+ export interface ListDataIntegrationsRequest {
447
+ /**
448
+ * The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
449
+ */
450
+ NextToken?: NextToken;
451
+ /**
452
+ * The maximum number of results to return per page.
453
+ */
454
+ MaxResults?: MaxResults;
455
+ }
456
+ export interface ListDataIntegrationsResponse {
457
+ /**
458
+ * The DataIntegrations associated with this account.
459
+ */
460
+ DataIntegrations?: DataIntegrationsList;
461
+ /**
462
+ * If there are additional results, this is the token for the next set of results.
463
+ */
464
+ NextToken?: NextToken;
465
+ }
227
466
  export interface ListEventIntegrationAssociationsRequest {
228
467
  /**
229
468
  * The name of the event integration.
@@ -284,6 +523,22 @@ declare namespace AppIntegrations {
284
523
  export type Name = string;
285
524
  export type NextToken = string;
286
525
  export type NonBlankString = string;
526
+ export type Object = string;
527
+ export type Schedule = string;
528
+ export interface ScheduleConfiguration {
529
+ /**
530
+ * The start date for objects to import in the first flow run.
531
+ */
532
+ FirstExecutionFrom?: NonBlankString;
533
+ /**
534
+ * The name of the object to pull from the data source.
535
+ */
536
+ Object?: Object;
537
+ /**
538
+ * How often the data should be pulled from data source.
539
+ */
540
+ ScheduleExpression?: Schedule;
541
+ }
287
542
  export type Source = string;
288
543
  export type TagKey = string;
289
544
  export type TagKeyList = TagKey[];
@@ -314,6 +569,22 @@ declare namespace AppIntegrations {
314
569
  }
315
570
  export interface UntagResourceResponse {
316
571
  }
572
+ export interface UpdateDataIntegrationRequest {
573
+ /**
574
+ * A unique identifier for the DataIntegration.
575
+ */
576
+ Identifier: Identifier;
577
+ /**
578
+ * The name of the DataIntegration.
579
+ */
580
+ Name?: Name;
581
+ /**
582
+ * A description of the DataIntegration.
583
+ */
584
+ Description?: Description;
585
+ }
586
+ export interface UpdateDataIntegrationResponse {
587
+ }
317
588
  export interface UpdateEventIntegrationRequest {
318
589
  /**
319
590
  * The name of the event integration.