@aws-sdk/client-bedrock-agentcore-control 3.1070.0 → 3.1071.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 (113) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +143 -1
  3. package/dist-cjs/schemas/schemas_0.js +475 -94
  4. package/dist-es/BedrockAgentCoreControl.js +16 -0
  5. package/dist-es/commands/CreateHarnessEndpointCommand.js +16 -0
  6. package/dist-es/commands/DeleteHarnessEndpointCommand.js +16 -0
  7. package/dist-es/commands/GetHarnessEndpointCommand.js +16 -0
  8. package/dist-es/commands/ListHarnessEndpointsCommand.js +16 -0
  9. package/dist-es/commands/ListHarnessVersionsCommand.js +16 -0
  10. package/dist-es/commands/UpdateHarnessEndpointCommand.js +16 -0
  11. package/dist-es/commands/index.js +6 -0
  12. package/dist-es/models/enums.js +43 -0
  13. package/dist-es/pagination/ListHarnessEndpointsPaginator.js +4 -0
  14. package/dist-es/pagination/ListHarnessVersionsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +435 -94
  17. package/dist-types/BedrockAgentCoreControl.d.ts +56 -0
  18. package/dist-types/BedrockAgentCoreControlClient.d.ts +8 -2
  19. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +10 -0
  20. package/dist-types/commands/CreateGatewayCommand.d.ts +43 -0
  21. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +139 -1
  22. package/dist-types/commands/CreateHarnessCommand.d.ts +51 -2
  23. package/dist-types/commands/CreateHarnessEndpointCommand.d.ts +116 -0
  24. package/dist-types/commands/CreateMemoryCommand.d.ts +1 -0
  25. package/dist-types/commands/CreatePaymentManagerCommand.d.ts +20 -0
  26. package/dist-types/commands/CreatePolicyCommand.d.ts +8 -0
  27. package/dist-types/commands/CreateRegistryCommand.d.ts +11 -1
  28. package/dist-types/commands/DeleteHarnessCommand.d.ts +27 -1
  29. package/dist-types/commands/DeleteHarnessEndpointCommand.d.ts +108 -0
  30. package/dist-types/commands/DeletePolicyCommand.d.ts +4 -0
  31. package/dist-types/commands/DeleteRegistryCommand.d.ts +1 -1
  32. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +10 -0
  33. package/dist-types/commands/GetGatewayCommand.d.ts +26 -0
  34. package/dist-types/commands/GetGatewayTargetCommand.d.ts +69 -0
  35. package/dist-types/commands/GetHarnessCommand.d.ts +28 -2
  36. package/dist-types/commands/GetHarnessEndpointCommand.d.ts +104 -0
  37. package/dist-types/commands/GetMemoryCommand.d.ts +1 -0
  38. package/dist-types/commands/GetPaymentManagerCommand.d.ts +10 -0
  39. package/dist-types/commands/GetPolicyCommand.d.ts +4 -0
  40. package/dist-types/commands/GetPolicySummaryCommand.d.ts +1 -0
  41. package/dist-types/commands/GetRegistryCommand.d.ts +11 -1
  42. package/dist-types/commands/ListGatewayTargetsCommand.d.ts +12 -0
  43. package/dist-types/commands/ListHarnessEndpointsCommand.d.ts +108 -0
  44. package/dist-types/commands/ListHarnessVersionsCommand.d.ts +105 -0
  45. package/dist-types/commands/ListHarnessesCommand.d.ts +3 -2
  46. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -0
  47. package/dist-types/commands/ListPoliciesCommand.d.ts +4 -0
  48. package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +3 -0
  49. package/dist-types/commands/ListPolicySummariesCommand.d.ts +1 -0
  50. package/dist-types/commands/ListRegistriesCommand.d.ts +1 -1
  51. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +2 -1
  52. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  53. package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  54. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +1 -1
  55. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +69 -0
  56. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  57. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +10 -0
  59. package/dist-types/commands/UpdateGatewayCommand.d.ts +51 -0
  60. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +139 -1
  61. package/dist-types/commands/UpdateHarnessCommand.d.ts +51 -2
  62. package/dist-types/commands/UpdateHarnessEndpointCommand.d.ts +113 -0
  63. package/dist-types/commands/UpdateMemoryCommand.d.ts +1 -0
  64. package/dist-types/commands/UpdatePaymentManagerCommand.d.ts +10 -0
  65. package/dist-types/commands/UpdatePolicyCommand.d.ts +8 -0
  66. package/dist-types/commands/UpdateRegistryCommand.d.ts +21 -1
  67. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +1 -1
  68. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +1 -1
  69. package/dist-types/commands/index.d.ts +6 -0
  70. package/dist-types/models/enums.d.ts +99 -0
  71. package/dist-types/models/models_0.d.ts +904 -1144
  72. package/dist-types/models/models_1.d.ts +4595 -4209
  73. package/dist-types/models/models_2.d.ts +883 -6
  74. package/dist-types/pagination/ListHarnessEndpointsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/ListHarnessVersionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/index.d.ts +2 -0
  77. package/dist-types/schemas/schemas_0.d.ts +46 -0
  78. package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +116 -0
  79. package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +36 -0
  80. package/dist-types/ts3.4/commands/CreateHarnessCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/CreateHarnessEndpointCommand.d.ts +53 -0
  82. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +1 -1
  83. package/dist-types/ts3.4/commands/DeleteHarnessCommand.d.ts +1 -1
  84. package/dist-types/ts3.4/commands/DeleteHarnessEndpointCommand.d.ts +53 -0
  85. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/GetHarnessCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/GetHarnessEndpointCommand.d.ts +53 -0
  88. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/ListHarnessEndpointsCommand.d.ts +53 -0
  90. package/dist-types/ts3.4/commands/ListHarnessVersionsCommand.d.ts +53 -0
  91. package/dist-types/ts3.4/commands/ListHarnessesCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +2 -4
  94. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  99. package/dist-types/ts3.4/commands/UpdateHarnessCommand.d.ts +1 -1
  100. package/dist-types/ts3.4/commands/UpdateHarnessEndpointCommand.d.ts +53 -0
  101. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +1 -1
  102. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +1 -1
  103. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +1 -1
  104. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  105. package/dist-types/ts3.4/models/enums.d.ts +56 -0
  106. package/dist-types/ts3.4/models/models_0.d.ts +269 -402
  107. package/dist-types/ts3.4/models/models_1.d.ts +447 -211
  108. package/dist-types/ts3.4/models/models_2.d.ts +262 -3
  109. package/dist-types/ts3.4/pagination/ListHarnessEndpointsPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/ListHarnessVersionsPaginator.d.ts +11 -0
  111. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  112. package/dist-types/ts3.4/schemas/schemas_0.d.ts +46 -0
  113. package/package.json +3 -3
