@aws-sdk/client-bedrock-agentcore-control 3.891.0 → 3.893.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 (60) hide show
  1. package/README.md +25 -1
  2. package/dist-cjs/BedrockAgentCoreControl.js +6 -0
  3. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  4. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  5. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +55 -40
  8. package/dist-cjs/protocols/Aws_restJson1.js +97 -12
  9. package/dist-es/BedrockAgentCoreControl.js +6 -0
  10. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  11. package/dist-es/commands/TagResourceCommand.js +22 -0
  12. package/dist-es/commands/UntagResourceCommand.js +22 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +49 -35
  15. package/dist-es/protocols/Aws_restJson1.js +88 -9
  16. package/dist-types/BedrockAgentCoreControl.d.ts +22 -1
  17. package/dist-types/BedrockAgentCoreControlClient.d.ts +6 -3
  18. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +19 -3
  19. package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +4 -1
  20. package/dist-types/commands/CreateBrowserCommand.d.ts +12 -1
  21. package/dist-types/commands/CreateCodeInterpreterCommand.d.ts +12 -1
  22. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateMemoryCommand.d.ts +1 -1
  24. package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteGatewayCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
  28. package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
  29. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +16 -3
  30. package/dist-types/commands/GetBrowserCommand.d.ts +10 -1
  31. package/dist-types/commands/GetCodeInterpreterCommand.d.ts +10 -1
  32. package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
  33. package/dist-types/commands/GetMemoryCommand.d.ts +1 -1
  34. package/dist-types/commands/ListAgentRuntimeEndpointsCommand.d.ts +2 -2
  35. package/dist-types/commands/ListAgentRuntimeVersionsCommand.d.ts +2 -2
  36. package/dist-types/commands/ListAgentRuntimesCommand.d.ts +2 -2
  37. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListGatewaysCommand.d.ts +1 -1
  39. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +91 -0
  41. package/dist-types/commands/TagResourceCommand.d.ts +93 -0
  42. package/dist-types/commands/UntagResourceCommand.d.ts +90 -0
  43. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +15 -2
  44. package/dist-types/commands/UpdateAgentRuntimeEndpointCommand.d.ts +1 -1
  45. package/dist-types/commands/UpdateGatewayCommand.d.ts +1 -1
  46. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +1 -1
  47. package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -1
  48. package/dist-types/commands/index.d.ts +3 -0
  49. package/dist-types/index.d.ts +1 -1
  50. package/dist-types/models/models_0.d.ts +547 -378
  51. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  52. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +51 -0
  53. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +18 -0
  54. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  56. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  58. package/dist-types/ts3.4/models/models_0.d.ts +133 -79
  59. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  60. package/package.json +18 -18
@@ -13,108 +13,57 @@ export declare class AccessDeniedException extends __BaseException {
13
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
14
  }
15
15
  /**
16
- * @public
17
- * @enum
18
- */
19
- export declare const AgentStatus: {
20
- readonly CREATE_FAILED: "CREATE_FAILED";
21
- readonly CREATING: "CREATING";
22
- readonly DELETING: "DELETING";
23
- readonly READY: "READY";
24
- readonly UPDATE_FAILED: "UPDATE_FAILED";
25
- readonly UPDATING: "UPDATING";
26
- };
27
- /**
16
+ * <p>This exception is thrown when there is a conflict performing an operation</p>
28
17
  * @public
29
18
  */
30
- export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
+ }
31
27
  /**
32
- * <p>Contains information about an agent runtime. An agent runtime is the execution environment for a Amazon Bedrock Agent.</p>
33
28
  * @public
34
29
  */