@@ -1,5 +1,848 @@
1
- import type { SchemaType, TargetProtocolType, TargetStatus } from "./enums";
2
- import type { ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, CredentialProviderConfiguration, HttpTargetConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration } from "./models_0";
1
+ import type { DescriptorType, RegistryAuthorizerType, RegistryRecordStatus, RegistryStatus, SchemaType, SynchronizationType, TargetProtocolType, TargetStatus } from "./enums";
2
+ import type { A2aDescriptor, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, AuthorizerConfiguration, ConnectorTargetConfiguration, CredentialProviderConfiguration, HttpTargetConfiguration, InferenceTargetConfiguration, KmsConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration, SkillDefinition, SkillMdDefinition } from "./models_0";
3
+ import type { CustomDescriptor, Descriptors, RegistryRecordSummary, ServerDefinition, SynchronizationConfiguration, ToolsDefinition, UpdatedAuthorizerConfiguration, UpdatedDescription } from "./models_1";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface ListRegistryRecordsResponse {
8
+ /**
9
+ * <p>The list of registry record summaries. For details about the fields in each summary, see the <code>RegistryRecordSummary</code> data type.</p>
10
+ * @public
11
+ */
12
+ registryRecords: RegistryRecordSummary[] | undefined;
13
+ /**
14
+ * <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>
15
+ * @public
16
+ */
17
+ nextToken?: string | undefined;
18
+ }
19
+ /**
20
+ * @public
21
+ */
22
+ export interface SubmitRegistryRecordForApprovalRequest {
23
+ /**
24
+ * <p>The identifier of the registry containing the record. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
25
+ * @public
26
+ */
27
+ registryId: string | undefined;
28
+ /**
29
+ * <p>The identifier of the registry record to submit for approval. You can specify either the Amazon Resource Name (ARN) or the ID of the record.</p>
30
+ * @public
31
+ */
32
+ recordId: string | undefined;
33
+ }
34
+ /**
35
+ * @public
36
+ */
37
+ export interface SubmitRegistryRecordForApprovalResponse {
38
+ /**
39
+ * <p>The Amazon Resource Name (ARN) of the registry that contains the record.</p>
40
+ * @public
41
+ */
42
+ registryArn: string | undefined;
43
+ /**
44
+ * <p>The Amazon Resource Name (ARN) of the registry record.</p>
45
+ * @public
46
+ */
47
+ recordArn: string | undefined;
48
+ /**
49
+ * <p>The unique identifier of the registry record.</p>
50
+ * @public
51
+ */
52
+ recordId: string | undefined;
53
+ /**
54
+ * <p>The resulting status of the registry record after submission.</p>
55
+ * @public
56
+ */
57
+ status: RegistryRecordStatus | undefined;
58
+ /**
59
+ * <p>The timestamp when the record was last updated.</p>
60
+ * @public
61
+ */
62
+ updatedAt: Date | undefined;
63
+ }
64
+ /**
65
+ * <p>Wrapper for updating an A2A descriptor with PATCH semantics. When present, the A2A descriptor is replaced with the provided value. When absent, the A2A descriptor is left unchanged. To unset, include the wrapper with the value set to null.</p>
66
+ * @public
67
+ */
68
+ export interface UpdatedA2aDescriptor {
69
+ /**
70
+ * <p>The updated A2A descriptor value.</p>
71
+ * @public
72
+ */
73
+ optionalValue?: A2aDescriptor | undefined;
74
+ }
75
+ /**
76
+ * <p>Wrapper for updating a skill definition with PATCH semantics.</p>
77
+ * @public
78
+ */
79
+ export interface UpdatedSkillDefinition {
80
+ /**
81
+ * <p>The updated skill definition value.</p>
82
+ * @public
83
+ */
84
+ optionalValue?: SkillDefinition | undefined;
85
+ }
86
+ /**
87
+ * <p>Wrapper for updating a skill markdown definition with PATCH semantics.</p>
88
+ * @public
89
+ */
90
+ export interface UpdatedSkillMdDefinition {
91
+ /**
92
+ * <p>The updated skill markdown definition value.</p>
93
+ * @public
94
+ */
95
+ optionalValue?: SkillMdDefinition | undefined;
96
+ }
97
+ /**
98
+ * <p>Individual agent skills descriptor fields that can be updated independently.</p>
99
+ * @public
100
+ */
101
+ export interface UpdatedAgentSkillsDescriptorFields {
102
+ /**
103
+ * <p>The updated skill markdown definition.</p>
104
+ * @public
105
+ */
106
+ skillMd?: UpdatedSkillMdDefinition | undefined;
107
+ /**
108
+ * <p>The updated skill definition.</p>
109
+ * @public
110
+ */
111
+ skillDefinition?: UpdatedSkillDefinition | undefined;
112
+ }
113
+ /**
114
+ * <p>Wrapper for updating an agent skills descriptor with PATCH semantics. When present with a value, individual fields can be updated independently. When present with a null value, the entire agent skills descriptor is unset. When absent, the agent skills descriptor is left unchanged.</p>
115
+ * @public
116
+ */
117
+ export interface UpdatedAgentSkillsDescriptor {
118
+ /**
119
+ * <p>The updated agent skills descriptor fields.</p>
120
+ * @public
121
+ */
122
+ optionalValue?: UpdatedAgentSkillsDescriptorFields | undefined;
123
+ }
124
+ /**
125
+ * <p>Wrapper for updating a custom descriptor with PATCH semantics. When present, the custom descriptor is replaced with the provided value. When absent, the custom descriptor is left unchanged. To unset, include the wrapper with the value set to null.</p>
126
+ * @public
127
+ */
128
+ export interface UpdatedCustomDescriptor {
129
+ /**
130
+ * <p>The updated custom descriptor value.</p>
131
+ * @public
132
+ */
133
+ optionalValue?: CustomDescriptor | undefined;
134
+ }
135
+ /**
136
+ * <p>Wrapper for updating a server definition with PATCH semantics. When present, the server definition is replaced with the provided value. When absent, the server definition is left unchanged. To unset, include the wrapper with the value set to null.</p>
137
+ * @public
138
+ */
139
+ export interface UpdatedServerDefinition {
140
+ /**
141
+ * <p>The updated server definition value.</p>
142
+ * @public
143
+ */
144
+ optionalValue?: ServerDefinition | undefined;
145
+ }
146
+ /**
147
+ * <p>Wrapper for updating a tools definition with PATCH semantics. When present, the tools definition is replaced with the provided value. When absent, the tools definition is left unchanged. To unset, include the wrapper with the value set to null.</p>
148
+ * @public
149
+ */
150
+ export interface UpdatedToolsDefinition {
151
+ /**
152
+ * <p>The updated tools definition value.</p>
153
+ * @public
154
+ */
155
+ optionalValue?: ToolsDefinition | undefined;
156
+ }
157
+ /**
158
+ * <p>Individual MCP descriptor fields that can be updated independently.</p>
159
+ * @public
160
+ */
161
+ export interface UpdatedMcpDescriptorFields {
162
+ /**
163
+ * <p>The updated server definition for the MCP descriptor.</p>
164
+ * @public
165
+ */
166
+ server?: UpdatedServerDefinition | undefined;
167
+ /**
168
+ * <p>The updated tools definition for the MCP descriptor.</p>
169
+ * @public
170
+ */
171
+ tools?: UpdatedToolsDefinition | undefined;
172
+ }
173
+ /**
174
+ * <p>Wrapper for updating an MCP descriptor with PATCH semantics. When present with a value, individual MCP fields can be updated independently. When present with a null value, the entire MCP descriptor is unset. When absent, the MCP descriptor is left unchanged.</p>
175
+ * @public
176
+ */
177
+ export interface UpdatedMcpDescriptor {
178
+ /**
179
+ * <p>The updated MCP descriptor fields.</p>
180
+ * @public
181
+ */
182
+ optionalValue?: UpdatedMcpDescriptorFields | undefined;
183
+ }
184
+ /**
185
+ * <p>Contains per-descriptor-type wrappers for updating descriptors. Each descriptor type can be updated independently.</p>
186
+ * @public
187
+ */
188
+ export interface UpdatedDescriptorsUnion {
189
+ /**
190
+ * <p>The updated MCP descriptor.</p>
191
+ * @public
192
+ */
193
+ mcp?: UpdatedMcpDescriptor | undefined;
194
+ /**
195
+ * <p>The updated A2A descriptor.</p>
196
+ * @public
197
+ */
198
+ a2a?: UpdatedA2aDescriptor | undefined;
199
+ /**
200
+ * <p>The updated custom descriptor.</p>
201
+ * @public
202
+ */
203
+ custom?: UpdatedCustomDescriptor | undefined;
204
+ /**
205
+ * <p>The updated agent skills descriptor.</p>
206
+ * @public
207
+ */
208
+ agentSkills?: UpdatedAgentSkillsDescriptor | undefined;
209
+ }
210
+ /**
211
+ * <p>Wrapper for updating an optional descriptors field with PATCH semantics. When present with a value, individual descriptors can be updated. When present with a null value, all descriptors are unset. When absent, descriptors are left unchanged.</p>
212
+ * @public
213
+ */
214
+ export interface UpdatedDescriptors {
215
+ /**
216
+ * <p>The updated descriptors value. Contains per-descriptor-type wrappers that are each independently updatable.</p>
217
+ * @public
218
+ */
219
+ optionalValue?: UpdatedDescriptorsUnion | undefined;
220
+ }
221
+ /**
222
+ * <p>Wrapper for updating the synchronization configuration with PATCH semantics. Must be matched with <code>UpdatedSynchronizationType</code>.</p>
223
+ * @public
224
+ */
225
+ export interface UpdatedSynchronizationConfiguration {
226
+ /**
227
+ * <p>The updated synchronization configuration value.</p>
228
+ * @public
229
+ */
230
+ optionalValue?: SynchronizationConfiguration | undefined;
231
+ }
232
+ /**
233
+ * <p>Wrapper for updating the synchronization type with PATCH semantics. Must be matched with <code>UpdatedSynchronizationConfiguration</code>.</p>
234
+ * @public
235
+ */
236
+ export interface UpdatedSynchronizationType {
237
+ /**
238
+ * <p>The updated synchronization type value.</p>
239
+ * @public
240
+ */
241
+ optionalValue?: SynchronizationType | undefined;
242
+ }
243
+ /**
244
+ * @public
245
+ */
246
+ export interface UpdateRegistryRecordRequest {
247
+ /**
248
+ * <p>The identifier of the registry containing the record. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
249
+ * @public
250
+ */
251
+ registryId: string | undefined;
252
+ /**
253
+ * <p>The identifier of the registry record to update. You can specify either the Amazon Resource Name (ARN) or the ID of the record.</p>
254
+ * @public
255
+ */
256
+ recordId: string | undefined;
257
+ /**
258
+ * <p>The updated name for the registry record.</p>
259
+ * @public
260
+ */
261
+ name?: string | undefined;
262
+ /**
263
+ * <p>The updated description for the registry record. To clear the description, include the <code>UpdatedDescription</code> wrapper with <code>optionalValue</code> not specified.</p>
264
+ * @public
265
+ */
266
+ description?: UpdatedDescription | undefined;
267
+ /**
268
+ * <p>The updated descriptor type for the registry record. Changing the descriptor type may require updating the <code>descriptors</code> field to match the new type's schema requirements.</p>
269
+ * @public
270
+ */
271
+ descriptorType?: DescriptorType | undefined;
272
+ /**
273
+ * <p>The updated descriptor-type-specific configuration containing the resource schema and metadata. Uses PATCH semantics where individual descriptor fields can be updated independently.</p>
274
+ * @public
275
+ */
276
+ descriptors?: UpdatedDescriptors | undefined;
277
+ /**
278
+ * <p>The version of the registry record for optimistic locking. If provided, it must match the current version of the record. The service automatically increments the version after a successful update.</p>
279
+ * @public
280
+ */
281
+ recordVersion?: string | undefined;
282
+ /**
283
+ * <p>The updated synchronization type for the registry record.</p>
284
+ * @public
285
+ */
286
+ synchronizationType?: UpdatedSynchronizationType | undefined;
287
+ /**
288
+ * <p>The updated synchronization configuration for the registry record.</p>
289
+ * @public
290
+ */
291
+ synchronizationConfiguration?: UpdatedSynchronizationConfiguration | undefined;
292
+ /**
293
+ * <p>Whether to trigger synchronization using the stored or provided configuration. When set to <code>true</code>, the service will synchronize the record metadata from the configured external source.</p>
294
+ * @public
295
+ */
296
+ triggerSynchronization?: boolean | undefined;
297
+ }
298
+ /**
299
+ * @public
300
+ */
301
+ export interface UpdateRegistryRecordResponse {
302
+ /**
303
+ * <p>The Amazon Resource Name (ARN) of the registry that contains the updated record.</p>
304
+ * @public
305
+ */
306
+ registryArn: string | undefined;
307
+ /**
308
+ * <p>The Amazon Resource Name (ARN) of the updated registry record.</p>
309
+ * @public
310
+ */
311
+ recordArn: string | undefined;
312
+ /**
313
+ * <p>The unique identifier of the updated registry record.</p>
314
+ * @public
315
+ */
316
+ recordId: string | undefined;
317
+ /**
318
+ * <p>The name of the updated registry record.</p>
319
+ * @public
320
+ */
321
+ name: string | undefined;
322
+ /**
323
+ * <p>The description of the updated registry record.</p>
324
+ * @public
325
+ */
326
+ description?: string | undefined;
327
+ /**
328
+ * <p>The descriptor type of the updated registry record. Possible values are <code>MCP</code>, <code>A2A</code>, <code>CUSTOM</code>, and <code>AGENT_SKILLS</code>.</p>
329
+ * @public
330
+ */
331
+ descriptorType: DescriptorType | undefined;
332
+ /**
333
+ * <p>The descriptor-type-specific configuration of the updated registry record. For details, see the <code>Descriptors</code> data type.</p>
334
+ * @public
335
+ */
336
+ descriptors: Descriptors | undefined;
337
+ /**
338
+ * <p>The version of the updated registry record.</p>
339
+ * @public
340
+ */
341
+ recordVersion?: string | undefined;
342
+ /**
343
+ * <p>The current status of the updated registry record. Possible values include <code>CREATING</code>, <code>DRAFT</code>, <code>APPROVED</code>, <code>PENDING_APPROVAL</code>, <code>REJECTED</code>, <code>DEPRECATED</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, and <code>UPDATE_FAILED</code>.</p>
344
+ * @public
345
+ */
346
+ status: RegistryRecordStatus | undefined;
347
+ /**
348
+ * <p>The timestamp when the registry record was created.</p>
349
+ * @public
350
+ */
351
+ createdAt: Date | undefined;
352
+ /**
353
+ * <p>The timestamp when the registry record was last updated.</p>
354
+ * @public
355
+ */
356
+ updatedAt: Date | undefined;
357
+ /**
358
+ * <p>The reason for the current status of the updated registry record.</p>
359
+ * @public
360
+ */
361
+ statusReason?: string | undefined;
362
+ /**
363
+ * <p>The synchronization type of the updated registry record.</p>
364
+ * @public
365
+ */
366
+ synchronizationType?: SynchronizationType | undefined;
367
+ /**
368
+ * <p>The synchronization configuration of the updated registry record.</p>
369
+ * @public
370
+ */
371
+ synchronizationConfiguration?: SynchronizationConfiguration | undefined;
372
+ }
373
+ /**
374
+ * @public
375
+ */
376
+ export interface UpdateRegistryRecordStatusRequest {
377
+ /**
378
+ * <p>The identifier of the registry containing the record. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
379
+ * @public
380
+ */
381
+ registryId: string | undefined;
382
+ /**
383
+ * <p>The identifier of the registry record to update the status for. You can specify either the Amazon Resource Name (ARN) or the ID of the record.</p>
384
+ * @public
385
+ */
386
+ recordId: string | undefined;
387
+ /**
388
+ * <p>The target status for the registry record.</p>
389
+ * @public
390
+ */
391
+ status: RegistryRecordStatus | undefined;
392
+ /**
393
+ * <p>The reason for the status change, such as why the record was approved or rejected.</p>
394
+ * @public
395
+ */
396
+ statusReason: string | undefined;
397
+ }
398
+ /**
399
+ * @public
400
+ */
401
+ export interface UpdateRegistryRecordStatusResponse {
402
+ /**
403
+ * <p>The Amazon Resource Name (ARN) of the registry that contains the record.</p>
404
+ * @public
405
+ */
406
+ registryArn: string | undefined;
407
+ /**
408
+ * <p>The Amazon Resource Name (ARN) of the registry record.</p>
409
+ * @public
410
+ */
411
+ recordArn: string | undefined;
412
+ /**
413
+ * <p>The unique identifier of the registry record.</p>
414
+ * @public
415
+ */
416
+ recordId: string | undefined;
417
+ /**
418
+ * <p>The resulting status of the registry record.</p>
419
+ * @public
420
+ */
421
+ status: RegistryRecordStatus | undefined;
422
+ /**
423
+ * <p>The reason for the status change.</p>
424
+ * @public
425
+ */
426
+ statusReason: string | undefined;
427
+ /**
428
+ * <p>The timestamp when the record was last updated.</p>
429
+ * @public
430
+ */
431
+ updatedAt: Date | undefined;
432
+ }
433
+ /**
434
+ * <p>Configuration for the registry record approval workflow. Controls whether records added to the registry require explicit approval before becoming active.</p>
435
+ * @public
436
+ */
437
+ export interface ApprovalConfiguration {
438
+ /**
439
+ * <p>Whether registry records are auto-approved. When set to <code>true</code>, records are automatically approved upon creation. When set to <code>false</code> (the default), records require explicit approval for security purposes.</p>
440
+ * @public
441
+ */
442
+ autoApproval?: boolean | undefined;
443
+ }
444
+ /**
445
+ * @public
446
+ */
447
+ export interface CreateRegistryRequest {
448
+ /**
449
+ * <p>The name of the registry. The name must be unique within your account and can contain alphanumeric characters and underscores.</p>
450
+ * @public
451
+ */
452
+ name: string | undefined;
453
+ /**
454
+ * <p>A description of the registry.</p>
455
+ * @public
456
+ */
457
+ description?: string | undefined;
458
+ /**
459
+ * <p>The type of authorizer to use for the registry. This controls the authorization method for the Search and Invoke APIs used by consumers, and does not affect the standard CRUDL APIs for registry and registry record management used by administrators.</p> <ul> <li> <p> <code>CUSTOM_JWT</code> - Authorize with a bearer token.</p> </li> <li> <p> <code>AWS_IAM</code> - Authorize with your Amazon Web Services IAM credentials.</p> </li> </ul>
460
+ * @public
461
+ */
462
+ authorizerType?: RegistryAuthorizerType | undefined;
463
+ /**
464
+ * <p>The authorizer configuration for the registry. Required if <code>authorizerType</code> is <code>CUSTOM_JWT</code>. For details, see the <code>AuthorizerConfiguration</code> data type.</p>
465
+ * @public
466
+ */
467
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
468
+ /**
469
+ * <p>A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If you don't specify this field, a value is randomly generated for you. If this token matches a previous request, the service ignores the request, but doesn't 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>
470
+ * @public
471
+ */
472
+ clientToken?: string | undefined;
473
+ /**
474
+ * <p>The approval configuration for registry records. Controls whether records require explicit approval before becoming active. See the <code>ApprovalConfiguration</code> data type for supported configuration options.</p>
475
+ * @public
476
+ */
477
+ approvalConfiguration?: ApprovalConfiguration | undefined;
478
+ }
479
+ /**
480
+ * @public
481
+ */
482
+ export interface CreateRegistryResponse {
483
+ /**
484
+ * <p>The Amazon Resource Name (ARN) of the created registry.</p>
485
+ * @public
486
+ */
487
+ registryArn: string | undefined;
488
+ }
489
+ /**
490
+ * @public
491
+ */
492
+ export interface DeleteRegistryRequest {
493
+ /**
494
+ * <p>The identifier of the registry to delete. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
495
+ * @public
496
+ */
497
+ registryId: string | undefined;
498
+ }
499
+ /**
500
+ * @public
501
+ */
502
+ export interface DeleteRegistryResponse {
503
+ /**
504
+ * <p>The current status of the registry, set to <code>DELETING</code> when deletion is initiated. For a list of all possible registry statuses, see the <code>RegistryStatus</code> data type.</p>
505
+ * @public
506
+ */
507
+ status: RegistryStatus | undefined;
508
+ }
509
+ /**
510
+ * @public
511
+ */
512
+ export interface GetRegistryRequest {
513
+ /**
514
+ * <p>The identifier of the registry to retrieve. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
515
+ * @public
516
+ */
517
+ registryId: string | undefined;
518
+ }
519
+ /**
520
+ * @public
521
+ */
522
+ export interface GetRegistryResponse {
523
+ /**
524
+ * <p>The name of the registry.</p>
525
+ * @public
526
+ */
527
+ name: string | undefined;
528
+ /**
529
+ * <p>The description of the registry.</p>
530
+ * @public
531
+ */
532
+ description?: string | undefined;
533
+ /**
534
+ * <p>The unique identifier of the registry.</p>
535
+ * @public
536
+ */
537
+ registryId: string | undefined;
538
+ /**
539
+ * <p>The Amazon Resource Name (ARN) of the registry.</p>
540
+ * @public
541
+ */
542
+ registryArn: string | undefined;
543
+ /**
544
+ * <p>The type of authorizer used by the registry. This controls the authorization method for the Search and Invoke APIs used by consumers.</p> <ul> <li> <p> <code>CUSTOM_JWT</code> - Authorize with a bearer token.</p> </li> <li> <p> <code>AWS_IAM</code> - Authorize with your Amazon Web Services IAM credentials.</p> </li> </ul>
545
+ * @public
546
+ */
547
+ authorizerType?: RegistryAuthorizerType | undefined;
548
+ /**
549
+ * <p>The authorizer configuration for the registry. For details, see the <code>AuthorizerConfiguration</code> data type.</p>
550
+ * @public
551
+ */
552
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
553
+ /**
554
+ * <p>The approval configuration for registry records. For details, see the <code>ApprovalConfiguration</code> data type.</p>
555
+ * @public
556
+ */
557
+ approvalConfiguration?: ApprovalConfiguration | undefined;
558
+ /**
559
+ * <p>The current status of the registry. Possible values include <code>CREATING</code>, <code>READY</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, <code>UPDATE_FAILED</code>, <code>DELETING</code>, and <code>DELETE_FAILED</code>.</p>
560
+ * @public
561
+ */
562
+ status: RegistryStatus | undefined;
563
+ /**
564
+ * <p>The reason for the current status, typically set when the status is a failure state.</p>
565
+ * @public
566
+ */
567
+ statusReason?: string | undefined;
568
+ /**
569
+ * <p>The timestamp when the registry was created.</p>
570
+ * @public
571
+ */
572
+ createdAt: Date | undefined;
573
+ /**
574
+ * <p>The timestamp when the registry was last updated.</p>
575
+ * @public
576
+ */
577
+ updatedAt: Date | undefined;
578
+ }
579
+ /**
580
+ * @public
581
+ */
582
+ export interface ListRegistriesRequest {
583
+ /**
584
+ * <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>
585
+ * @public
586
+ */
587
+ maxResults?: number | undefined;
588
+ /**
589
+ * <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>
590
+ * @public
591
+ */
592
+ nextToken?: string | undefined;
593
+ /**
594
+ * <p>Filter registries by their current status. Possible values include <code>CREATING</code>, <code>READY</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, <code>UPDATE_FAILED</code>, <code>DELETING</code>, and <code>DELETE_FAILED</code>.</p>
595
+ * @public
596
+ */
597
+ status?: RegistryStatus | undefined;
598
+ /**
599
+ * <p>Filter registries by their authorizer type. Possible values are <code>CUSTOM_JWT</code> and <code>AWS_IAM</code>. For more information about authorizer types, see the <code>RegistryAuthorizerType</code> enum.</p>
600
+ * @public
601
+ */
602
+ authorizerType?: RegistryAuthorizerType | undefined;
603
+ }
604
+ /**
605
+ * <p>Contains summary information about a registry.</p>
606
+ * @public
607
+ */
608
+ export interface RegistrySummary {
609
+ /**
610
+ * <p>The name of the registry.</p>
611
+ * @public
612
+ */
613
+ name: string | undefined;
614
+ /**
615
+ * <p>The description of the registry.</p>
616
+ * @public
617
+ */
618
+ description?: string | undefined;
619
+ /**
620
+ * <p>The unique identifier of the registry.</p>
621
+ * @public
622
+ */
623
+ registryId: string | undefined;
624
+ /**
625
+ * <p>The Amazon Resource Name (ARN) of the registry.</p>
626
+ * @public
627
+ */
628
+ registryArn: string | undefined;
629
+ /**
630
+ * <p>The type of authorizer used by the registry. This controls the authorization method for the Search and Invoke APIs used by consumers.</p> <ul> <li> <p> <code>CUSTOM_JWT</code> - Authorize with a bearer token.</p> </li> <li> <p> <code>AWS_IAM</code> - Authorize with your Amazon Web Services IAM credentials.</p> </li> </ul>
631
+ * @public
632
+ */
633
+ authorizerType?: RegistryAuthorizerType | undefined;
634
+ /**
635
+ * <p>The current status of the registry. Possible values include <code>CREATING</code>, <code>READY</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, <code>UPDATE_FAILED</code>, <code>DELETING</code>, and <code>DELETE_FAILED</code>.</p>
636
+ * @public
637
+ */
638
+ status: RegistryStatus | undefined;
639
+ /**
640
+ * <p>The reason for the current status, typically set when the status is a failure state.</p>
641
+ * @public
642
+ */
643
+ statusReason?: string | undefined;
644
+ /**
645
+ * <p>The timestamp when the registry was created.</p>
646
+ * @public
647
+ */
648
+ createdAt: Date | undefined;
649
+ /**
650
+ * <p>The timestamp when the registry was last updated.</p>
651
+ * @public
652
+ */
653
+ updatedAt: Date | undefined;
654
+ }
655
+ /**
656
+ * @public
657
+ */
658
+ export interface ListRegistriesResponse {
659
+ /**
660
+ * <p>The list of registry summaries. For details about the fields in each summary, see the <code>RegistrySummary</code> data type.</p>
661
+ * @public
662
+ */
663
+ registries: RegistrySummary[] | undefined;
664
+ /**
665
+ * <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>
666
+ * @public
667
+ */
668
+ nextToken?: string | undefined;
669
+ }
670
+ /**
671
+ * <p>Wrapper for updating an optional approval configuration field with PATCH semantics. When present in an update request, the approval configuration is replaced with the provided value. When absent, the approval configuration is left unchanged.</p>
672
+ * @public
673
+ */
674
+ export interface UpdatedApprovalConfiguration {
675
+ /**
676
+ * <p>The updated approval configuration value. Set to <code>null</code> to unset the approval configuration.</p>
677
+ * @public
678
+ */
679
+ optionalValue?: ApprovalConfiguration | undefined;
680
+ }
681
+ /**
682
+ * @public
683
+ */
684
+ export interface UpdateRegistryRequest {
685
+ /**
686
+ * <p>The identifier of the registry to update. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.</p>
687
+ * @public
688
+ */
689
+ registryId: string | undefined;
690
+ /**
691
+ * <p>The updated name of the registry.</p>
692
+ * @public
693
+ */
694
+ name?: string | undefined;
695
+ /**
696
+ * <p>The updated description of the registry. To clear the description, include the <code>UpdatedDescription</code> wrapper with <code>optionalValue</code> not specified.</p>
697
+ * @public
698
+ */
699
+ description?: UpdatedDescription | undefined;
700
+ /**
701
+ * <p>The updated authorizer configuration for the registry. Changing the authorizer configuration can break existing consumers of the registry who are using the authorization type prior to the update.</p>
702
+ * @public
703
+ */
704
+ authorizerConfiguration?: UpdatedAuthorizerConfiguration | undefined;
705
+ /**
706
+ * <p>The updated approval configuration for registry records. The updated configuration only affects new records that move to <code>PENDING_APPROVAL</code> status after the change. Existing records already in <code>PENDING_APPROVAL</code> status are not affected.</p>
707
+ * @public
708
+ */
709
+ approvalConfiguration?: UpdatedApprovalConfiguration | undefined;
710
+ }
711
+ /**
712
+ * @public
713
+ */
714
+ export interface UpdateRegistryResponse {
715
+ /**
716
+ * <p>The name of the updated registry.</p>
717
+ * @public
718
+ */
719
+ name: string | undefined;
720
+ /**
721
+ * <p>The description of the updated registry.</p>
722
+ * @public
723
+ */
724
+ description?: string | undefined;
725
+ /**
726
+ * <p>The unique identifier of the updated registry.</p>
727
+ * @public
728
+ */
729
+ registryId: string | undefined;
730
+ /**
731
+ * <p>The Amazon Resource Name (ARN) of the updated registry.</p>
732
+ * @public
733
+ */
734
+ registryArn: string | undefined;
735
+ /**
736
+ * <p>The type of authorizer used by the updated registry. This controls the authorization method for the Search and Invoke APIs used by consumers.</p> <ul> <li> <p> <code>CUSTOM_JWT</code> - Authorize with a bearer token.</p> </li> <li> <p> <code>AWS_IAM</code> - Authorize with your Amazon Web Services IAM credentials.</p> </li> </ul>
737
+ * @public
738
+ */
739
+ authorizerType?: RegistryAuthorizerType | undefined;
740
+ /**
741
+ * <p>The authorizer configuration for the updated registry. For details, see the <code>AuthorizerConfiguration</code> data type.</p>
742
+ * @public
743
+ */
744
+ authorizerConfiguration?: AuthorizerConfiguration | undefined;
745
+ /**
746
+ * <p>The approval configuration for the updated registry. For details, see the <code>ApprovalConfiguration</code> data type.</p>
747
+ * @public
748
+ */
749
+ approvalConfiguration?: ApprovalConfiguration | undefined;
750
+ /**
751
+ * <p>The current status of the updated registry. Possible values include <code>CREATING</code>, <code>READY</code>, <code>UPDATING</code>, <code>CREATE_FAILED</code>, <code>UPDATE_FAILED</code>, <code>DELETING</code>, and <code>DELETE_FAILED</code>.</p>
752
+ * @public
753
+ */
754
+ status: RegistryStatus | undefined;
755
+ /**
756
+ * <p>The reason for the current status of the updated registry.</p>
757
+ * @public
758
+ */
759
+ statusReason?: string | undefined;
760
+ /**
761
+ * <p>The timestamp when the registry was created.</p>
762
+ * @public
763
+ */
764
+ createdAt: Date | undefined;
765
+ /**
766
+ * <p>The timestamp when the registry was last updated.</p>
767
+ * @public
768
+ */
769
+ updatedAt: Date | undefined;
770
+ }
771
+ /**
772
+ * @public
773
+ */
774
+ export interface SetTokenVaultCMKRequest {
775
+ /**
776
+ * <p>The unique identifier of the token vault to update.</p>
777
+ * @public
778
+ */
779
+ tokenVaultId?: string | undefined;
780
+ /**
781
+ * <p>The KMS configuration for the token vault, including the key type and KMS key ARN.</p>
782
+ * @public
783
+ */
784
+ kmsConfiguration: KmsConfiguration | undefined;
785
+ }
786
+ /**
787
+ * @public
788
+ */
789
+ export interface SetTokenVaultCMKResponse {
790
+ /**
791
+ * <p>The ID of the token vault.</p>
792
+ * @public
793
+ */
794
+ tokenVaultId: string | undefined;
795
+ /**
796
+ * <p>The KMS configuration for the token vault.</p>
797
+ * @public
798
+ */
799
+ kmsConfiguration: KmsConfiguration | undefined;
800
+ /**
801
+ * <p>The timestamp when the token vault was last modified.</p>
802
+ * @public
803
+ */
804
+ lastModifiedDate: Date | undefined;
805
+ }
806
+ /**
807
+ * @public
808
+ */
809
+ export interface TagResourceRequest {
810
+ /**
811
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
812
+ * @public
813
+ */
814
+ resourceArn: string | undefined;
815
+ /**
816
+ * <p>The tags to add to the resource. A tag is a key-value pair.</p>
817
+ * @public
818
+ */
819
+ tags: Record<string, string> | undefined;
820
+ }
821
+ /**
822
+ * @public
823
+ */
824
+ export interface TagResourceResponse {
825
+ }
826
+ /**
827
+ * @public
828
+ */
829
+ export interface UntagResourceRequest {
830
+ /**
831
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
832
+ * @public
833
+ */
834
+ resourceArn: string | undefined;
835
+ /**
836
+ * <p>The tag keys of the tags to remove from the resource.</p>
837
+ * @public
838
+ */
839
+ tagKeys: string[] | undefined;
840
+ }
841
+ /**
842
+ * @public
843
+ */
844
+ export interface UntagResourceResponse {
845
+ }
3
846
  /**
4
847
  * @public
5
848
  */
@@ -308,7 +1151,7 @@ export interface McpLambdaTargetConfiguration {
308
1151
  * <p>The Model Context Protocol (MCP) configuration for a target. This structure defines how the gateway uses MCP to communicate with the target.</p>
309
1152
  * @public
310
1153
  */
311
- export type McpTargetConfiguration = McpTargetConfiguration.ApiGatewayMember | McpTargetConfiguration.LambdaMember | McpTargetConfiguration.McpServerMember | McpTargetConfiguration.OpenApiSchemaMember | McpTargetConfiguration.SmithyModelMember | McpTargetConfiguration.$UnknownMember;
1154
+ export type McpTargetConfiguration = McpTargetConfiguration.ApiGatewayMember | McpTargetConfiguration.ConnectorMember | McpTargetConfiguration.LambdaMember | McpTargetConfiguration.McpServerMember | McpTargetConfiguration.OpenApiSchemaMember | McpTargetConfiguration.SmithyModelMember | McpTargetConfiguration.$UnknownMember;
312
1155
  /**
313
1156
  * @public
314
1157
  */
@@ -323,6 +1166,7 @@ export declare namespace McpTargetConfiguration {
323
1166
  lambda?: never;
324
1167
  mcpServer?: never;
325
1168
  apiGateway?: never;
1169
+ connector?: never;
326
1170
  $unknown?: never;
327
1171
  }
328
1172
  /**
@@ -335,6 +1179,7 @@ export declare namespace McpTargetConfiguration {
335
1179
  lambda?: never;
336
1180
  mcpServer?: never;
337
1181
  apiGateway?: never;
1182
+ connector?: never;
338
1183
  $unknown?: never;
339
1184
  }
340
1185
  /**
@@ -347,6 +1192,7 @@ export declare namespace McpTargetConfiguration {
347
1192
  lambda: McpLambdaTargetConfiguration;
348
1193
  mcpServer?: never;
349
1194
  apiGateway?: never;
1195
+ connector?: never;
350
1196
  $unknown?: never;
351
1197
  }
352
1198
  /**
@@ -359,6 +1205,7 @@ export declare namespace McpTargetConfiguration {
359
1205
  lambda?: never;
360
1206
  mcpServer: McpServerTargetConfiguration;
361
1207
  apiGateway?: never;
1208
+ connector?: never;
362
1209
  $unknown?: never;
363
1210
  }
364
1211
  /**
@@ -371,6 +1218,20 @@ export declare namespace McpTargetConfiguration {
371
1218
  lambda?: never;
372
1219
  mcpServer?: never;
373
1220
  apiGateway: ApiGatewayTargetConfiguration;
1221
+ connector?: never;
1222
+ $unknown?: never;
1223
+ }
1224
+ /**
1225
+ * <p>The connector integration configuration for the Model Context Protocol target. This configuration defines how the gateway uses a pre-built connector to communicate with the target.</p>
1226
+ * @public
1227
+ */
1228
+ interface ConnectorMember {
1229
+ openApiSchema?: never;
1230
+ smithyModel?: never;
1231
+ lambda?: never;
1232
+ mcpServer?: never;
1233
+ apiGateway?: never;
1234
+ connector: ConnectorTargetConfiguration;
374
1235
  $unknown?: never;
375
1236
  }
376
1237
  /**
@@ -382,6 +1243,7 @@ export declare namespace McpTargetConfiguration {
382
1243
  lambda?: never;
383
1244
  mcpServer?: never;
384
1245
  apiGateway?: never;
1246
+ connector?: never;
385
1247
  $unknown: [string, any];
386
1248
  }
387
1249
  /**
@@ -394,6 +1256,7 @@ export declare namespace McpTargetConfiguration {
394
1256
  lambda: (value: McpLambdaTargetConfiguration) => T;
395
1257
  mcpServer: (value: McpServerTargetConfiguration) => T;
396
1258
  apiGateway: (value: ApiGatewayTargetConfiguration) => T;
1259
+ connector: (value: ConnectorTargetConfiguration) => T;
397
1260
  _: (name: string, value: any) => T;
398
1261
  }
399
1262
  }
@@ -401,7 +1264,7 @@ export declare namespace McpTargetConfiguration {
401
1264
  * <p>The configuration for a gateway target. This structure defines how the gateway connects to and interacts with the target endpoint.</p>
402
1265
  * @public
403
1266
  */
404
- export type TargetConfiguration = TargetConfiguration.HttpMember | TargetConfiguration.McpMember | TargetConfiguration.$UnknownMember;
1267
+ export type TargetConfiguration = TargetConfiguration.HttpMember | TargetConfiguration.InferenceMember | TargetConfiguration.McpMember | TargetConfiguration.$UnknownMember;
405
1268
  /**
406
1269
  * @public
407
1270
  */
@@ -413,6 +1276,7 @@ export declare namespace TargetConfiguration {
413
1276
  interface McpMember {
414
1277
  mcp: McpTargetConfiguration;
415
1278
  http?: never;
1279
+ inference?: never;
416
1280
  $unknown?: never;
417
1281
  }
418
1282
  /**
@@ -422,6 +1286,17 @@ export declare namespace TargetConfiguration {
422
1286
  interface HttpMember {
423
1287
  mcp?: never;
424
1288
  http: HttpTargetConfiguration;
1289
+ inference?: never;
1290
+ $unknown?: never;
1291
+ }
1292
+ /**
1293
+ * <p>The inference configuration for the target. This configuration routes requests to a large language model (LLM) provider.</p>
1294
+ * @public
1295
+ */
1296
+ interface InferenceMember {
1297
+ mcp?: never;
1298
+ http?: never;
1299
+ inference: InferenceTargetConfiguration;
425
1300
  $unknown?: never;
426
1301
  }
427
1302
  /**
@@ -430,6 +1305,7 @@ export declare namespace TargetConfiguration {
430
1305
  interface $UnknownMember {
431
1306
  mcp?: never;
432
1307
  http?: never;
1308
+ inference?: never;
433
1309
  $unknown: [string, any];
434
1310
  }
435
1311
  /**
@@ -439,6 +1315,7 @@ export declare namespace TargetConfiguration {
439
1315
  interface Visitor<T> {
440
1316
  mcp: (value: McpTargetConfiguration) => T;
441
1317
  http: (value: HttpTargetConfiguration) => T;
1318
+ inference: (value: InferenceTargetConfiguration) => T;
442
1319
  _: (name: string, value: any) => T;
443
1320
  }
444
1321
  }
@@ -455,7 +1332,7 @@ export interface CreateGatewayTargetRequest {
455
1332
  * <p>The name of the gateway target. The name must be unique within the gateway.</p>
456
1333
  * @public
457
1334
  */
458
- name: string | undefined;
1335
+ name?: string | undefined;
459
1336
  /**
460
1337
  * <p>The description of the gateway target.</p>
461
1338
  * @public
@@ -761,7 +1638,7 @@ export interface UpdateGatewayTargetRequest {
761
1638
  * <p>The updated name for the gateway target.</p>
762
1639
  * @public
763
1640
  */
764
- name: string | undefined;
1641
+ name?: string | undefined;
765
1642
  /**
766
1643
  * <p>The updated description for the gateway target.</p>
767
1644
  * @public