35
- export interface Agent {
36
- /**
37
- * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
38
- * @public
39
- */
40
- agentRuntimeArn: string | undefined;
30
+ export interface CreateAgentRuntimeEndpointRequest {
41
31
  /**
42
- * <p>The unique identifier of the agent runtime.</p>
32
+ * <p>The unique identifier of the AgentCore Runtime to create an endpoint for.</p>
43
33
  * @public
44
34
  */
45
35
  agentRuntimeId: string | undefined;
46
36
  /**
47
- * <p>The version of the agent runtime.</p>
48
- * @public
49
- */
50
- agentRuntimeVersion: string | undefined;
51
- /**
52
- * <p>The name of the agent runtime.</p>
53
- * @public
54
- */
55
- agentRuntimeName: string | undefined;
56
- /**
57
- * <p>The description of the agent runtime.</p>
58
- * @public
59
- */
60
- description: string | undefined;
61
- /**
62
- * <p>The timestamp when the agent runtime was last updated.</p>
37
+ * <p>The name of the AgentCore Runtime endpoint.</p>
63
38
  * @public
64
39
  */
65
- lastUpdatedAt: Date | undefined;
40
+ name: string | undefined;
66
41
  /**
67
- * <p>The current status of the agent runtime.</p>
42
+ * <p>The version of the AgentCore Runtime to use for the endpoint.</p>
68
43
  * @public
69
44
  */
70
- status: AgentStatus | undefined;
71
- }
72
- /**
73
- * <p>Representation of a container configuration.</p>
74
- * @public
75
- */
76
- export interface ContainerConfiguration {
45
+ agentRuntimeVersion?: string | undefined;
77
46
  /**
78
- * <p>The ECR URI of the container.</p>
47
+ * <p>The description of the AgentCore Runtime endpoint.</p>
79
48
  * @public
80
49
  */
81
- containerUri: string | undefined;
82
- }
83
- /**
84
- * <p>The artifact of the agent.</p>
85
- * @public
86
- */
87
- export type AgentArtifact = AgentArtifact.ContainerConfigurationMember | AgentArtifact.$UnknownMember;
88
- /**
89
- * @public
90
- */
91
- export declare namespace AgentArtifact {
50
+ description?: string | undefined;
92
51
  /**
93
- * <p>The container configuration for the agent artifact.</p>
52
+ * <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
94
53
  * @public
95
54
  */
96
- interface ContainerConfigurationMember {
97
- containerConfiguration: ContainerConfiguration;
98
- $unknown?: never;
99
- }
55
+ clientToken?: string | undefined;
100
56
  /**
57
+ * <p>A map of tag keys and values to assign to the agent runtime endpoint. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
101
58
  * @public
102
59
  */
103
- interface $UnknownMember {
104
- containerConfiguration?: never;
105
- $unknown: [string, any];
106
- }
107
- interface Visitor<T> {
108
- containerConfiguration: (value: ContainerConfiguration) => T;
109
- _: (name: string, value: any) => T;
110
- }
111
- const visit: <T>(value: AgentArtifact, visitor: Visitor<T>) => T;
60
+ tags?: Record<string, string> | undefined;
112
61
  }
113
62
  /**
114
63
  * @public
115
64
  * @enum
116
65
  */
117
- export declare const AgentEndpointStatus: {
66
+ export declare const AgentRuntimeEndpointStatus: {
118
67
  readonly CREATE_FAILED: "CREATE_FAILED";
119
68
  readonly CREATING: "CREATING";
120
69
  readonly DELETING: "DELETING";
@@ -125,131 +74,33 @@ export declare const AgentEndpointStatus: {
125
74
  /**
126
75
  * @public
127
76
  */
128
- export type AgentEndpointStatus = (typeof AgentEndpointStatus)[keyof typeof AgentEndpointStatus];
129
- /**
130
- * <p>Contains information about an agent runtime endpoint. An endpoint provides a way to connect to and interact with an agent runtime.</p>
131
- * @public
132
- */
133
- export interface AgentEndpoint {
134
- /**
135
- * <p>The name of the agent runtime endpoint.</p>
136
- * @public
137
- */
138
- name: string | undefined;
139
- /**
140
- * <p>The live version of the agent runtime endpoint. This is the version that is currently serving requests.</p>
141
- * @public
142
- */
143
- liveVersion?: string | undefined;
144
- /**
145
- * <p>The target version of the agent runtime endpoint. This is the version that the endpoint is being updated to.</p>
146
- * @public
147
- */
148
- targetVersion?: string | undefined;
149
- /**
150
- * <p>The Amazon Resource Name (ARN) of the agent runtime endpoint.</p>
151
- * @public
152
- */
153
- agentRuntimeEndpointArn: string | undefined;
154
- /**
155
- * <p>The Amazon Resource Name (ARN) of the agent runtime associated with the endpoint.</p>
156
- * @public
157
- */
158
- agentRuntimeArn: string | undefined;
159
- /**
160
- * <p>The current status of the agent runtime endpoint.</p>
161
- * @public
162
- */
163
- status: AgentEndpointStatus | undefined;
164
- /**
165
- * <p>The unique identifier of the agent runtime endpoint.</p>
166
- * @public
167
- */
168
- id: string | undefined;
169
- /**
170
- * <p>The description of the agent runtime endpoint.</p>
171
- * @public
172
- */
173
- description?: string | undefined;
174
- /**
175
- * <p>The timestamp when the agent runtime endpoint was created.</p>
176
- * @public
177
- */
178
- createdAt: Date | undefined;
179
- /**
180
- * <p>The timestamp when the agent runtime endpoint was last updated.</p>
181
- * @public
182
- */
183
- lastUpdatedAt: Date | undefined;
184
- }
185
- /**
186
- * <p>This exception is thrown when there is a conflict performing an operation</p>
187
- * @public
188
- */
189
- export declare class ConflictException extends __BaseException {
190
- readonly name: "ConflictException";
191
- readonly $fault: "client";
192
- /**
193
- * @internal
194
- */
195
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
196
- }
197
- /**
198
- * @public
199
- */
200
- export interface CreateAgentRuntimeEndpointRequest {
201
- /**
202
- * <p>The unique identifier of the agent runtime to create an endpoint for.</p>
203
- * @public
204
- */
205
- agentRuntimeId: string | undefined;
206
- /**
207
- * <p>The name of the agent runtime endpoint.</p>
208
- * @public
209
- */
210
- name: string | undefined;
211
- /**
212
- * <p>The version of the agent runtime to use for the endpoint.</p>
213
- * @public
214
- */
215
- agentRuntimeVersion?: string | undefined;
216
- /**
217
- * <p>The description of the agent runtime endpoint.</p>
218
- * @public
219
- */
220
- description?: string | undefined;
221
- /**
222
- * <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
223
- * @public
224
- */
225
- clientToken?: string | undefined;
226
- }
77
+ export type AgentRuntimeEndpointStatus = (typeof AgentRuntimeEndpointStatus)[keyof typeof AgentRuntimeEndpointStatus];
227
78
  /**
228
79
  * @public
229
80
  */
230
81
  export interface CreateAgentRuntimeEndpointResponse {
231
82
  /**
232
- * <p>The target version of the agent runtime for the endpoint.</p>
83
+ * <p>The target version of the AgentCore Runtime for the endpoint.</p>
233
84
  * @public
234
85
  */
235
86
  targetVersion: string | undefined;
236
87
  /**
237
- * <p>The Amazon Resource Name (ARN) of the agent runtime endpoint.</p>
88
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.</p>
238
89
  * @public
239
90
  */
240
91
  agentRuntimeEndpointArn: string | undefined;
241
92
  /**
242
- * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
93
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
243
94
  * @public
244
95
  */
245
96
  agentRuntimeArn: string | undefined;
246
97
  /**
247
- * <p>The current status of the agent runtime endpoint.</p>
98
+ * <p>The current status of the AgentCore Runtime endpoint.</p>
248
99
  * @public
249
100
  */
250
- status: AgentEndpointStatus | undefined;
101
+ status: AgentRuntimeEndpointStatus | undefined;
251
102
  /**
252
- * <p>The timestamp when the agent runtime endpoint was created.</p>
103
+ * <p>The timestamp when the AgentCore Runtime endpoint was created.</p>
253
104
  * @public
254
105
  */
255
106
  createdAt: Date | undefined;
@@ -352,12 +203,12 @@ export declare class ValidationException extends __BaseException {
352
203
  */
353
204
  export interface DeleteAgentRuntimeEndpointRequest {
354
205
  /**
355
- * <p>The unique identifier of the agent runtime associated with the endpoint.</p>
206
+ * <p>The unique identifier of the AgentCore Runtime associated with the endpoint.</p>
356
207
  * @public
357
208
  */
358
209
  agentRuntimeId: string | undefined;
359
210
  /**
360
- * <p>The name of the agent runtime endpoint to delete.</p>
211
+ * <p>The name of the AgentCore Runtime endpoint to delete.</p>
361
212
  * @public
362
213
  */
363
214
  endpointName: string | undefined;
@@ -372,22 +223,22 @@ export interface DeleteAgentRuntimeEndpointRequest {
372
223
  */
373
224
  export interface DeleteAgentRuntimeEndpointResponse {
374
225
  /**
375
- * <p>The current status of the agent runtime endpoint deletion.</p>
226
+ * <p>The current status of the AgentCore Runtime endpoint deletion.</p>
376
227
  * @public
377
228
  */
378
- status: AgentEndpointStatus | undefined;
229
+ status: AgentRuntimeEndpointStatus | undefined;
379
230
  }
380
231
  /**
381
232
  * @public
382
233
  */
383
234
  export interface GetAgentRuntimeEndpointRequest {
384
235
  /**
385
- * <p>The unique identifier of the agent runtime associated with the endpoint.</p>
236
+ * <p>The unique identifier of the AgentCore Runtime associated with the endpoint.</p>
386
237
  * @public
387
238
  */
388
239
  agentRuntimeId: string | undefined;
389
240
  /**
390
- * <p>The name of the agent runtime endpoint to retrieve.</p>
241
+ * <p>The name of the AgentCore Runtime endpoint to retrieve.</p>
391
242
  * @public
392
243
  */
393
244
  endpointName: string | undefined;
@@ -397,57 +248,57 @@ export interface GetAgentRuntimeEndpointRequest {
397
248
  */
398
249
  export interface GetAgentRuntimeEndpointResponse {
399
250
  /**
400
- * <p>The currently deployed version of the agent runtime on the endpoint.</p>
251
+ * <p>The currently deployed version of the AgentCore Runtime on the endpoint.</p>
401
252
  * @public
402
253
  */
403
254
  liveVersion?: string | undefined;
404
255
  /**
405
- * <p>The target version of the agent runtime for the endpoint.</p>
256
+ * <p>The target version of the AgentCore Runtime for the endpoint.</p>
406
257
  * @public
407
258
  */
408
259
  targetVersion?: string | undefined;
409
260
  /**
410
- * <p>The Amazon Resource Name (ARN) of the agent runtime endpoint.</p>
261
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.</p>
411
262
  * @public
412
263
  */
413
264
  agentRuntimeEndpointArn: string | undefined;
414
265
  /**
415
- * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
266
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
416
267
  * @public
417
268
  */
418
269
  agentRuntimeArn: string | undefined;
419
270
  /**
420
- * <p>The description of the agent runtime endpoint.</p>
271
+ * <p>The description of the AgentCore Runtime endpoint.</p>
421
272
  * @public
422
273
  */
423
274
  description?: string | undefined;
424
275
  /**
425
- * <p>The current status of the agent runtime endpoint.</p>
276
+ * <p>The current status of the AgentCore Runtime endpoint.</p>
426
277
  * @public
427
278
  */
428
- status: AgentEndpointStatus | undefined;
279
+ status: AgentRuntimeEndpointStatus | undefined;
429
280
  /**
430
- * <p>The timestamp when the agent runtime endpoint was created.</p>
281
+ * <p>The timestamp when the AgentCore Runtime endpoint was created.</p>
431
282
  * @public
432
283
  */
433
284
  createdAt: Date | undefined;
434
285
  /**
435
- * <p>The timestamp when the agent runtime endpoint was last updated.</p>
286
+ * <p>The timestamp when the AgentCore Runtime endpoint was last updated.</p>
436
287
  * @public
437
288
  */
438
289
  lastUpdatedAt: Date | undefined;
439
290
  /**
440
- * <p>The reason for failure if the agent runtime endpoint is in a failed state.</p>
291
+ * <p>The reason for failure if the AgentCore Runtime endpoint is in a failed state.</p>
441
292
  * @public
442
293
  */
443
294
  failureReason?: string | undefined;
444
295
  /**
445
- * <p>The name of the agent runtime endpoint.</p>
296
+ * <p>The name of the AgentCore Runtime endpoint.</p>
446
297
  * @public
447
298
  */
448
299
  name: string | undefined;
449
300
  /**
450
- * <p>The unique identifier of the agent runtime endpoint.</p>
301
+ * <p>The unique identifier of the AgentCore Runtime endpoint.</p>
451
302
  * @public
452
303
  */
453
304
  id: string | undefined;
@@ -457,7 +308,7 @@ export interface GetAgentRuntimeEndpointResponse {
457
308
  */
458
309
  export interface ListAgentRuntimeEndpointsRequest {
459
310
  /**
460
- * <p>The unique identifier of the agent runtime to list endpoints for.</p>
311
+ * <p>The unique identifier of the AgentCore Runtime to list endpoints for.</p>
461
312
  * @public
462
313
  */
463
314
  agentRuntimeId: string | undefined;
@@ -472,15 +323,71 @@ export interface ListAgentRuntimeEndpointsRequest {
472
323
  */
473
324
  nextToken?: string | undefined;
474
325
  }
326
+ /**
327
+ * <p>Contains information about an agent runtime endpoint. An endpoint provides a way to connect to and interact with an agent runtime.</p>
328
+ * @public
329
+ */
330
+ export interface AgentRuntimeEndpoint {
331
+ /**
332
+ * <p>The name of the agent runtime endpoint.</p>
333
+ * @public
334
+ */
335
+ name: string | undefined;
336
+ /**
337
+ * <p>The live version of the agent runtime endpoint. This is the version that is currently serving requests.</p>
338
+ * @public
339
+ */
340
+ liveVersion?: string | undefined;
341
+ /**
342
+ * <p>The target version of the agent runtime endpoint. This is the version that the endpoint is being updated to.</p>
343
+ * @public
344
+ */
345
+ targetVersion?: string | undefined;
346
+ /**
347
+ * <p>The Amazon Resource Name (ARN) of the agent runtime endpoint.</p>
348
+ * @public
349
+ */
350
+ agentRuntimeEndpointArn: string | undefined;
351
+ /**
352
+ * <p>The Amazon Resource Name (ARN) of the agent runtime associated with the endpoint.</p>
353
+ * @public
354
+ */
355
+ agentRuntimeArn: string | undefined;
356
+ /**
357
+ * <p>The current status of the agent runtime endpoint.</p>
358
+ * @public
359
+ */
360
+ status: AgentRuntimeEndpointStatus | undefined;
361
+ /**
362
+ * <p>The unique identifier of the agent runtime endpoint.</p>
363
+ * @public
364
+ */
365
+ id: string | undefined;
366
+ /**
367
+ * <p>The description of the agent runtime endpoint.</p>
368
+ * @public
369
+ */
370
+ description?: string | undefined;
371
+ /**
372
+ * <p>The timestamp when the agent runtime endpoint was created.</p>
373
+ * @public
374
+ */
375
+ createdAt: Date | undefined;
376
+ /**
377
+ * <p>The timestamp when the agent runtime endpoint was last updated.</p>
378
+ * @public
379
+ */
380
+ lastUpdatedAt: Date | undefined;
381
+ }
475
382
  /**
476
383
  * @public
477
384
  */
478
385
  export interface ListAgentRuntimeEndpointsResponse {
479
386
  /**
480
- * <p>The list of agent runtime endpoints.</p>
387
+ * <p>The list of AgentCore Runtime endpoints.</p>
481
388
  * @public
482
389
  */
483
- runtimeEndpoints: AgentEndpoint[] | undefined;
390
+ runtimeEndpoints: AgentRuntimeEndpoint[] | undefined;
484
391
  /**
485
392
  * <p>A token to retrieve the next page of results.</p>
486
393
  * @public
@@ -492,22 +399,22 @@ export interface ListAgentRuntimeEndpointsResponse {
492
399
  */
493
400
  export interface UpdateAgentRuntimeEndpointRequest {
494
401
  /**
495
- * <p>The unique identifier of the agent runtime associated with the endpoint.</p>
402
+ * <p>The unique identifier of the AgentCore Runtime associated with the endpoint.</p>
496
403
  * @public
497
404
  */
498
405
  agentRuntimeId: string | undefined;
499
406
  /**
500
- * <p>The name of the agent runtime endpoint to update.</p>
407
+ * <p>The name of the AgentCore Runtime endpoint to update.</p>
501
408
  * @public
502
409
  */
503
410
  endpointName: string | undefined;
504
411
  /**
505
- * <p>The updated version of the agent runtime for the endpoint.</p>
412
+ * <p>The updated version of the AgentCore Runtime for the endpoint.</p>
506
413
  * @public
507
414
  */
508
415
  agentRuntimeVersion?: string | undefined;
509
416
  /**
510
- * <p>The updated description of the agent runtime endpoint.</p>
417
+ * <p>The updated description of the AgentCore Runtime endpoint.</p>
511
418
  * @public
512
419
  */
513
420
  description?: string | undefined;
@@ -522,41 +429,82 @@ export interface UpdateAgentRuntimeEndpointRequest {
522
429
  */
523
430
  export interface UpdateAgentRuntimeEndpointResponse {
524
431
  /**
525
- * <p>The currently deployed version of the agent runtime on the endpoint.</p>
432
+ * <p>The currently deployed version of the AgentCore Runtime on the endpoint.</p>
526
433
  * @public
527
434
  */
528
435
  liveVersion?: string | undefined;
529
436
  /**
530
- * <p>The target version of the agent runtime for the endpoint.</p>
437
+ * <p>The target version of the AgentCore Runtime for the endpoint.</p>
531
438
  * @public
532
439
  */
533
440
  targetVersion?: string | undefined;
534
441
  /**
535
- * <p>The Amazon Resource Name (ARN) of the agent runtime endpoint.</p>
442
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.</p>
536
443
  * @public
537
444
  */
538
445
  agentRuntimeEndpointArn: string | undefined;
539
446
  /**
540
- * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
447
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
541
448
  * @public
542
449
  */
543
450
  agentRuntimeArn: string | undefined;
544
451
  /**
545
- * <p>The current status of the updated agent runtime endpoint.</p>
452
+ * <p>The current status of the updated AgentCore Runtime endpoint.</p>
546
453
  * @public
547
454
  */
548
- status: AgentEndpointStatus | undefined;
455
+ status: AgentRuntimeEndpointStatus | undefined;
549
456
  /**
550
- * <p>The timestamp when the agent runtime endpoint was created.</p>
457
+ * <p>The timestamp when the AgentCore Runtime endpoint was created.</p>
551
458
  * @public
552
459
  */
553
460
  createdAt: Date | undefined;
554
461
  /**
555
- * <p>The timestamp when the agent runtime endpoint was last updated.</p>
462
+ * <p>The timestamp when the AgentCore Runtime endpoint was last updated.</p>
556
463
  * @public
557
464
  */
558
465
  lastUpdatedAt: Date | undefined;
559
466
  }
467
+ /**
468
+ * <p>Representation of a container configuration.</p>
469
+ * @public
470
+ */
471
+ export interface ContainerConfiguration {
472
+ /**
473
+ * <p>The ECR URI of the container.</p>
474
+ * @public
475
+ */
476
+ containerUri: string | undefined;
477
+ }
478
+ /**
479
+ * <p>The artifact of the agent.</p>
480
+ * @public
481
+ */
482
+ export type AgentRuntimeArtifact = AgentRuntimeArtifact.ContainerConfigurationMember | AgentRuntimeArtifact.$UnknownMember;
483
+ /**
484
+ * @public
485
+ */
486
+ export declare namespace AgentRuntimeArtifact {
487
+ /**
488
+ * <p>The container configuration for the agent artifact.</p>
489
+ * @public
490
+ */
491
+ interface ContainerConfigurationMember {
492
+ containerConfiguration: ContainerConfiguration;
493
+ $unknown?: never;
494
+ }
495
+ /**
496
+ * @public
497
+ */
498
+ interface $UnknownMember {
499
+ containerConfiguration?: never;
500
+ $unknown: [string, any];
501
+ }
502
+ interface Visitor<T> {
503
+ containerConfiguration: (value: ContainerConfiguration) => T;
504
+ _: (name: string, value: any) => T;
505
+ }
506
+ const visit: <T>(value: AgentRuntimeArtifact, visitor: Visitor<T>) => T;
507
+ }
560
508
  /**
561
509
  * <p>Configuration for inbound JWT-based authorization, specifying how incoming requests should be authenticated.</p>
562
510
  * @public
@@ -614,21 +562,43 @@ export declare namespace AuthorizerConfiguration {
614
562
  */
615
563
  export declare const NetworkMode: {
616
564
  readonly PUBLIC: "PUBLIC";
565
+ readonly VPC: "VPC";
617
566
  };
618
567
  /**
619
568
  * @public
620
569
  */
621
570
  export type NetworkMode = (typeof NetworkMode)[keyof typeof NetworkMode];
571
+ /**
572
+ * <p>VpcConfig for the Agent.</p>
573
+ * @public
574
+ */
575
+ export interface VpcConfig {
576
+ /**
577
+ * <p>The security groups associated with the VPC configuration.</p>
578
+ * @public
579
+ */
580
+ securityGroups: string[] | undefined;
581
+ /**
582
+ * <p>The subnets associated with the VPC configuration.</p>
583
+ * @public
584
+ */
585
+ subnets: string[] | undefined;
586
+ }
622
587
  /**
623
588
  * <p>SecurityConfig for the Agent.</p>
624
589
  * @public
625
590
  */
626
591
  export interface NetworkConfiguration {
627
592
  /**
628
- * <p>The network mode for the agent runtime.</p>
593
+ * <p>The network mode for the AgentCore Runtime.</p>
629
594
  * @public
630
595
  */
631
596
  networkMode: NetworkMode | undefined;
597
+ /**
598
+ * <p>The network mode configuration for the AgentCore Runtime.</p>
599
+ * @public
600
+ */
601
+ networkModeConfig?: VpcConfig | undefined;
632
602
  }
633
603
  /**
634
604
  * @public
@@ -653,32 +623,62 @@ export interface ProtocolConfiguration {
653
623
  */
654
624
  serverProtocol: ServerProtocol | undefined;
655
625
  }
626
+ /**
627
+ * <p>Configuration for HTTP request headers that will be passed through to the runtime.</p>
628
+ * @public
629
+ */
630
+ export type RequestHeaderConfiguration = RequestHeaderConfiguration.RequestHeaderAllowlistMember | RequestHeaderConfiguration.$UnknownMember;
631
+ /**
632
+ * @public
633
+ */
634
+ export declare namespace RequestHeaderConfiguration {
635
+ /**
636
+ * <p>A list of HTTP request headers that are allowed to be passed through to the runtime.</p>
637
+ * @public
638
+ */
639
+ interface RequestHeaderAllowlistMember {
640
+ requestHeaderAllowlist: string[];
641
+ $unknown?: never;
642
+ }
643
+ /**
644
+ * @public
645
+ */
646
+ interface $UnknownMember {
647
+ requestHeaderAllowlist?: never;
648
+ $unknown: [string, any];
649
+ }
650
+ interface Visitor<T> {
651
+ requestHeaderAllowlist: (value: string[]) => T;
652
+ _: (name: string, value: any) => T;
653
+ }
654
+ const visit: <T>(value: RequestHeaderConfiguration, visitor: Visitor<T>) => T;
655
+ }
656
656
  /**
657
657
  * @public
658
658
  */
659
659
  export interface CreateAgentRuntimeRequest {
660
660
  /**
661
- * <p>The name of the secure agent.</p>
661
+ * <p>The name of the AgentCore Runtime.</p>
662
662
  * @public
663
663
  */
664
664
  agentRuntimeName: string | undefined;
665
665
  /**
666
- * <p>The description of the agent runtime.</p>
666
+ * <p>The description of the AgentCore Runtime.</p>
667
667
  * @public
668
668
  */
669
669
  description?: string | undefined;
670
670
  /**
671
- * <p>The artifact of the agent.</p>
671
+ * <p>The artifact of the AgentCore Runtime.</p>
672
672
  * @public
673
673
  */
674
- agentRuntimeArtifact: AgentArtifact | undefined;
674
+ agentRuntimeArtifact: AgentRuntimeArtifact | undefined;
675
675
  /**
676
- * <p>The IAM role ARN that provides permissions for the agent runtime.</p>
676
+ * <p>The IAM role ARN that provides permissions for the AgentCore Runtime.</p>
677
677
  * @public
678
678
  */
679
679
  roleArn: string | undefined;
680
680
  /**
681
- * <p>The network configuration for the agent runtime.</p>
681
+ * <p>The network configuration for the AgentCore Runtime.</p>
682
682
  * @public
683
683
  */
684
684
  networkConfiguration: NetworkConfiguration | undefined;
@@ -693,16 +693,42 @@ export interface CreateAgentRuntimeRequest {
693
693
  */
694
694
  clientToken?: string | undefined;
695
695
  /**
696
- * <p>Environment variables to set in the agent runtime environment.</p>
696
+ * <p>Environment variables to set in the AgentCore Runtime environment.</p>
697
697
  * @public
698
698
  */
699
699
  environmentVariables?: Record<string, string> | undefined;
700
700
  /**
701
- * <p>The authorizer configuration for the agent runtime.</p>
701
+ * <p>The authorizer configuration for the AgentCore Runtime.</p>
702
702
  * @public
703
703
  */
704
704
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
705
+ /**
706
+ * <p>Configuration for HTTP request headers that will be passed through to the runtime.</p>
707
+ * @public
708
+ */
709
+ requestHeaderConfiguration?: RequestHeaderConfiguration | undefined;
710
+ /**
711
+ * <p>A map of tag keys and values to assign to the agent runtime. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
712
+ * @public
713
+ */
714
+ tags?: Record<string, string> | undefined;
705
715
  }
716
+ /**
717
+ * @public
718
+ * @enum
719
+ */
720
+ export declare const AgentRuntimeStatus: {
721
+ readonly CREATE_FAILED: "CREATE_FAILED";
722
+ readonly CREATING: "CREATING";
723
+ readonly DELETING: "DELETING";
724
+ readonly READY: "READY";
725
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
726
+ readonly UPDATING: "UPDATING";
727
+ };
728
+ /**
729
+ * @public
730
+ */
731
+ export type AgentRuntimeStatus = (typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
706
732
  /**
707
733
  * <p>The information about the workload identity.</p>
708
734
  * @public
@@ -719,42 +745,42 @@ export interface WorkloadIdentityDetails {
719
745
  */
720
746
  export interface CreateAgentRuntimeResponse {
721
747
  /**
722
- * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
748
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
723
749
  * @public
724
750
  */
725
751
  agentRuntimeArn: string | undefined;
726
752
  /**
727
- * <p>The workload identity details for the agent runtime.</p>
753
+ * <p>The workload identity details for the AgentCore Runtime.</p>
728
754
  * @public
729
755
  */
730
756
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
731
757
  /**
732
- * <p>The unique identifier of the agent runtime.</p>
758
+ * <p>The unique identifier of the AgentCore Runtime.</p>
733
759
  * @public
734
760
  */
735
761
  agentRuntimeId: string | undefined;
736
762
  /**
737
- * <p>The version of the agent runtime.</p>
763
+ * <p>The version of the AgentCore Runtime.</p>
738
764
  * @public
739
765
  */
740
766
  agentRuntimeVersion: string | undefined;
741
767
  /**
742
- * <p>The timestamp when the agent runtime was created.</p>
768
+ * <p>The timestamp when the AgentCore Runtime was created.</p>
743
769
  * @public
744
770
  */
745
771
  createdAt: Date | undefined;
746
772
  /**
747
- * <p>The current status of the agent runtime.</p>
773
+ * <p>The current status of the AgentCore Runtime.</p>
748
774
  * @public
749
775
  */
750
- status: AgentStatus | undefined;
776
+ status: AgentRuntimeStatus | undefined;
751
777
  }
752
778
  /**
753
779
  * @public
754
780
  */
755
781
  export interface DeleteAgentRuntimeRequest {
756
782
  /**
757
- * <p>The unique identifier of the agent runtime to delete.</p>
783
+ * <p>The unique identifier of the AgentCore Runtime to delete.</p>
758
784
  * @public
759
785
  */
760
786
  agentRuntimeId: string | undefined;
@@ -764,22 +790,22 @@ export interface DeleteAgentRuntimeRequest {
764
790
  */
765
791
  export interface DeleteAgentRuntimeResponse {
766
792
  /**
767
- * <p>The current status of the agent runtime deletion.</p>
793
+ * <p>The current status of the AgentCore Runtime deletion.</p>
768
794
  * @public
769
795
  */
770
- status: AgentStatus | undefined;
796
+ status: AgentRuntimeStatus | undefined;
771
797
  }
772
798
  /**
773
799
  * @public
774
800
  */
775
801
  export interface GetAgentRuntimeRequest {
776
802
  /**
777
- * <p>The unique identifier of the agent runtime to retrieve.</p>
803
+ * <p>The unique identifier of the AgentCore Runtime to retrieve.</p>
778
804
  * @public
779
805
  */
780
806
  agentRuntimeId: string | undefined;
781
807
  /**
782
- * <p>The version of the agent runtime to retrieve.</p>
808
+ * <p>The version of the AgentCore Runtime to retrieve.</p>
783
809
  * @public
784
810
  */
785
811
  agentRuntimeVersion?: string | undefined;
@@ -789,57 +815,57 @@ export interface GetAgentRuntimeRequest {
789
815
  */
790
816
  export interface GetAgentRuntimeResponse {
791
817
  /**
792
- * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
818
+ * <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
793
819
  * @public
794
820
  */
795
821
  agentRuntimeArn: string | undefined;
796
822
  /**
797
- * <p>The workload identity details for the agent runtime.</p>
823
+ * <p>The workload identity details for the AgentCore Runtime.</p>
798
824
  * @public
799
825
  */
800
826
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
801
827
  /**
802
- * <p>The name of the agent runtime.</p>
828
+ * <p>The name of the AgentCore Runtime.</p>
803
829
  * @public
804
830
  */
805
831
  agentRuntimeName: string | undefined;
806
832
  /**
807
- * <p>The description of the agent runtime.</p>
833
+ * <p>The description of the AgentCore Runtime.</p>
808
834
  * @public
809
835
  */
810
836
  description?: string | undefined;
811
837
  /**
812
- * <p>The unique identifier of the agent runtime.</p>
838
+ * <p>The unique identifier of the AgentCore Runtime.</p>
813
839
  * @public
814
840
  */
815
841
  agentRuntimeId: string | undefined;
816
842
  /**
817
- * <p>The version of the agent runtime.</p>
843
+ * <p>The version of the AgentCore Runtime.</p>
818
844
  * @public
819
845
  */
820
846
  agentRuntimeVersion: string | undefined;
821
847
  /**
822
- * <p>The timestamp when the agent runtime was created.</p>
848
+ * <p>The timestamp when the AgentCore Runtime was created.</p>
823
849
  * @public
824
850
  */
825
851
  createdAt: Date | undefined;
826
852
  /**
827
- * <p>The timestamp when the agent runtime was last updated.</p>
853
+ * <p>The timestamp when the AgentCore Runtime was last updated.</p>
828
854
  * @public
829
855
  */
830
856
  lastUpdatedAt: Date | undefined;
831
857
  /**
832
- * <p>The IAM role ARN that provides permissions for the agent runtime.</p>
858
+ * <p>The IAM role ARN that provides permissions for the AgentCore Runtime.</p>
833
859
  * @public
834
860
  */
835
861
  roleArn: string | undefined;
836
862
  /**
837
- * <p>The artifact of the agent runtime.</p>
863
+ * <p>The artifact of the AgentCore Runtime.</p>
838
864
  * @public
839
865
  */
840
- agentRuntimeArtifact?: AgentArtifact | undefined;
866
+ agentRuntimeArtifact?: AgentRuntimeArtifact | undefined;
841
867
  /**
842
- * <p>The network configuration for the agent runtime.</p>
868
+ * <p>The network configuration for the AgentCore Runtime.</p>
843
869
  * @public
844
870
  */
845
871
  networkConfiguration: NetworkConfiguration | undefined;
@@ -849,20 +875,25 @@ export interface GetAgentRuntimeResponse {
849
875
  */
850
876
  protocolConfiguration?: ProtocolConfiguration | undefined;
851
877
  /**
852
- * <p>Environment variables set in the agent runtime environment.</p>
878
+ * <p>Environment variables set in the AgentCore Runtime environment.</p>
853
879
  * @public
854
880
  */
855
881
  environmentVariables?: Record<string, string> | undefined;
856
882
  /**
857
- * <p>The authorizer configuration for the agent runtime.</p>
883
+ * <p>The authorizer configuration for the AgentCore Runtime.</p>
858
884
  * @public
859
885
  */
860
886
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
861
887
  /**
862
- * <p>The current status of the agent runtime.</p>
888
+ * <p>Configuration for HTTP request headers that will be passed through to the runtime.</p>
863
889
  * @public
864
890
  */
865
- status: AgentStatus | undefined;
891
+ requestHeaderConfiguration?: RequestHeaderConfiguration | undefined;
892
+ /**
893
+ * <p>The current status of the AgentCore Runtime.</p>
894
+ * @public
895
+ */
896
+ status: AgentRuntimeStatus | undefined;
866
897
  }
867
898
  /**
868
899
  * @public
@@ -879,15 +910,56 @@ export interface ListAgentRuntimesRequest {
879
910
  */
880
911
  nextToken?: string | undefined;
881
912
  }
913
+ /**
914
+ * <p>Contains information about an agent runtime. An agent runtime is the execution environment for a Amazon Bedrock Agent.</p>
915
+ * @public
916
+ */
917
+ export interface AgentRuntime {
918
+ /**
919
+ * <p>The Amazon Resource Name (ARN) of the agent runtime.</p>
920
+ * @public
921
+ */
922
+ agentRuntimeArn: string | undefined;
923
+ /**
924
+ * <p>The unique identifier of the agent runtime.</p>
925
+ * @public
926
+ */
927
+ agentRuntimeId: string | undefined;
928
+ /**
929
+ * <p>The version of the agent runtime.</p>
930
+ * @public
931
+ */
932
+ agentRuntimeVersion: string | undefined;
933
+ /**
934
+ * <p>The name of the agent runtime.</p>
935
+ * @public
936
+ */
937
+ agentRuntimeName: string | undefined;
938
+ /**
939
+ * <p>The description of the agent runtime.</p>
940
+ * @public
941
+ */
942
+ description: string | undefined;
943
+ /**
944
+ * <p>The timestamp when the agent runtime was last updated.</p>
945
+ * @public
946
+ */
947
+ lastUpdatedAt: Date | undefined;
948
+ /**
949
+ * <p>The current status of the agent runtime.</p>
950
+ * @public
951
+ */
952
+ status: AgentRuntimeStatus | undefined;
953
+ }
882
954
  /**
883
955
  * @public
884
956
  */
885
957
  export interface ListAgentRuntimesResponse {
886
958
  /**
887
- * <p>The list of agent runtimes.</p>
959
+ * <p>The list of AgentCore Runtime resources.</p>
888
960
  * @public
889
961
  */
890
- agentRuntimes: Agent[] | undefined;
962
+ agentRuntimes: AgentRuntime[] | undefined;
891
963
  /**
892
964
  * <p>A token to retrieve the next page of results.</p>
893
965
  * @public
@@ -899,7 +971,7 @@ export interface ListAgentRuntimesResponse {
899
971
  */
900
972
  export interface ListAgentRuntimeVersionsRequest {
901
973
  /**
902
- * <p>The unique identifier of the agent runtime to list versions for.</p>
974
+ * <p>The unique identifier of the AgentCore Runtime to list versions for.</p>
903
975
  * @public
904
976
  */
905
977
  agentRuntimeId: string | undefined;
@@ -919,10 +991,10 @@ export interface ListAgentRuntimeVersionsRequest {
919
991
  */
920
992
  export interface ListAgentRuntimeVersionsResponse {
921
993
  /**
922
- * <p>The list of agent runtime versions.</p>
994
+ * <p>The list of AgentCore Runtime versions.</p>
923
995
  * @public
924
996
  */
925
- agentRuntimes: Agent[] | undefined;
997
+ agentRuntimes: AgentRuntime[] | undefined;
926
998
  /**
927
999
  * <p>A token to retrieve the next page of results.</p>
928
1000
  * @public
@@ -934,27 +1006,27 @@ export interface ListAgentRuntimeVersionsResponse {
934
1006
  */
935
1007
  export interface UpdateAgentRuntimeRequest {
936
1008
  /**
937
- * <p>The unique identifier of the agent runtime to update.</p>
1009
+ * <p>The unique identifier of the AgentCore Runtime to update.</p>
938
1010
  * @public
939
1011
  */
940
1012
  agentRuntimeId: string | undefined;
941
1013
  /**
942
- * <p>The updated description of the agent runtime.</p>
1014
+ * <p>The updated description of the AgentCore Runtime.</p>
943
1015
  * @public
944
1016
  */
945
1017
  description?: string | undefined;
946
1018
  /**
947
- * <p>The updated artifact of the agent runtime.</p>
1019
+ * <p>The updated artifact of the AgentCore Runtime.</p>
948
1020
  * @public
949
1021
  */
950
- agentRuntimeArtifact: AgentArtifact | undefined;
1022
+ agentRuntimeArtifact: AgentRuntimeArtifact | undefined;
951
1023
  /**
952
- * <p>The updated IAM role ARN that provides permissions for the agent runtime.</p>
1024
+ * <p>The updated IAM role ARN that provides permissions for the AgentCore Runtime.</p>
953
1025
  * @public
954
1026
  */
955
1027
  roleArn: string | undefined;
956
1028
  /**
957
- * <p>The updated network configuration for the agent runtime.</p>
1029
+ * <p>The updated network configuration for the AgentCore Runtime.</p>
958
1030
  * @public
959
1031
  */
960
1032
  networkConfiguration: NetworkConfiguration | undefined;
@@ -969,55 +1041,60 @@ export interface UpdateAgentRuntimeRequest {
969
1041
  */
970
1042
  clientToken?: string | undefined;
971
1043
  /**
972
- * <p>Updated environment variables to set in the agent runtime environment.</p>
1044
+ * <p>Updated environment variables to set in the AgentCore Runtime environment.</p>
973
1045
  * @public
974
1046
  */
975
1047
  environmentVariables?: Record<string, string> | undefined;
976
1048
  /**
977
- * <p>The updated authorizer configuration for the agent runtime.</p>
1049
+ * <p>The updated authorizer configuration for the AgentCore Runtime.</p>
978
1050
  * @public
979
1051
  */
980
1052
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
1053
+ /**
1054
+ * <p>The updated configuration for HTTP request headers that will be passed through to the runtime.</p>
1055
+ * @public
1056
+ */
1057
+ requestHeaderConfiguration?: RequestHeaderConfiguration | undefined;
981
1058
  }
982
1059
  /**
983
1060
  * @public
984
1061
  */
985
1062
  export interface UpdateAgentRuntimeResponse {
986
1063
  /**
987
- * <p>The Amazon Resource Name (ARN) of the updated agent runtime.</p>
1064
+ * <p>The Amazon Resource Name (ARN) of the updated AgentCore Runtime.</p>
988
1065
  * @public
989
1066
  */
990
1067
  agentRuntimeArn: string | undefined;
991
1068
  /**
992
- * <p>The unique identifier of the updated agent runtime.</p>
1069
+ * <p>The unique identifier of the updated AgentCore Runtime.</p>
993
1070
  * @public
994
1071
  */
995
1072
  agentRuntimeId: string | undefined;
996
1073
  /**
997
- * <p>The workload identity details for the updated agent runtime.</p>
1074
+ * <p>The workload identity details for the updated AgentCore Runtime.</p>
998
1075
  * @public
999
1076
  */
1000
1077
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
1001
1078
  /**
1002
- * <p>The version of the updated agent runtime.</p>
1079
+ * <p>The version of the updated AgentCore Runtime.</p>
1003
1080
  * @public
1004
1081
  */
1005
1082
  agentRuntimeVersion: string | undefined;
1006
1083
  /**
1007
- * <p>The timestamp when the agent runtime was created.</p>
1084
+ * <p>The timestamp when the AgentCore Runtime was created.</p>
1008
1085
  * @public
1009
1086
  */
1010
1087
  createdAt: Date | undefined;
1011
1088
  /**
1012
- * <p>The timestamp when the agent runtime was last updated.</p>
1089
+ * <p>The timestamp when the AgentCore Runtime was last updated.</p>
1013
1090
  * @public
1014
1091
  */
1015
1092
  lastUpdatedAt: Date | undefined;
1016
1093
  /**
1017
- * <p>The current status of the updated agent runtime.</p>
1094
+ * <p>The current status of the updated AgentCore Runtime.</p>
1018
1095
  * @public
1019
1096
  */
1020
- status: AgentStatus | undefined;
1097
+ status: AgentRuntimeStatus | undefined;
1021
1098
  }
1022
1099
  /**
1023
1100
  * @public
@@ -1275,6 +1352,7 @@ export interface UpdateApiKeyCredentialProviderResponse {
1275
1352
  */
1276
1353
  export declare const BrowserNetworkMode: {
1277
1354
  readonly PUBLIC: "PUBLIC";
1355
+ readonly VPC: "VPC";
1278
1356
  };
1279
1357
  /**
1280
1358
  * @public
@@ -1290,6 +1368,11 @@ export interface BrowserNetworkConfiguration {
1290
1368
  * @public
1291
1369
  */
1292
1370
  networkMode: BrowserNetworkMode | undefined;
1371
+ /**
1372
+ * <p>VpcConfig for the Agent.</p>
1373
+ * @public
1374
+ */
1375
+ vpcConfig?: VpcConfig | undefined;
1293
1376
  }
1294
1377
  /**
1295
1378
  * <p>The Amazon S3 location for storing data. This structure defines where in Amazon S3 data is stored.</p>
@@ -1357,6 +1440,11 @@ export interface CreateBrowserRequest {
1357
1440
  * @public
1358
1441
  */
1359
1442
  clientToken?: string | undefined;
1443
+ /**
1444
+ * <p>A map of tag keys and values to assign to the browser. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
1445
+ * @public
1446
+ */
1447
+ tags?: Record<string, string> | undefined;
1360
1448
  }
1361
1449
  /**
1362
1450
  * @public
@@ -1488,6 +1576,11 @@ export interface GetBrowserResponse {
1488
1576
  * @public
1489
1577
  */
1490
1578
  status: BrowserStatus | undefined;
1579
+ /**
1580
+ * <p>The reason for failure if the browser is in a failed state.</p>
1581
+ * @public
1582
+ */
1583
+ failureReason?: string | undefined;
1491
1584
  /**
1492
1585
  * <p>The timestamp when the browser was created.</p>
1493
1586
  * @public
@@ -1594,6 +1687,7 @@ export interface ListBrowsersResponse {
1594
1687
  export declare const CodeInterpreterNetworkMode: {
1595
1688
  readonly PUBLIC: "PUBLIC";
1596
1689
  readonly SANDBOX: "SANDBOX";
1690
+ readonly VPC: "VPC";
1597
1691
  };
1598
1692
  /**
1599
1693
  * @public
@@ -1609,6 +1703,11 @@ export interface CodeInterpreterNetworkConfiguration {
1609
1703
  * @public
1610
1704
  */
1611
1705
  networkMode: CodeInterpreterNetworkMode | undefined;
1706
+ /**
1707
+ * <p>VpcConfig for the Agent.</p>
1708
+ * @public
1709
+ */
1710
+ vpcConfig?: VpcConfig | undefined;
1612
1711
  }
1613
1712
  /**
1614
1713
  * @public
@@ -1639,6 +1738,11 @@ export interface CreateCodeInterpreterRequest {
1639
1738
  * @public
1640
1739
  */
1641
1740
  clientToken?: string | undefined;
1741
+ /**
1742
+ * <p>A map of tag keys and values to assign to the code interpreter. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
1743
+ * @public
1744
+ */
1745
+ tags?: Record<string, string> | undefined;
1642
1746
  }
1643
1747
  /**
1644
1748
  * @public
@@ -1765,6 +1869,11 @@ export interface GetCodeInterpreterResponse {
1765
1869
  * @public
1766
1870
  */
1767
1871
  status: CodeInterpreterStatus | undefined;
1872
+ /**
1873
+ * <p>The reason for failure if the code interpreter is in a failed state.</p>
1874
+ * @public
1875
+ */
1876
+ failureReason?: string | undefined;
1768
1877
  /**
1769
1878
  * <p>The timestamp when the code interpreter was created.</p>
1770
1879
  * @public
@@ -1962,7 +2071,7 @@ export interface CreateGatewayRequest {
1962
2071
  */
1963
2072
  description?: string | undefined;
1964
2073
  /**
1965
- * <p>A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request but does not return an error.</p>
2074
+ * <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, the service ignores the request, but does not return an error. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>.</p>
1966
2075
  * @public
1967
2076
  */
1968
2077
  clientToken?: string | undefined;
@@ -1972,12 +2081,12 @@ export interface CreateGatewayRequest {
1972
2081
  */
1973
2082
  roleArn: string | undefined;
1974
2083
  /**
1975
- * <p>The protocol type for the gateway. Currently supports MCP (Model Context Protocol).</p>
2084
+ * <p>The protocol type for the gateway.</p>
1976
2085
  * @public
1977
2086
  */
1978
2087
  protocolType: GatewayProtocolType | undefined;
1979
2088
  /**
1980
- * <p>The configuration settings for the protocol specified in the protocolType parameter.</p>
2089
+ * <p>The configuration settings for the protocol specified in the <code>protocolType</code> parameter.</p>
1981
2090
  * @public
1982
2091
  */
1983
2092
  protocolConfiguration?: GatewayProtocolConfiguration | undefined;
@@ -1987,7 +2096,7 @@ export interface CreateGatewayRequest {
1987
2096
  */
1988
2097
  authorizerType: AuthorizerType | undefined;
1989
2098
  /**
1990
- * <p>The authorizer configuration for the Gateway.</p>
2099
+ * <p>The authorizer configuration for the gateway.</p>
1991
2100
  * @public
1992
2101
  */
1993
2102
  authorizerConfiguration: AuthorizerConfiguration | undefined;
@@ -1997,7 +2106,7 @@ export interface CreateGatewayRequest {
1997
2106
  */
1998
2107
  kmsKeyArn?: string | undefined;
1999
2108
  /**
2000
- * <p>The verbosity of exception messages. Use DEBUG mode to see granular exception messages from a Gateway. If this parameter is not set, exception messages are by default sanitized for presentation to end users.</p>
2109
+ * <p>The level of detail in error messages returned when invoking the gateway.</p> <ul> <li> <p>If the value is <code>DEBUG</code>, granular exception messages are returned to help a user debug the gateway.</p> </li> <li> <p>If the value is omitted, a generic error message is returned to the end user.</p> </li> </ul>
2001
2110
  * @public
2002
2111
  */
2003
2112
  exceptionLevel?: ExceptionLevel | undefined;
@@ -2088,7 +2197,7 @@ export interface CreateGatewayResponse {
2088
2197
  */
2089
2198
  authorizerType: AuthorizerType | undefined;
2090
2199
  /**
2091
- * <p>The authorizer configuration for the created Gateway.</p>
2200
+ * <p>The authorizer configuration for the created gateway.</p>
2092
2201
  * @public
2093
2202
  */
2094
2203
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
@@ -2098,12 +2207,12 @@ export interface CreateGatewayResponse {
2098
2207
  */
2099
2208
  kmsKeyArn?: string | undefined;
2100
2209
  /**
2101
- * <p>The workload identity details for the created Gateway.</p>
2210
+ * <p>The workload identity details for the created gateway.</p>
2102
2211
  * @public
2103
2212
  */
2104
2213
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
2105
2214
  /**
2106
- * <p>The verbosity of exception messages. Use DEBUG mode to see granular exception messages from a Gateway. If this parameter is not set, exception messages are by default sanitized for presentation to end users.</p>
2215
+ * <p>The level of detail in error messages returned when invoking the gateway.</p> <ul> <li> <p>If the value is <code>DEBUG</code>, granular exception messages are returned to help a user debug the gateway.</p> </li> <li> <p>If the value is omitted, a generic error message is returned to the end user.</p> </li> </ul>
2107
2216
  * @public
2108
2217
  */
2109
2218
  exceptionLevel?: ExceptionLevel | undefined;
@@ -2113,7 +2222,7 @@ export interface CreateGatewayResponse {
2113
2222
  */
2114
2223
  export interface DeleteGatewayRequest {
2115
2224
  /**
2116
- * <p>The identifier of the gateway to delete. This can be either the gateway ID or the gateway ARN.</p>
2225
+ * <p>The identifier of the gateway to delete.</p>
2117
2226
  * @public
2118
2227
  */
2119
2228
  gatewayIdentifier: string | undefined;
@@ -2123,17 +2232,17 @@ export interface DeleteGatewayRequest {
2123
2232
  */
2124
2233
  export interface DeleteGatewayResponse {
2125
2234
  /**
2126
- * <p>The unique identifier of the deleted Gateway.</p>
2235
+ * <p>The unique identifier of the deleted gateway.</p>
2127
2236
  * @public
2128
2237
  */
2129
2238
  gatewayId: string | undefined;
2130
2239
  /**
2131
- * <p>The current status of the Gateway deletion.</p>
2240
+ * <p>The current status of the gateway deletion.</p>
2132
2241
  * @public
2133
2242
  */
2134
2243
  status: GatewayStatus | undefined;
2135
2244
  /**
2136
- * <p>The reasons for the current status of the Gateway deletion.</p>
2245
+ * <p>The reasons for the current status of the gateway deletion.</p>
2137
2246
  * @public
2138
2247
  */
2139
2248
  statusReasons?: string[] | undefined;
@@ -2143,7 +2252,7 @@ export interface DeleteGatewayResponse {
2143
2252
  */
2144
2253
  export interface GetGatewayRequest {
2145
2254
  /**
2146
- * <p>The identifier of the gateway to retrieve. This can be either the gateway ID or the gateway ARN.</p>
2255
+ * <p>The identifier of the gateway to retrieve.</p>
2147
2256
  * @public
2148
2257
  */
2149
2258
  gatewayIdentifier: string | undefined;
@@ -2153,57 +2262,57 @@ export interface GetGatewayRequest {
2153
2262
  */
2154
2263
  export interface GetGatewayResponse {
2155
2264
  /**
2156
- * <p>The Amazon Resource Name (ARN) of the Gateway.</p>
2265
+ * <p>The Amazon Resource Name (ARN) of the gateway.</p>
2157
2266
  * @public
2158
2267
  */
2159
2268
  gatewayArn: string | undefined;
2160
2269
  /**
2161
- * <p>The unique identifier of the Gateway.</p>
2270
+ * <p>The unique identifier of the gateway.</p>
2162
2271
  * @public
2163
2272
  */
2164
2273
  gatewayId: string | undefined;
2165
2274
  /**
2166
- * <p>An endpoint for invoking Gateway.</p>
2275
+ * <p>An endpoint for invoking gateway.</p>
2167
2276
  * @public
2168
2277
  */
2169
2278
  gatewayUrl?: string | undefined;
2170
2279
  /**
2171
- * <p>The timestamp when the Gateway was created.</p>
2280
+ * <p>The timestamp when the gateway was created.</p>
2172
2281
  * @public
2173
2282
  */
2174
2283
  createdAt: Date | undefined;
2175
2284
  /**
2176
- * <p>The timestamp when the Gateway was last updated.</p>
2285
+ * <p>The timestamp when the gateway was last updated.</p>
2177
2286
  * @public
2178
2287
  */
2179
2288
  updatedAt: Date | undefined;
2180
2289
  /**
2181
- * <p>The current status of the Gateway.</p>
2290
+ * <p>The current status of the gateway.</p>
2182
2291
  * @public
2183
2292
  */
2184
2293
  status: GatewayStatus | undefined;
2185
2294
  /**
2186
- * <p>The reasons for the current status of the Gateway.</p>
2295
+ * <p>The reasons for the current status of the gateway.</p>
2187
2296
  * @public
2188
2297
  */
2189
2298
  statusReasons?: string[] | undefined;
2190
2299
  /**
2191
- * <p>The name of the Gateway.</p>
2300
+ * <p>The name of the gateway.</p>
2192
2301
  * @public
2193
2302
  */
2194
2303
  name: string | undefined;
2195
2304
  /**
2196
- * <p>The description of the Gateway.</p>
2305
+ * <p>The description of the gateway.</p>
2197
2306
  * @public
2198
2307
  */
2199
2308
  description?: string | undefined;
2200
2309
  /**
2201
- * <p>The IAM role ARN that provides permissions for the Gateway.</p>
2310
+ * <p>The IAM role ARN that provides permissions for the gateway.</p>
2202
2311
  * @public
2203
2312
  */
2204
2313
  roleArn?: string | undefined;
2205
2314
  /**
2206
- * <p>Protocol applied to a Gateway.</p>
2315
+ * <p>Protocol applied to a gateway.</p>
2207
2316
  * @public
2208
2317
  */
2209
2318
  protocolType: GatewayProtocolType | undefined;
@@ -2218,22 +2327,22 @@ export interface GetGatewayResponse {
2218
2327
  */
2219
2328
  authorizerType: AuthorizerType | undefined;
2220
2329
  /**
2221
- * <p>The authorizer configuration for the Gateway.</p>
2330
+ * <p>The authorizer configuration for the gateway.</p>
2222
2331
  * @public
2223
2332
  */
2224
2333
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
2225
2334
  /**
2226
- * <p>The ARN of the KMS key used to encrypt the Gateway.</p>
2335
+ * <p>The Amazon Resource Name (ARN) of the KMS key used to encrypt the gateway.</p>
2227
2336
  * @public
2228
2337
  */
2229
2338
  kmsKeyArn?: string | undefined;
2230
2339
  /**
2231
- * <p>The workload identity details for the Gateway.</p>
2340
+ * <p>The workload identity details for the gateway.</p>
2232
2341
  * @public
2233
2342
  */
2234
2343
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
2235
2344
  /**
2236
- * <p>The verbosity of exception messages. Use DEBUG mode to see granular exception messages from a Gateway. If this parameter is not set, exception messages are by default sanitized for presentation to end users.</p>
2345
+ * <p>The level of detail in error messages returned when invoking the gateway.</p> <ul> <li> <p>If the value is <code>DEBUG</code>, granular exception messages are returned to help a user debug the gateway.</p> </li> <li> <p>If the value is omitted, a generic error message is returned to the end user.</p> </li> </ul>
2237
2346
  * @public
2238
2347
  */
2239
2348
  exceptionLevel?: ExceptionLevel | undefined;
@@ -2243,12 +2352,12 @@ export interface GetGatewayResponse {
2243
2352
  */
2244
2353
  export interface ListGatewaysRequest {
2245
2354
  /**
2246
- * <p>The maximum number of results to return in a single call. The default value is 10. The maximum value is 50.</p>
2355
+ * <p>The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the <code>nextToken</code> field when making another request to return the next batch of results.</p>
2247
2356
  * @public
2248
2357
  */
2249
2358
  maxResults?: number | undefined;
2250
2359
  /**
2251
- * <p>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.</p>
2360
+ * <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, enter the token returned in the <code>nextToken</code> field in the response in this field to return the next batch of results.</p>
2252
2361
  * @public
2253
2362
  */
2254
2363
  nextToken?: string | undefined;
@@ -2304,12 +2413,12 @@ export interface GatewaySummary {
2304
2413
  */
2305
2414
  export interface ListGatewaysResponse {
2306
2415
  /**
2307
- * <p>The list of Gateway summaries.</p>
2416
+ * <p>The list of gateway summaries.</p>
2308
2417
  * @public
2309
2418
  */
2310
2419
  items: GatewaySummary[] | undefined;
2311
2420
  /**
2312
- * <p>Opaque continuation token for the next paginated response.</p>
2421
+ * <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, use this token when making another request in the <code>nextToken</code> field to return the next batch of results.</p>
2313
2422
  * @public
2314
2423
  */
2315
2424
  nextToken?: string | undefined;
@@ -2319,27 +2428,27 @@ export interface ListGatewaysResponse {
2319
2428
  */
2320
2429
  export interface UpdateGatewayRequest {
2321
2430
  /**
2322
- * <p>The identifier of the gateway to update. This can be either the gateway ID or the gateway ARN.</p>
2431
+ * <p>The identifier of the gateway to update.</p>
2323
2432
  * @public
2324
2433
  */
2325
2434
  gatewayIdentifier: string | undefined;
2326
2435
  /**
2327
- * <p>The updated name for the Gateway.</p>
2436
+ * <p>The name of the gateway. This name must be the same as the one when the gateway was created.</p>
2328
2437
  * @public
2329
2438
  */
2330
2439
  name: string | undefined;
2331
2440
  /**
2332
- * <p>The updated description for the Gateway.</p>
2441
+ * <p>The updated description for the gateway.</p>
2333
2442
  * @public
2334
2443
  */
2335
2444
  description?: string | undefined;
2336
2445
  /**
2337
- * <p>The updated IAM role ARN that provides permissions for the Gateway.</p>
2446
+ * <p>The updated IAM role ARN that provides permissions for the gateway.</p>
2338
2447
  * @public
2339
2448
  */
2340
2449
  roleArn: string | undefined;
2341
2450
  /**
2342
- * <p>The updated protocol type for the Gateway.</p>
2451
+ * <p>The updated protocol type for the gateway.</p>
2343
2452
  * @public
2344
2453
  */
2345
2454
  protocolType: GatewayProtocolType | undefined;
@@ -2349,22 +2458,22 @@ export interface UpdateGatewayRequest {
2349
2458
  */
2350
2459
  protocolConfiguration?: GatewayProtocolConfiguration | undefined;
2351
2460
  /**
2352
- * <p>The updated authorizer type for the Gateway.</p>
2461
+ * <p>The updated authorizer type for the gateway.</p>
2353
2462
  * @public
2354
2463
  */
2355
2464
  authorizerType: AuthorizerType | undefined;
2356
2465
  /**
2357
- * <p>The updated authorizer configuration for the Gateway.</p>
2466
+ * <p>The updated authorizer configuration for the gateway.</p>
2358
2467
  * @public
2359
2468
  */
2360
2469
  authorizerConfiguration: AuthorizerConfiguration | undefined;
2361
2470
  /**
2362
- * <p>The updated ARN of the KMS key used to encrypt the Gateway.</p>
2471
+ * <p>The updated ARN of the KMS key used to encrypt the gateway.</p>
2363
2472
  * @public
2364
2473
  */
2365
2474
  kmsKeyArn?: string | undefined;
2366
2475
  /**
2367
- * <p>The verbosity of exception messages. Use DEBUG mode to see granular exception messages from a Gateway. If this parameter is not set, exception messages are by default sanitized for presentation to end users.</p>
2476
+ * <p>The level of detail in error messages returned when invoking the gateway.</p> <ul> <li> <p>If the value is <code>DEBUG</code>, granular exception messages are returned to help a user debug the gateway.</p> </li> <li> <p>If the value is omitted, a generic error message is returned to the end user.</p> </li> </ul>
2368
2477
  * @public
2369
2478
  */
2370
2479
  exceptionLevel?: ExceptionLevel | undefined;
@@ -2374,57 +2483,57 @@ export interface UpdateGatewayRequest {
2374
2483
  */
2375
2484
  export interface UpdateGatewayResponse {
2376
2485
  /**
2377
- * <p>The Amazon Resource Name (ARN) of the updated Gateway.</p>
2486
+ * <p>The Amazon Resource Name (ARN) of the updated gateway.</p>
2378
2487
  * @public
2379
2488
  */
2380
2489
  gatewayArn: string | undefined;
2381
2490
  /**
2382
- * <p>The unique identifier of the updated Gateway.</p>
2491
+ * <p>The unique identifier of the updated gateway.</p>
2383
2492
  * @public
2384
2493
  */
2385
2494
  gatewayId: string | undefined;
2386
2495
  /**
2387
- * <p>An endpoint for invoking the updated Gateway.</p>
2496
+ * <p>An endpoint for invoking the updated gateway.</p>
2388
2497
  * @public
2389
2498
  */
2390
2499
  gatewayUrl?: string | undefined;
2391
2500
  /**
2392
- * <p>The timestamp when the Gateway was created.</p>
2501
+ * <p>The timestamp when the gateway was created.</p>
2393
2502
  * @public
2394
2503
  */
2395
2504
  createdAt: Date | undefined;
2396
2505
  /**
2397
- * <p>The timestamp when the Gateway was last updated.</p>
2506
+ * <p>The timestamp when the gateway was last updated.</p>
2398
2507
  * @public
2399
2508
  */
2400
2509
  updatedAt: Date | undefined;
2401
2510
  /**
2402
- * <p>The current status of the updated Gateway.</p>
2511
+ * <p>The current status of the updated gateway.</p>
2403
2512
  * @public
2404
2513
  */
2405
2514
  status: GatewayStatus | undefined;
2406
2515
  /**
2407
- * <p>The reasons for the current status of the updated Gateway.</p>
2516
+ * <p>The reasons for the current status of the updated gateway.</p>
2408
2517
  * @public
2409
2518
  */
2410
2519
  statusReasons?: string[] | undefined;
2411
2520
  /**
2412
- * <p>The updated name of the Gateway.</p>
2521
+ * <p>The name of the gateway.</p>
2413
2522
  * @public
2414
2523
  */
2415
2524
  name: string | undefined;
2416
2525
  /**
2417
- * <p>The updated description of the Gateway.</p>
2526
+ * <p>The updated description of the gateway.</p>
2418
2527
  * @public
2419
2528
  */
2420
2529
  description?: string | undefined;
2421
2530
  /**
2422
- * <p>The updated IAM role ARN that provides permissions for the Gateway.</p>
2531
+ * <p>The updated IAM role ARN that provides permissions for the gateway.</p>
2423
2532
  * @public
2424
2533
  */
2425
2534
  roleArn?: string | undefined;
2426
2535
  /**
2427
- * <p>The updated protocol type for the Gateway.</p>
2536
+ * <p>The updated protocol type for the gateway.</p>
2428
2537
  * @public
2429
2538
  */
2430
2539
  protocolType: GatewayProtocolType | undefined;
@@ -2434,27 +2543,27 @@ export interface UpdateGatewayResponse {
2434
2543
  */
2435
2544
  protocolConfiguration?: GatewayProtocolConfiguration | undefined;
2436
2545
  /**
2437
- * <p>The updated authorizer type for the Gateway.</p>
2546
+ * <p>The updated authorizer type for the gateway.</p>
2438
2547
  * @public
2439
2548
  */
2440
2549
  authorizerType: AuthorizerType | undefined;
2441
2550
  /**
2442
- * <p>The updated authorizer configuration for the Gateway.</p>
2551
+ * <p>The updated authorizer configuration for the gateway.</p>
2443
2552
  * @public
2444
2553
  */
2445
2554
  authorizerConfiguration?: AuthorizerConfiguration | undefined;
2446
2555
  /**
2447
- * <p>The updated ARN of the KMS key used to encrypt the Gateway.</p>
2556
+ * <p>The updated ARN of the KMS key used to encrypt the gateway.</p>
2448
2557
  * @public
2449
2558
  */
2450
2559
  kmsKeyArn?: string | undefined;
2451
2560
  /**
2452
- * <p>The workload identity details for the updated Gateway.</p>
2561
+ * <p>The workload identity details for the updated gateway.</p>
2453
2562
  * @public
2454
2563
  */
2455
2564
  workloadIdentityDetails?: WorkloadIdentityDetails | undefined;
2456
2565
  /**
2457
- * <p>The verbosity of exception messages. Use DEBUG mode to see granular exception messages from a Gateway. If this parameter is not set, exception messages are by default sanitized for presentation to end users.</p>
2566
+ * <p>The level of detail in error messages returned when invoking the gateway.</p> <ul> <li> <p>If the value is <code>DEBUG</code>, granular exception messages are returned to help a user debug the gateway.</p> </li> <li> <p>If the value is omitted, a generic error message is returned to the end user.</p> </li> </ul>
2458
2567
  * @public
2459
2568
  */
2460
2569
  exceptionLevel?: ExceptionLevel | undefined;
@@ -2684,12 +2793,12 @@ export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
2684
2793
  */
2685
2794
  export interface DeleteGatewayTargetRequest {
2686
2795
  /**
2687
- * <p>The unique identifier of the Gateway associated with the target.</p>
2796
+ * <p>The unique identifier of the gateway associated with the target.</p>
2688
2797
  * @public
2689
2798
  */
2690
2799
  gatewayIdentifier: string | undefined;
2691
2800
  /**
2692
- * <p>The unique identifier of the Gateway Target to delete.</p>
2801
+ * <p>The unique identifier of the gateway target to delete.</p>
2693
2802
  * @public
2694
2803
  */
2695
2804
  targetId: string | undefined;
@@ -2699,22 +2808,22 @@ export interface DeleteGatewayTargetRequest {
2699
2808
  */
2700
2809
  export interface DeleteGatewayTargetResponse {
2701
2810
  /**
2702
- * <p>The Amazon Resource Name (ARN) of the Gateway.</p>
2811
+ * <p>The Amazon Resource Name (ARN) of the gateway.</p>
2703
2812
  * @public
2704
2813
  */
2705
2814
  gatewayArn: string | undefined;
2706
2815
  /**
2707
- * <p>The unique identifier of the deleted Gateway Target.</p>
2816
+ * <p>The unique identifier of the deleted gateway target.</p>
2708
2817
  * @public
2709
2818
  */
2710
2819
  targetId: string | undefined;
2711
2820
  /**
2712
- * <p>The current status of the Gateway Target deletion.</p>
2821
+ * <p>The current status of the gateway target deletion.</p>
2713
2822
  * @public
2714
2823
  */
2715
2824
  status: TargetStatus | undefined;
2716
2825
  /**
2717
- * <p>The reasons for the current status of the Gateway Target deletion.</p>
2826
+ * <p>The reasons for the current status of the gateway target deletion.</p>
2718
2827
  * @public
2719
2828
  */
2720
2829
  statusReasons?: string[] | undefined;
@@ -2724,7 +2833,7 @@ export interface DeleteGatewayTargetResponse {
2724
2833
  */
2725
2834
  export interface GetGatewayTargetRequest {
2726
2835
  /**
2727
- * <p>The identifier of the gateway that contains the target. This can be either the gateway ID or the gateway ARN.</p>
2836
+ * <p>The identifier of the gateway that contains the target.</p>
2728
2837
  * @public
2729
2838
  */
2730
2839
  gatewayIdentifier: string | undefined;
@@ -2739,17 +2848,17 @@ export interface GetGatewayTargetRequest {
2739
2848
  */
2740
2849
  export interface ListGatewayTargetsRequest {
2741
2850
  /**
2742
- * <p>The identifier of the gateway to list targets for. This can be either the gateway ID or the gateway ARN.</p>
2851
+ * <p>The identifier of the gateway to list targets for.</p>
2743
2852
  * @public
2744
2853
  */
2745
2854
  gatewayIdentifier: string | undefined;
2746
2855
  /**
2747
- * <p>The maximum number of results to return in a single call. The default value is 10. The maximum value is 50.</p>
2856
+ * <p>The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the <code>nextToken</code> field when making another request to return the next batch of results.</p>
2748
2857
  * @public
2749
2858
  */
2750
2859
  maxResults?: number | undefined;
2751
2860
  /**
2752
- * <p>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.</p>
2861
+ * <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, enter the token returned in the <code>nextToken</code> field in the response in this field to return the next batch of results.</p>
2753
2862
  * @public
2754
2863
  */
2755
2864
  nextToken?: string | undefined;
@@ -2795,12 +2904,12 @@ export interface TargetSummary {
2795
2904
  */
2796
2905
  export interface ListGatewayTargetsResponse {
2797
2906
  /**
2798
- * <p>The list of Gateway Target summaries.</p>
2907
+ * <p>The list of gateway target summaries.</p>
2799
2908
  * @public
2800
2909
  */
2801
2910
  items: TargetSummary[] | undefined;
2802
2911
  /**
2803
- * <p>Opaque continuation token for the next paginated response.</p>
2912
+ * <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, use this token when making another request in the <code>nextToken</code> field to return the next batch of results.</p>
2804
2913
  * @public
2805
2914
  */
2806
2915
  nextToken?: string | undefined;
@@ -2863,6 +2972,26 @@ export interface GetTokenVaultResponse {
2863
2972
  */
2864
2973
  lastModifiedDate: Date | undefined;
2865
2974
  }
2975
+ /**
2976
+ * @public
2977
+ */
2978
+ export interface ListTagsForResourceRequest {
2979
+ /**
2980
+ * <p>The Amazon Resource Name (ARN) of the resource for which you want to list tags.</p>
2981
+ * @public
2982
+ */
2983
+ resourceArn: string | undefined;
2984
+ }
2985
+ /**
2986
+ * @public
2987
+ */
2988
+ export interface ListTagsForResourceResponse {
2989
+ /**
2990
+ * <p>The tags associated with the resource.</p>
2991
+ * @public
2992
+ */
2993
+ tags?: Record<string, string> | undefined;
2994
+ }
2866
2995
  /**
2867
2996
  * <p>Input for semantic override consolidation configuration in a memory strategy.</p>
2868
2997
  * @public
@@ -3730,12 +3859,12 @@ export interface DeleteMemoryInput {
3730
3859
  */
3731
3860
  export interface DeleteMemoryOutput {
3732
3861
  /**
3733
- * <p>The unique identifier of the deleted memory.</p>
3862
+ * <p>The unique identifier of the deleted AgentCore Memory resource.</p>
3734
3863
  * @public
3735
3864
  */
3736
3865
  memoryId: string | undefined;
3737
3866
  /**
3738
- * <p>The current status of the memory deletion.</p>
3867
+ * <p>The current status of the AgentCore Memory resource deletion.</p>
3739
3868
  * @public
3740
3869
  */
3741
3870
  status?: MemoryStatus | undefined;
@@ -3755,7 +3884,7 @@ export interface GetMemoryInput {
3755
3884
  */
3756
3885
  export interface GetMemoryOutput {
3757
3886
  /**
3758
- * <p>The retrieved memory details.</p>
3887
+ * <p>The retrieved AgentCore Memory resource details.</p>
3759
3888
  * @public
3760
3889
  */
3761
3890
  memory: Memory | undefined;
@@ -3811,7 +3940,7 @@ export interface MemorySummary {
3811
3940
  */
3812
3941
  export interface ListMemoriesOutput {
3813
3942
  /**
3814
- * <p>The list of memory summaries.</p>
3943
+ * <p>The list of AgentCore Memory resource summaries.</p>
3815
3944
  * @public
3816
3945
  */
3817
3946
  memories: MemorySummary[] | undefined;
@@ -4068,7 +4197,7 @@ export interface UpdateMemoryInput {
4068
4197
  */
4069
4198
  memoryId: string | undefined;
4070
4199
  /**
4071
- * <p>The updated description of the memory.</p>
4200
+ * <p>The updated description of the AgentCore Memory resource.</p>
4072
4201
  * @public
4073
4202
  */
4074
4203
  description?: string | undefined;
@@ -4078,7 +4207,7 @@ export interface UpdateMemoryInput {
4078
4207
  */
4079
4208
  eventExpiryDuration?: number | undefined;
4080
4209
  /**
4081
- * <p>The ARN of the IAM role that provides permissions for the memory.</p>
4210
+ * <p>The ARN of the IAM role that provides permissions for the AgentCore Memory resource.</p>
4082
4211
  * @public
4083
4212
  */
4084
4213
  memoryExecutionRoleArn?: string | undefined;
@@ -4093,7 +4222,7 @@ export interface UpdateMemoryInput {
4093
4222
  */
4094
4223
  export interface UpdateMemoryOutput {
4095
4224
  /**
4096
- * <p>The updated memory details.</p>
4225
+ * <p>The updated AgentCore Memory resource details.</p>
4097
4226
  * @public
4098
4227
  */
4099
4228
  memory?: Memory | undefined;
@@ -4842,6 +4971,46 @@ export interface SetTokenVaultCMKResponse {
4842
4971
  */
4843
4972
  lastModifiedDate: Date | undefined;
4844
4973
  }
4974
+ /**
4975
+ * @public
4976
+ */
4977
+ export interface TagResourceRequest {
4978
+ /**
4979
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
4980
+ * @public
4981
+ */
4982
+ resourceArn: string | undefined;
4983
+ /**
4984
+ * <p>The tags to add to the resource. A tag is a key-value pair.</p>
4985
+ * @public
4986
+ */
4987
+ tags: Record<string, string> | undefined;
4988
+ }
4989
+ /**
4990
+ * @public
4991
+ */
4992
+ export interface TagResourceResponse {
4993
+ }
4994
+ /**
4995
+ * @public
4996
+ */
4997
+ export interface UntagResourceRequest {
4998
+ /**
4999
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
5000
+ * @public
5001
+ */
5002
+ resourceArn: string | undefined;
5003
+ /**
5004
+ * <p>The tag keys of the tags to remove from the resource.</p>
5005
+ * @public
5006
+ */
5007
+ tagKeys: string[] | undefined;
5008
+ }
5009
+ /**
5010
+ * @public
5011
+ */
5012
+ export interface UntagResourceResponse {
5013
+ }
4845
5014
  /**
4846
5015
  * @public
4847
5016
  */
@@ -5229,7 +5398,7 @@ export declare namespace TargetConfiguration {
5229
5398
  */
5230
5399
  export interface CreateGatewayTargetRequest {
5231
5400
  /**
5232
- * <p>The identifier of the gateway to create a target for. This can be either the gateway ID or the gateway ARN.</p>
5401
+ * <p>The identifier of the gateway to create a target for.</p>
5233
5402
  * @public
5234
5403
  */
5235
5404
  gatewayIdentifier: string | undefined;
@@ -5244,7 +5413,7 @@ export interface CreateGatewayTargetRequest {
5244
5413
  */
5245
5414
  description?: string | undefined;
5246
5415
  /**
5247
- * <p>A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request but does not return an error.</p>
5416
+ * <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, the service ignores the request, but does not return an error. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring idempotency</a>.</p>
5248
5417
  * @public
5249
5418
  */
5250
5419
  clientToken?: string | undefined;
@@ -5319,42 +5488,42 @@ export interface CreateGatewayTargetResponse {
5319
5488
  */
5320
5489
  export interface GetGatewayTargetResponse {
5321
5490
  /**
5322
- * <p>The Amazon Resource Name (ARN) of the Gateway.</p>
5491
+ * <p>The Amazon Resource Name (ARN) of the gateway.</p>
5323
5492
  * @public
5324
5493
  */
5325
5494
  gatewayArn: string | undefined;
5326
5495
  /**
5327
- * <p>The unique identifier of the Gateway Target.</p>
5496
+ * <p>The unique identifier of the gateway target.</p>
5328
5497
  * @public
5329
5498
  */
5330
5499
  targetId: string | undefined;
5331
5500
  /**
5332
- * <p>The timestamp when the Gateway Target was created.</p>
5501
+ * <p>The timestamp when the gateway target was created.</p>
5333
5502
  * @public
5334
5503
  */
5335
5504
  createdAt: Date | undefined;
5336
5505
  /**
5337
- * <p>The timestamp when the Gateway Target was last updated.</p>
5506
+ * <p>The timestamp when the gateway target was last updated.</p>
5338
5507
  * @public
5339
5508
  */
5340
5509
  updatedAt: Date | undefined;
5341
5510
  /**
5342
- * <p>The current status of the Gateway Target.</p>
5511
+ * <p>The current status of the gateway target.</p>
5343
5512
  * @public
5344
5513
  */
5345
5514
  status: TargetStatus | undefined;
5346
5515
  /**
5347
- * <p>The reasons for the current status of the Gateway Target.</p>
5516
+ * <p>The reasons for the current status of the gateway target.</p>
5348
5517
  * @public
5349
5518
  */
5350
5519
  statusReasons?: string[] | undefined;
5351
5520
  /**
5352
- * <p>The name of the Gateway Target.</p>
5521
+ * <p>The name of the gateway target.</p>
5353
5522
  * @public
5354
5523
  */
5355
5524
  name: string | undefined;
5356
5525
  /**
5357
- * <p>The description of the Gateway Target.</p>
5526
+ * <p>The description of the gateway target.</p>
5358
5527
  * @public
5359
5528
  */
5360
5529
  description?: string | undefined;
@@ -5364,7 +5533,7 @@ export interface GetGatewayTargetResponse {
5364
5533
  */
5365
5534
  targetConfiguration: TargetConfiguration | undefined;
5366
5535
  /**
5367
- * <p>The credential provider configurations for the Gateway Target.</p>
5536
+ * <p>The credential provider configurations for the gateway target.</p>
5368
5537
  * @public
5369
5538
  */
5370
5539
  credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
@@ -5374,22 +5543,22 @@ export interface GetGatewayTargetResponse {
5374
5543
  */
5375
5544
  export interface UpdateGatewayTargetRequest {
5376
5545
  /**
5377
- * <p>The unique identifier of the Gateway associated with the target.</p>
5546
+ * <p>The unique identifier of the gateway associated with the target.</p>
5378
5547
  * @public
5379
5548
  */
5380
5549
  gatewayIdentifier: string | undefined;
5381
5550
  /**
5382
- * <p>The unique identifier of the Gateway Target to update.</p>
5551
+ * <p>The unique identifier of the gateway target to update.</p>
5383
5552
  * @public
5384
5553
  */
5385
5554
  targetId: string | undefined;
5386
5555
  /**
5387
- * <p>The updated name for the Gateway Target.</p>
5556
+ * <p>The updated name for the gateway target.</p>
5388
5557
  * @public
5389
5558
  */
5390
5559
  name: string | undefined;
5391
5560
  /**
5392
- * <p>The updated description for the Gateway Target.</p>
5561
+ * <p>The updated description for the gateway target.</p>
5393
5562
  * @public
5394
5563
  */
5395
5564
  description?: string | undefined;
@@ -5399,7 +5568,7 @@ export interface UpdateGatewayTargetRequest {
5399
5568
  */
5400
5569
  targetConfiguration: TargetConfiguration | undefined;
5401
5570
  /**
5402
- * <p>The updated credential provider configurations for the Gateway Target.</p>
5571
+ * <p>The updated credential provider configurations for the gateway target.</p>
5403
5572
  * @public
5404
5573
  */
5405
5574
  credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
@@ -5409,42 +5578,42 @@ export interface UpdateGatewayTargetRequest {
5409
5578
  */
5410
5579
  export interface UpdateGatewayTargetResponse {
5411
5580
  /**
5412
- * <p>The Amazon Resource Name (ARN) of the Gateway.</p>
5581
+ * <p>The Amazon Resource Name (ARN) of the gateway.</p>
5413
5582
  * @public
5414
5583
  */
5415
5584
  gatewayArn: string | undefined;
5416
5585
  /**
5417
- * <p>The unique identifier of the updated Gateway Target.</p>
5586
+ * <p>The unique identifier of the updated gateway target.</p>
5418
5587
  * @public
5419
5588
  */
5420
5589
  targetId: string | undefined;
5421
5590
  /**
5422
- * <p>The timestamp when the Gateway Target was created.</p>
5591
+ * <p>The timestamp when the gateway target was created.</p>
5423
5592
  * @public
5424
5593
  */
5425
5594
  createdAt: Date | undefined;
5426
5595
  /**
5427
- * <p>The timestamp when the Gateway Target was last updated.</p>
5596
+ * <p>The timestamp when the gateway target was last updated.</p>
5428
5597
  * @public
5429
5598
  */
5430
5599
  updatedAt: Date | undefined;
5431
5600
  /**
5432
- * <p>The current status of the updated Gateway Target.</p>
5601
+ * <p>The current status of the updated gateway target.</p>
5433
5602
  * @public
5434
5603
  */
5435
5604
  status: TargetStatus | undefined;
5436
5605
  /**
5437
- * <p>The reasons for the current status of the updated Gateway Target.</p>
5606
+ * <p>The reasons for the current status of the updated gateway target.</p>
5438
5607
  * @public
5439
5608
  */
5440
5609
  statusReasons?: string[] | undefined;
5441
5610
  /**
5442
- * <p>The updated name of the Gateway Target.</p>
5611
+ * <p>The updated name of the gateway target.</p>
5443
5612
  * @public
5444
5613
  */
5445
5614
  name: string | undefined;
5446
5615
  /**
5447
- * <p>The updated description of the Gateway Target.</p>
5616
+ * <p>The updated description of the gateway target.</p>
5448
5617
  * @public
5449
5618
  */
5450
5619
  description?: string | undefined;
@@ -5454,19 +5623,11 @@ export interface UpdateGatewayTargetResponse {
5454
5623
  */
5455
5624
  targetConfiguration: TargetConfiguration | undefined;
5456
5625
  /**
5457
- * <p>The updated credential provider configurations for the Gateway Target.</p>
5626
+ * <p>The updated credential provider configurations for the gateway target.</p>
5458
5627
  * @public
5459
5628
  */
5460
5629
  credentialProviderConfigurations: CredentialProviderConfiguration[] | undefined;
5461
5630
  }
5462
- /**
5463
- * @internal
5464
- */
5465
- export declare const AgentFilterSensitiveLog: (obj: Agent) => any;
5466
- /**
5467
- * @internal
5468
- */
5469
- export declare const AgentEndpointFilterSensitiveLog: (obj: AgentEndpoint) => any;
5470
5631
  /**
5471
5632
  * @internal
5472
5633
  */
@@ -5483,6 +5644,10 @@ export declare const GetAgentRuntimeEndpointRequestFilterSensitiveLog: (obj: Get
5483
5644
  * @internal
5484
5645
  */
5485
5646
  export declare const GetAgentRuntimeEndpointResponseFilterSensitiveLog: (obj: GetAgentRuntimeEndpointResponse) => any;
5647
+ /**
5648
+ * @internal
5649
+ */
5650
+ export declare const AgentRuntimeEndpointFilterSensitiveLog: (obj: AgentRuntimeEndpoint) => any;
5486
5651
  /**
5487
5652
  * @internal
5488
5653
  */
@@ -5499,6 +5664,10 @@ export declare const CreateAgentRuntimeRequestFilterSensitiveLog: (obj: CreateAg
5499
5664
  * @internal
5500
5665
  */
5501
5666
  export declare const GetAgentRuntimeResponseFilterSensitiveLog: (obj: GetAgentRuntimeResponse) => any;
5667
+ /**
5668
+ * @internal
5669
+ */
5670
+ export declare const AgentRuntimeFilterSensitiveLog: (obj: AgentRuntime) => any;
5502
5671
  /**
5503
5672
  * @internal
5504
5673
  */