@effect-aws/client-bedrock-agentcore-control 1.11.2

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 (53) hide show
  1. package/BedrockAgentCoreControlClientInstance/package.json +6 -0
  2. package/BedrockAgentCoreControlService/package.json +6 -0
  3. package/BedrockAgentCoreControlServiceConfig/package.json +6 -0
  4. package/Errors/package.json +6 -0
  5. package/LICENSE +19 -0
  6. package/README.md +58 -0
  7. package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts +26 -0
  8. package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts.map +1 -0
  9. package/dist/cjs/BedrockAgentCoreControlClientInstance.js +52 -0
  10. package/dist/cjs/BedrockAgentCoreControlClientInstance.js.map +1 -0
  11. package/dist/cjs/BedrockAgentCoreControlService.d.ts +596 -0
  12. package/dist/cjs/BedrockAgentCoreControlService.d.ts.map +1 -0
  13. package/dist/cjs/BedrockAgentCoreControlService.js +219 -0
  14. package/dist/cjs/BedrockAgentCoreControlService.js.map +1 -0
  15. package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts +26 -0
  16. package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts.map +1 -0
  17. package/dist/cjs/BedrockAgentCoreControlServiceConfig.js +60 -0
  18. package/dist/cjs/BedrockAgentCoreControlServiceConfig.js.map +1 -0
  19. package/dist/cjs/Errors.d.ts +21 -0
  20. package/dist/cjs/Errors.d.ts.map +1 -0
  21. package/dist/cjs/Errors.js +20 -0
  22. package/dist/cjs/Errors.js.map +1 -0
  23. package/dist/cjs/index.d.ts +44 -0
  24. package/dist/cjs/index.d.ts.map +1 -0
  25. package/dist/cjs/index.js +56 -0
  26. package/dist/cjs/index.js.map +1 -0
  27. package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts +26 -0
  28. package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts.map +1 -0
  29. package/dist/dts/BedrockAgentCoreControlService.d.ts +596 -0
  30. package/dist/dts/BedrockAgentCoreControlService.d.ts.map +1 -0
  31. package/dist/dts/BedrockAgentCoreControlServiceConfig.d.ts +26 -0
  32. package/dist/dts/BedrockAgentCoreControlServiceConfig.d.ts.map +1 -0
  33. package/dist/dts/Errors.d.ts +21 -0
  34. package/dist/dts/Errors.d.ts.map +1 -0
  35. package/dist/dts/index.d.ts +44 -0
  36. package/dist/dts/index.d.ts.map +1 -0
  37. package/dist/esm/BedrockAgentCoreControlClientInstance.js +25 -0
  38. package/dist/esm/BedrockAgentCoreControlClientInstance.js.map +1 -0
  39. package/dist/esm/BedrockAgentCoreControlService.js +192 -0
  40. package/dist/esm/BedrockAgentCoreControlService.js.map +1 -0
  41. package/dist/esm/BedrockAgentCoreControlServiceConfig.js +33 -0
  42. package/dist/esm/BedrockAgentCoreControlServiceConfig.js.map +1 -0
  43. package/dist/esm/Errors.js +17 -0
  44. package/dist/esm/Errors.js.map +1 -0
  45. package/dist/esm/index.js +27 -0
  46. package/dist/esm/index.js.map +1 -0
  47. package/dist/esm/package.json +4 -0
  48. package/package.json +71 -0
  49. package/src/BedrockAgentCoreControlClientInstance.ts +35 -0
  50. package/src/BedrockAgentCoreControlService.ts +3229 -0
  51. package/src/BedrockAgentCoreControlServiceConfig.ts +56 -0
  52. package/src/Errors.ts +50 -0
  53. package/src/index.ts +50 -0
@@ -0,0 +1,3229 @@
1
+ /**
2
+ * @since 1.0.0
3
+ */
4
+ import {
5
+ type BedrockAgentCoreControlClient,
6
+ type BedrockAgentCoreControlClientConfig,
7
+ CreateAgentRuntimeCommand,
8
+ type CreateAgentRuntimeCommandInput,
9
+ type CreateAgentRuntimeCommandOutput,
10
+ CreateAgentRuntimeEndpointCommand,
11
+ type CreateAgentRuntimeEndpointCommandInput,
12
+ type CreateAgentRuntimeEndpointCommandOutput,
13
+ CreateApiKeyCredentialProviderCommand,
14
+ type CreateApiKeyCredentialProviderCommandInput,
15
+ type CreateApiKeyCredentialProviderCommandOutput,
16
+ CreateBrowserCommand,
17
+ type CreateBrowserCommandInput,
18
+ type CreateBrowserCommandOutput,
19
+ CreateBrowserProfileCommand,
20
+ type CreateBrowserProfileCommandInput,
21
+ type CreateBrowserProfileCommandOutput,
22
+ CreateCodeInterpreterCommand,
23
+ type CreateCodeInterpreterCommandInput,
24
+ type CreateCodeInterpreterCommandOutput,
25
+ CreateConfigurationBundleCommand,
26
+ type CreateConfigurationBundleCommandInput,
27
+ type CreateConfigurationBundleCommandOutput,
28
+ CreateEvaluatorCommand,
29
+ type CreateEvaluatorCommandInput,
30
+ type CreateEvaluatorCommandOutput,
31
+ CreateGatewayCommand,
32
+ type CreateGatewayCommandInput,
33
+ type CreateGatewayCommandOutput,
34
+ CreateGatewayRuleCommand,
35
+ type CreateGatewayRuleCommandInput,
36
+ type CreateGatewayRuleCommandOutput,
37
+ CreateGatewayTargetCommand,
38
+ type CreateGatewayTargetCommandInput,
39
+ type CreateGatewayTargetCommandOutput,
40
+ CreateHarnessCommand,
41
+ type CreateHarnessCommandInput,
42
+ type CreateHarnessCommandOutput,
43
+ CreateMemoryCommand,
44
+ type CreateMemoryCommandInput,
45
+ type CreateMemoryCommandOutput,
46
+ CreateOauth2CredentialProviderCommand,
47
+ type CreateOauth2CredentialProviderCommandInput,
48
+ type CreateOauth2CredentialProviderCommandOutput,
49
+ CreateOnlineEvaluationConfigCommand,
50
+ type CreateOnlineEvaluationConfigCommandInput,
51
+ type CreateOnlineEvaluationConfigCommandOutput,
52
+ CreatePaymentConnectorCommand,
53
+ type CreatePaymentConnectorCommandInput,
54
+ type CreatePaymentConnectorCommandOutput,
55
+ CreatePaymentCredentialProviderCommand,
56
+ type CreatePaymentCredentialProviderCommandInput,
57
+ type CreatePaymentCredentialProviderCommandOutput,
58
+ CreatePaymentManagerCommand,
59
+ type CreatePaymentManagerCommandInput,
60
+ type CreatePaymentManagerCommandOutput,
61
+ CreatePolicyCommand,
62
+ type CreatePolicyCommandInput,
63
+ type CreatePolicyCommandOutput,
64
+ CreatePolicyEngineCommand,
65
+ type CreatePolicyEngineCommandInput,
66
+ type CreatePolicyEngineCommandOutput,
67
+ CreateRegistryCommand,
68
+ type CreateRegistryCommandInput,
69
+ type CreateRegistryCommandOutput,
70
+ CreateRegistryRecordCommand,
71
+ type CreateRegistryRecordCommandInput,
72
+ type CreateRegistryRecordCommandOutput,
73
+ CreateWorkloadIdentityCommand,
74
+ type CreateWorkloadIdentityCommandInput,
75
+ type CreateWorkloadIdentityCommandOutput,
76
+ DeleteAgentRuntimeCommand,
77
+ type DeleteAgentRuntimeCommandInput,
78
+ type DeleteAgentRuntimeCommandOutput,
79
+ DeleteAgentRuntimeEndpointCommand,
80
+ type DeleteAgentRuntimeEndpointCommandInput,
81
+ type DeleteAgentRuntimeEndpointCommandOutput,
82
+ DeleteApiKeyCredentialProviderCommand,
83
+ type DeleteApiKeyCredentialProviderCommandInput,
84
+ type DeleteApiKeyCredentialProviderCommandOutput,
85
+ DeleteBrowserCommand,
86
+ type DeleteBrowserCommandInput,
87
+ type DeleteBrowserCommandOutput,
88
+ DeleteBrowserProfileCommand,
89
+ type DeleteBrowserProfileCommandInput,
90
+ type DeleteBrowserProfileCommandOutput,
91
+ DeleteCodeInterpreterCommand,
92
+ type DeleteCodeInterpreterCommandInput,
93
+ type DeleteCodeInterpreterCommandOutput,
94
+ DeleteConfigurationBundleCommand,
95
+ type DeleteConfigurationBundleCommandInput,
96
+ type DeleteConfigurationBundleCommandOutput,
97
+ DeleteEvaluatorCommand,
98
+ type DeleteEvaluatorCommandInput,
99
+ type DeleteEvaluatorCommandOutput,
100
+ DeleteGatewayCommand,
101
+ type DeleteGatewayCommandInput,
102
+ type DeleteGatewayCommandOutput,
103
+ DeleteGatewayRuleCommand,
104
+ type DeleteGatewayRuleCommandInput,
105
+ type DeleteGatewayRuleCommandOutput,
106
+ DeleteGatewayTargetCommand,
107
+ type DeleteGatewayTargetCommandInput,
108
+ type DeleteGatewayTargetCommandOutput,
109
+ DeleteHarnessCommand,
110
+ type DeleteHarnessCommandInput,
111
+ type DeleteHarnessCommandOutput,
112
+ DeleteMemoryCommand,
113
+ type DeleteMemoryCommandInput,
114
+ type DeleteMemoryCommandOutput,
115
+ DeleteOauth2CredentialProviderCommand,
116
+ type DeleteOauth2CredentialProviderCommandInput,
117
+ type DeleteOauth2CredentialProviderCommandOutput,
118
+ DeleteOnlineEvaluationConfigCommand,
119
+ type DeleteOnlineEvaluationConfigCommandInput,
120
+ type DeleteOnlineEvaluationConfigCommandOutput,
121
+ DeletePaymentConnectorCommand,
122
+ type DeletePaymentConnectorCommandInput,
123
+ type DeletePaymentConnectorCommandOutput,
124
+ DeletePaymentCredentialProviderCommand,
125
+ type DeletePaymentCredentialProviderCommandInput,
126
+ type DeletePaymentCredentialProviderCommandOutput,
127
+ DeletePaymentManagerCommand,
128
+ type DeletePaymentManagerCommandInput,
129
+ type DeletePaymentManagerCommandOutput,
130
+ DeletePolicyCommand,
131
+ type DeletePolicyCommandInput,
132
+ type DeletePolicyCommandOutput,
133
+ DeletePolicyEngineCommand,
134
+ type DeletePolicyEngineCommandInput,
135
+ type DeletePolicyEngineCommandOutput,
136
+ DeleteRegistryCommand,
137
+ type DeleteRegistryCommandInput,
138
+ type DeleteRegistryCommandOutput,
139
+ DeleteRegistryRecordCommand,
140
+ type DeleteRegistryRecordCommandInput,
141
+ type DeleteRegistryRecordCommandOutput,
142
+ DeleteResourcePolicyCommand,
143
+ type DeleteResourcePolicyCommandInput,
144
+ type DeleteResourcePolicyCommandOutput,
145
+ DeleteWorkloadIdentityCommand,
146
+ type DeleteWorkloadIdentityCommandInput,
147
+ type DeleteWorkloadIdentityCommandOutput,
148
+ GetAgentRuntimeCommand,
149
+ type GetAgentRuntimeCommandInput,
150
+ type GetAgentRuntimeCommandOutput,
151
+ GetAgentRuntimeEndpointCommand,
152
+ type GetAgentRuntimeEndpointCommandInput,
153
+ type GetAgentRuntimeEndpointCommandOutput,
154
+ GetApiKeyCredentialProviderCommand,
155
+ type GetApiKeyCredentialProviderCommandInput,
156
+ type GetApiKeyCredentialProviderCommandOutput,
157
+ GetBrowserCommand,
158
+ type GetBrowserCommandInput,
159
+ type GetBrowserCommandOutput,
160
+ GetBrowserProfileCommand,
161
+ type GetBrowserProfileCommandInput,
162
+ type GetBrowserProfileCommandOutput,
163
+ GetCodeInterpreterCommand,
164
+ type GetCodeInterpreterCommandInput,
165
+ type GetCodeInterpreterCommandOutput,
166
+ GetConfigurationBundleCommand,
167
+ type GetConfigurationBundleCommandInput,
168
+ type GetConfigurationBundleCommandOutput,
169
+ GetConfigurationBundleVersionCommand,
170
+ type GetConfigurationBundleVersionCommandInput,
171
+ type GetConfigurationBundleVersionCommandOutput,
172
+ GetEvaluatorCommand,
173
+ type GetEvaluatorCommandInput,
174
+ type GetEvaluatorCommandOutput,
175
+ GetGatewayCommand,
176
+ type GetGatewayCommandInput,
177
+ type GetGatewayCommandOutput,
178
+ GetGatewayRuleCommand,
179
+ type GetGatewayRuleCommandInput,
180
+ type GetGatewayRuleCommandOutput,
181
+ GetGatewayTargetCommand,
182
+ type GetGatewayTargetCommandInput,
183
+ type GetGatewayTargetCommandOutput,
184
+ GetHarnessCommand,
185
+ type GetHarnessCommandInput,
186
+ type GetHarnessCommandOutput,
187
+ GetMemoryCommand,
188
+ type GetMemoryCommandInput,
189
+ type GetMemoryCommandOutput,
190
+ GetOauth2CredentialProviderCommand,
191
+ type GetOauth2CredentialProviderCommandInput,
192
+ type GetOauth2CredentialProviderCommandOutput,
193
+ GetOnlineEvaluationConfigCommand,
194
+ type GetOnlineEvaluationConfigCommandInput,
195
+ type GetOnlineEvaluationConfigCommandOutput,
196
+ GetPaymentConnectorCommand,
197
+ type GetPaymentConnectorCommandInput,
198
+ type GetPaymentConnectorCommandOutput,
199
+ GetPaymentCredentialProviderCommand,
200
+ type GetPaymentCredentialProviderCommandInput,
201
+ type GetPaymentCredentialProviderCommandOutput,
202
+ GetPaymentManagerCommand,
203
+ type GetPaymentManagerCommandInput,
204
+ type GetPaymentManagerCommandOutput,
205
+ GetPolicyCommand,
206
+ type GetPolicyCommandInput,
207
+ type GetPolicyCommandOutput,
208
+ GetPolicyEngineCommand,
209
+ type GetPolicyEngineCommandInput,
210
+ type GetPolicyEngineCommandOutput,
211
+ GetPolicyGenerationCommand,
212
+ type GetPolicyGenerationCommandInput,
213
+ type GetPolicyGenerationCommandOutput,
214
+ GetRegistryCommand,
215
+ type GetRegistryCommandInput,
216
+ type GetRegistryCommandOutput,
217
+ GetRegistryRecordCommand,
218
+ type GetRegistryRecordCommandInput,
219
+ type GetRegistryRecordCommandOutput,
220
+ GetResourcePolicyCommand,
221
+ type GetResourcePolicyCommandInput,
222
+ type GetResourcePolicyCommandOutput,
223
+ GetTokenVaultCommand,
224
+ type GetTokenVaultCommandInput,
225
+ type GetTokenVaultCommandOutput,
226
+ GetWorkloadIdentityCommand,
227
+ type GetWorkloadIdentityCommandInput,
228
+ type GetWorkloadIdentityCommandOutput,
229
+ ListAgentRuntimeEndpointsCommand,
230
+ type ListAgentRuntimeEndpointsCommandInput,
231
+ type ListAgentRuntimeEndpointsCommandOutput,
232
+ ListAgentRuntimesCommand,
233
+ type ListAgentRuntimesCommandInput,
234
+ type ListAgentRuntimesCommandOutput,
235
+ ListAgentRuntimeVersionsCommand,
236
+ type ListAgentRuntimeVersionsCommandInput,
237
+ type ListAgentRuntimeVersionsCommandOutput,
238
+ ListApiKeyCredentialProvidersCommand,
239
+ type ListApiKeyCredentialProvidersCommandInput,
240
+ type ListApiKeyCredentialProvidersCommandOutput,
241
+ ListBrowserProfilesCommand,
242
+ type ListBrowserProfilesCommandInput,
243
+ type ListBrowserProfilesCommandOutput,
244
+ ListBrowsersCommand,
245
+ type ListBrowsersCommandInput,
246
+ type ListBrowsersCommandOutput,
247
+ ListCodeInterpretersCommand,
248
+ type ListCodeInterpretersCommandInput,
249
+ type ListCodeInterpretersCommandOutput,
250
+ ListConfigurationBundlesCommand,
251
+ type ListConfigurationBundlesCommandInput,
252
+ type ListConfigurationBundlesCommandOutput,
253
+ ListConfigurationBundleVersionsCommand,
254
+ type ListConfigurationBundleVersionsCommandInput,
255
+ type ListConfigurationBundleVersionsCommandOutput,
256
+ ListEvaluatorsCommand,
257
+ type ListEvaluatorsCommandInput,
258
+ type ListEvaluatorsCommandOutput,
259
+ ListGatewayRulesCommand,
260
+ type ListGatewayRulesCommandInput,
261
+ type ListGatewayRulesCommandOutput,
262
+ ListGatewaysCommand,
263
+ type ListGatewaysCommandInput,
264
+ type ListGatewaysCommandOutput,
265
+ ListGatewayTargetsCommand,
266
+ type ListGatewayTargetsCommandInput,
267
+ type ListGatewayTargetsCommandOutput,
268
+ ListHarnessesCommand,
269
+ type ListHarnessesCommandInput,
270
+ type ListHarnessesCommandOutput,
271
+ ListMemoriesCommand,
272
+ type ListMemoriesCommandInput,
273
+ type ListMemoriesCommandOutput,
274
+ ListOauth2CredentialProvidersCommand,
275
+ type ListOauth2CredentialProvidersCommandInput,
276
+ type ListOauth2CredentialProvidersCommandOutput,
277
+ ListOnlineEvaluationConfigsCommand,
278
+ type ListOnlineEvaluationConfigsCommandInput,
279
+ type ListOnlineEvaluationConfigsCommandOutput,
280
+ ListPaymentConnectorsCommand,
281
+ type ListPaymentConnectorsCommandInput,
282
+ type ListPaymentConnectorsCommandOutput,
283
+ ListPaymentCredentialProvidersCommand,
284
+ type ListPaymentCredentialProvidersCommandInput,
285
+ type ListPaymentCredentialProvidersCommandOutput,
286
+ ListPaymentManagersCommand,
287
+ type ListPaymentManagersCommandInput,
288
+ type ListPaymentManagersCommandOutput,
289
+ ListPoliciesCommand,
290
+ type ListPoliciesCommandInput,
291
+ type ListPoliciesCommandOutput,
292
+ ListPolicyEnginesCommand,
293
+ type ListPolicyEnginesCommandInput,
294
+ type ListPolicyEnginesCommandOutput,
295
+ ListPolicyGenerationAssetsCommand,
296
+ type ListPolicyGenerationAssetsCommandInput,
297
+ type ListPolicyGenerationAssetsCommandOutput,
298
+ ListPolicyGenerationsCommand,
299
+ type ListPolicyGenerationsCommandInput,
300
+ type ListPolicyGenerationsCommandOutput,
301
+ ListRegistriesCommand,
302
+ type ListRegistriesCommandInput,
303
+ type ListRegistriesCommandOutput,
304
+ ListRegistryRecordsCommand,
305
+ type ListRegistryRecordsCommandInput,
306
+ type ListRegistryRecordsCommandOutput,
307
+ ListTagsForResourceCommand,
308
+ type ListTagsForResourceCommandInput,
309
+ type ListTagsForResourceCommandOutput,
310
+ ListWorkloadIdentitiesCommand,
311
+ type ListWorkloadIdentitiesCommandInput,
312
+ type ListWorkloadIdentitiesCommandOutput,
313
+ paginateListAgentRuntimeEndpoints,
314
+ paginateListAgentRuntimes,
315
+ paginateListAgentRuntimeVersions,
316
+ paginateListApiKeyCredentialProviders,
317
+ paginateListBrowserProfiles,
318
+ paginateListBrowsers,
319
+ paginateListCodeInterpreters,
320
+ paginateListConfigurationBundles,
321
+ paginateListConfigurationBundleVersions,
322
+ paginateListEvaluators,
323
+ paginateListGatewayRules,
324
+ paginateListGateways,
325
+ paginateListGatewayTargets,
326
+ paginateListHarnesses,
327
+ paginateListMemories,
328
+ paginateListOauth2CredentialProviders,
329
+ paginateListOnlineEvaluationConfigs,
330
+ paginateListPaymentConnectors,
331
+ paginateListPaymentCredentialProviders,
332
+ paginateListPaymentManagers,
333
+ paginateListPolicies,
334
+ paginateListPolicyEngines,
335
+ paginateListPolicyGenerationAssets,
336
+ paginateListPolicyGenerations,
337
+ paginateListRegistries,
338
+ paginateListRegistryRecords,
339
+ paginateListWorkloadIdentities,
340
+ PutResourcePolicyCommand,
341
+ type PutResourcePolicyCommandInput,
342
+ type PutResourcePolicyCommandOutput,
343
+ SetTokenVaultCMKCommand,
344
+ type SetTokenVaultCMKCommandInput,
345
+ type SetTokenVaultCMKCommandOutput,
346
+ StartPolicyGenerationCommand,
347
+ type StartPolicyGenerationCommandInput,
348
+ type StartPolicyGenerationCommandOutput,
349
+ SubmitRegistryRecordForApprovalCommand,
350
+ type SubmitRegistryRecordForApprovalCommandInput,
351
+ type SubmitRegistryRecordForApprovalCommandOutput,
352
+ SynchronizeGatewayTargetsCommand,
353
+ type SynchronizeGatewayTargetsCommandInput,
354
+ type SynchronizeGatewayTargetsCommandOutput,
355
+ TagResourceCommand,
356
+ type TagResourceCommandInput,
357
+ type TagResourceCommandOutput,
358
+ UntagResourceCommand,
359
+ type UntagResourceCommandInput,
360
+ type UntagResourceCommandOutput,
361
+ UpdateAgentRuntimeCommand,
362
+ type UpdateAgentRuntimeCommandInput,
363
+ type UpdateAgentRuntimeCommandOutput,
364
+ UpdateAgentRuntimeEndpointCommand,
365
+ type UpdateAgentRuntimeEndpointCommandInput,
366
+ type UpdateAgentRuntimeEndpointCommandOutput,
367
+ UpdateApiKeyCredentialProviderCommand,
368
+ type UpdateApiKeyCredentialProviderCommandInput,
369
+ type UpdateApiKeyCredentialProviderCommandOutput,
370
+ UpdateConfigurationBundleCommand,
371
+ type UpdateConfigurationBundleCommandInput,
372
+ type UpdateConfigurationBundleCommandOutput,
373
+ UpdateEvaluatorCommand,
374
+ type UpdateEvaluatorCommandInput,
375
+ type UpdateEvaluatorCommandOutput,
376
+ UpdateGatewayCommand,
377
+ type UpdateGatewayCommandInput,
378
+ type UpdateGatewayCommandOutput,
379
+ UpdateGatewayRuleCommand,
380
+ type UpdateGatewayRuleCommandInput,
381
+ type UpdateGatewayRuleCommandOutput,
382
+ UpdateGatewayTargetCommand,
383
+ type UpdateGatewayTargetCommandInput,
384
+ type UpdateGatewayTargetCommandOutput,
385
+ UpdateHarnessCommand,
386
+ type UpdateHarnessCommandInput,
387
+ type UpdateHarnessCommandOutput,
388
+ UpdateMemoryCommand,
389
+ type UpdateMemoryCommandInput,
390
+ type UpdateMemoryCommandOutput,
391
+ UpdateOauth2CredentialProviderCommand,
392
+ type UpdateOauth2CredentialProviderCommandInput,
393
+ type UpdateOauth2CredentialProviderCommandOutput,
394
+ UpdateOnlineEvaluationConfigCommand,
395
+ type UpdateOnlineEvaluationConfigCommandInput,
396
+ type UpdateOnlineEvaluationConfigCommandOutput,
397
+ UpdatePaymentConnectorCommand,
398
+ type UpdatePaymentConnectorCommandInput,
399
+ type UpdatePaymentConnectorCommandOutput,
400
+ UpdatePaymentCredentialProviderCommand,
401
+ type UpdatePaymentCredentialProviderCommandInput,
402
+ type UpdatePaymentCredentialProviderCommandOutput,
403
+ UpdatePaymentManagerCommand,
404
+ type UpdatePaymentManagerCommandInput,
405
+ type UpdatePaymentManagerCommandOutput,
406
+ UpdatePolicyCommand,
407
+ type UpdatePolicyCommandInput,
408
+ type UpdatePolicyCommandOutput,
409
+ UpdatePolicyEngineCommand,
410
+ type UpdatePolicyEngineCommandInput,
411
+ type UpdatePolicyEngineCommandOutput,
412
+ UpdateRegistryCommand,
413
+ type UpdateRegistryCommandInput,
414
+ type UpdateRegistryCommandOutput,
415
+ UpdateRegistryRecordCommand,
416
+ type UpdateRegistryRecordCommandInput,
417
+ type UpdateRegistryRecordCommandOutput,
418
+ UpdateRegistryRecordStatusCommand,
419
+ type UpdateRegistryRecordStatusCommandInput,
420
+ type UpdateRegistryRecordStatusCommandOutput,
421
+ UpdateWorkloadIdentityCommand,
422
+ type UpdateWorkloadIdentityCommandInput,
423
+ type UpdateWorkloadIdentityCommandOutput,
424
+ } from "@aws-sdk/client-bedrock-agentcore-control";
425
+ import * as Service from "@effect-aws/commons/Service";
426
+ import type * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
427
+ import type { HttpHandlerOptions } from "@effect-aws/commons/Types";
428
+ import type * as Cause from "effect/Cause";
429
+ import * as Effect from "effect/Effect";
430
+ import * as Layer from "effect/Layer";
431
+ import type * as Stream from "effect/Stream";
432
+ import * as Instance from "./BedrockAgentCoreControlClientInstance.js";
433
+ import * as BedrockAgentCoreControlServiceConfig from "./BedrockAgentCoreControlServiceConfig.js";
434
+ import type {
435
+ AccessDeniedError,
436
+ ConcurrentModificationError,
437
+ ConflictError,
438
+ DecryptionError,
439
+ EncryptionError,
440
+ InternalServerError,
441
+ ResourceLimitExceededError,
442
+ ResourceNotFoundError,
443
+ SdkError,
444
+ ServiceError,
445
+ ServiceQuotaExceededError,
446
+ ThrottledError,
447
+ ThrottlingError,
448
+ UnauthorizedError,
449
+ ValidationError,
450
+ } from "./Errors.js";
451
+ import { AllServiceErrors } from "./Errors.js";
452
+
453
+ const commands = {
454
+ CreateAgentRuntimeCommand,
455
+ CreateAgentRuntimeEndpointCommand,
456
+ CreateApiKeyCredentialProviderCommand,
457
+ CreateBrowserCommand,
458
+ CreateBrowserProfileCommand,
459
+ CreateCodeInterpreterCommand,
460
+ CreateConfigurationBundleCommand,
461
+ CreateEvaluatorCommand,
462
+ CreateGatewayCommand,
463
+ CreateGatewayRuleCommand,
464
+ CreateGatewayTargetCommand,
465
+ CreateHarnessCommand,
466
+ CreateMemoryCommand,
467
+ CreateOauth2CredentialProviderCommand,
468
+ CreateOnlineEvaluationConfigCommand,
469
+ CreatePaymentConnectorCommand,
470
+ CreatePaymentCredentialProviderCommand,
471
+ CreatePaymentManagerCommand,
472
+ CreatePolicyCommand,
473
+ CreatePolicyEngineCommand,
474
+ CreateRegistryCommand,
475
+ CreateRegistryRecordCommand,
476
+ CreateWorkloadIdentityCommand,
477
+ DeleteAgentRuntimeCommand,
478
+ DeleteAgentRuntimeEndpointCommand,
479
+ DeleteApiKeyCredentialProviderCommand,
480
+ DeleteBrowserCommand,
481
+ DeleteBrowserProfileCommand,
482
+ DeleteCodeInterpreterCommand,
483
+ DeleteConfigurationBundleCommand,
484
+ DeleteEvaluatorCommand,
485
+ DeleteGatewayCommand,
486
+ DeleteGatewayRuleCommand,
487
+ DeleteGatewayTargetCommand,
488
+ DeleteHarnessCommand,
489
+ DeleteMemoryCommand,
490
+ DeleteOauth2CredentialProviderCommand,
491
+ DeleteOnlineEvaluationConfigCommand,
492
+ DeletePaymentConnectorCommand,
493
+ DeletePaymentCredentialProviderCommand,
494
+ DeletePaymentManagerCommand,
495
+ DeletePolicyCommand,
496
+ DeletePolicyEngineCommand,
497
+ DeleteRegistryCommand,
498
+ DeleteRegistryRecordCommand,
499
+ DeleteResourcePolicyCommand,
500
+ DeleteWorkloadIdentityCommand,
501
+ GetAgentRuntimeCommand,
502
+ GetAgentRuntimeEndpointCommand,
503
+ GetApiKeyCredentialProviderCommand,
504
+ GetBrowserCommand,
505
+ GetBrowserProfileCommand,
506
+ GetCodeInterpreterCommand,
507
+ GetConfigurationBundleCommand,
508
+ GetConfigurationBundleVersionCommand,
509
+ GetEvaluatorCommand,
510
+ GetGatewayCommand,
511
+ GetGatewayRuleCommand,
512
+ GetGatewayTargetCommand,
513
+ GetHarnessCommand,
514
+ GetMemoryCommand,
515
+ GetOauth2CredentialProviderCommand,
516
+ GetOnlineEvaluationConfigCommand,
517
+ GetPaymentConnectorCommand,
518
+ GetPaymentCredentialProviderCommand,
519
+ GetPaymentManagerCommand,
520
+ GetPolicyCommand,
521
+ GetPolicyEngineCommand,
522
+ GetPolicyGenerationCommand,
523
+ GetRegistryCommand,
524
+ GetRegistryRecordCommand,
525
+ GetResourcePolicyCommand,
526
+ GetTokenVaultCommand,
527
+ GetWorkloadIdentityCommand,
528
+ ListAgentRuntimeEndpointsCommand,
529
+ ListAgentRuntimeVersionsCommand,
530
+ ListAgentRuntimesCommand,
531
+ ListApiKeyCredentialProvidersCommand,
532
+ ListBrowserProfilesCommand,
533
+ ListBrowsersCommand,
534
+ ListCodeInterpretersCommand,
535
+ ListConfigurationBundleVersionsCommand,
536
+ ListConfigurationBundlesCommand,
537
+ ListEvaluatorsCommand,
538
+ ListGatewayRulesCommand,
539
+ ListGatewayTargetsCommand,
540
+ ListGatewaysCommand,
541
+ ListHarnessesCommand,
542
+ ListMemoriesCommand,
543
+ ListOauth2CredentialProvidersCommand,
544
+ ListOnlineEvaluationConfigsCommand,
545
+ ListPaymentConnectorsCommand,
546
+ ListPaymentCredentialProvidersCommand,
547
+ ListPaymentManagersCommand,
548
+ ListPoliciesCommand,
549
+ ListPolicyEnginesCommand,
550
+ ListPolicyGenerationAssetsCommand,
551
+ ListPolicyGenerationsCommand,
552
+ ListRegistriesCommand,
553
+ ListRegistryRecordsCommand,
554
+ ListTagsForResourceCommand,
555
+ ListWorkloadIdentitiesCommand,
556
+ PutResourcePolicyCommand,
557
+ SetTokenVaultCMKCommand,
558
+ StartPolicyGenerationCommand,
559
+ SubmitRegistryRecordForApprovalCommand,
560
+ SynchronizeGatewayTargetsCommand,
561
+ TagResourceCommand,
562
+ UntagResourceCommand,
563
+ UpdateAgentRuntimeCommand,
564
+ UpdateAgentRuntimeEndpointCommand,
565
+ UpdateApiKeyCredentialProviderCommand,
566
+ UpdateConfigurationBundleCommand,
567
+ UpdateEvaluatorCommand,
568
+ UpdateGatewayCommand,
569
+ UpdateGatewayRuleCommand,
570
+ UpdateGatewayTargetCommand,
571
+ UpdateHarnessCommand,
572
+ UpdateMemoryCommand,
573
+ UpdateOauth2CredentialProviderCommand,
574
+ UpdateOnlineEvaluationConfigCommand,
575
+ UpdatePaymentConnectorCommand,
576
+ UpdatePaymentCredentialProviderCommand,
577
+ UpdatePaymentManagerCommand,
578
+ UpdatePolicyCommand,
579
+ UpdatePolicyEngineCommand,
580
+ UpdateRegistryCommand,
581
+ UpdateRegistryRecordCommand,
582
+ UpdateRegistryRecordStatusCommand,
583
+ UpdateWorkloadIdentityCommand,
584
+ };
585
+
586
+ const paginators = {
587
+ paginateListAgentRuntimeEndpoints,
588
+ paginateListAgentRuntimeVersions,
589
+ paginateListAgentRuntimes,
590
+ paginateListApiKeyCredentialProviders,
591
+ paginateListBrowserProfiles,
592
+ paginateListBrowsers,
593
+ paginateListCodeInterpreters,
594
+ paginateListConfigurationBundleVersions,
595
+ paginateListConfigurationBundles,
596
+ paginateListEvaluators,
597
+ paginateListGatewayRules,
598
+ paginateListGatewayTargets,
599
+ paginateListGateways,
600
+ paginateListHarnesses,
601
+ paginateListMemories,
602
+ paginateListOauth2CredentialProviders,
603
+ paginateListOnlineEvaluationConfigs,
604
+ paginateListPaymentConnectors,
605
+ paginateListPaymentCredentialProviders,
606
+ paginateListPaymentManagers,
607
+ paginateListPolicies,
608
+ paginateListPolicyEngines,
609
+ paginateListPolicyGenerationAssets,
610
+ paginateListPolicyGenerations,
611
+ paginateListRegistries,
612
+ paginateListRegistryRecords,
613
+ paginateListWorkloadIdentities,
614
+ };
615
+
616
+ interface BedrockAgentCoreControlService$ {
617
+ readonly _: unique symbol;
618
+
619
+ /**
620
+ * @see {@link CreateAgentRuntimeCommand}
621
+ */
622
+ createAgentRuntime(
623
+ args: CreateAgentRuntimeCommandInput,
624
+ options?: HttpHandlerOptions,
625
+ ): Effect.Effect<
626
+ CreateAgentRuntimeCommandOutput,
627
+ | Cause.TimeoutException
628
+ | SdkError
629
+ | AccessDeniedError
630
+ | ConflictError
631
+ | InternalServerError
632
+ | ServiceQuotaExceededError
633
+ | ThrottlingError
634
+ | ValidationError
635
+ >;
636
+
637
+ /**
638
+ * @see {@link CreateAgentRuntimeEndpointCommand}
639
+ */
640
+ createAgentRuntimeEndpoint(
641
+ args: CreateAgentRuntimeEndpointCommandInput,
642
+ options?: HttpHandlerOptions,
643
+ ): Effect.Effect<
644
+ CreateAgentRuntimeEndpointCommandOutput,
645
+ | Cause.TimeoutException
646
+ | SdkError
647
+ | AccessDeniedError
648
+ | ConflictError
649
+ | InternalServerError
650
+ | ResourceNotFoundError
651
+ | ServiceQuotaExceededError
652
+ | ThrottlingError
653
+ | ValidationError
654
+ >;
655
+
656
+ /**
657
+ * @see {@link CreateApiKeyCredentialProviderCommand}
658
+ */
659
+ createApiKeyCredentialProvider(
660
+ args: CreateApiKeyCredentialProviderCommandInput,
661
+ options?: HttpHandlerOptions,
662
+ ): Effect.Effect<
663
+ CreateApiKeyCredentialProviderCommandOutput,
664
+ | Cause.TimeoutException
665
+ | SdkError
666
+ | AccessDeniedError
667
+ | ConflictError
668
+ | DecryptionError
669
+ | EncryptionError
670
+ | InternalServerError
671
+ | ResourceLimitExceededError
672
+ | ResourceNotFoundError
673
+ | ServiceQuotaExceededError
674
+ | ThrottlingError
675
+ | UnauthorizedError
676
+ | ValidationError
677
+ >;
678
+
679
+ /**
680
+ * @see {@link CreateBrowserCommand}
681
+ */
682
+ createBrowser(
683
+ args: CreateBrowserCommandInput,
684
+ options?: HttpHandlerOptions,
685
+ ): Effect.Effect<
686
+ CreateBrowserCommandOutput,
687
+ | Cause.TimeoutException
688
+ | SdkError
689
+ | AccessDeniedError
690
+ | ConflictError
691
+ | InternalServerError
692
+ | ServiceQuotaExceededError
693
+ | ThrottlingError
694
+ | ValidationError
695
+ >;
696
+
697
+ /**
698
+ * @see {@link CreateBrowserProfileCommand}
699
+ */
700
+ createBrowserProfile(
701
+ args: CreateBrowserProfileCommandInput,
702
+ options?: HttpHandlerOptions,
703
+ ): Effect.Effect<
704
+ CreateBrowserProfileCommandOutput,
705
+ | Cause.TimeoutException
706
+ | SdkError
707
+ | AccessDeniedError
708
+ | ConflictError
709
+ | InternalServerError
710
+ | ServiceQuotaExceededError
711
+ | ThrottlingError
712
+ | ValidationError
713
+ >;
714
+
715
+ /**
716
+ * @see {@link CreateCodeInterpreterCommand}
717
+ */
718
+ createCodeInterpreter(
719
+ args: CreateCodeInterpreterCommandInput,
720
+ options?: HttpHandlerOptions,
721
+ ): Effect.Effect<
722
+ CreateCodeInterpreterCommandOutput,
723
+ | Cause.TimeoutException
724
+ | SdkError
725
+ | AccessDeniedError
726
+ | ConflictError
727
+ | InternalServerError
728
+ | ServiceQuotaExceededError
729
+ | ThrottlingError
730
+ | ValidationError
731
+ >;
732
+
733
+ /**
734
+ * @see {@link CreateConfigurationBundleCommand}
735
+ */
736
+ createConfigurationBundle(
737
+ args: CreateConfigurationBundleCommandInput,
738
+ options?: HttpHandlerOptions,
739
+ ): Effect.Effect<
740
+ CreateConfigurationBundleCommandOutput,
741
+ | Cause.TimeoutException
742
+ | SdkError
743
+ | AccessDeniedError
744
+ | ConflictError
745
+ | InternalServerError
746
+ | ServiceQuotaExceededError
747
+ | ThrottlingError
748
+ | ValidationError
749
+ >;
750
+
751
+ /**
752
+ * @see {@link CreateEvaluatorCommand}
753
+ */
754
+ createEvaluator(
755
+ args: CreateEvaluatorCommandInput,
756
+ options?: HttpHandlerOptions,
757
+ ): Effect.Effect<
758
+ CreateEvaluatorCommandOutput,
759
+ | Cause.TimeoutException
760
+ | SdkError
761
+ | AccessDeniedError
762
+ | ConflictError
763
+ | InternalServerError
764
+ | ServiceQuotaExceededError
765
+ | ThrottlingError
766
+ | ValidationError
767
+ >;
768
+
769
+ /**
770
+ * @see {@link CreateGatewayCommand}
771
+ */
772
+ createGateway(
773
+ args: CreateGatewayCommandInput,
774
+ options?: HttpHandlerOptions,
775
+ ): Effect.Effect<
776
+ CreateGatewayCommandOutput,
777
+ | Cause.TimeoutException
778
+ | SdkError
779
+ | AccessDeniedError
780
+ | ConflictError
781
+ | InternalServerError
782
+ | ServiceQuotaExceededError
783
+ | ThrottlingError
784
+ | ValidationError
785
+ >;
786
+
787
+ /**
788
+ * @see {@link CreateGatewayRuleCommand}
789
+ */
790
+ createGatewayRule(
791
+ args: CreateGatewayRuleCommandInput,
792
+ options?: HttpHandlerOptions,
793
+ ): Effect.Effect<
794
+ CreateGatewayRuleCommandOutput,
795
+ | Cause.TimeoutException
796
+ | SdkError
797
+ | AccessDeniedError
798
+ | ConflictError
799
+ | InternalServerError
800
+ | ResourceNotFoundError
801
+ | ServiceQuotaExceededError
802
+ | ThrottlingError
803
+ | ValidationError
804
+ >;
805
+
806
+ /**
807
+ * @see {@link CreateGatewayTargetCommand}
808
+ */
809
+ createGatewayTarget(
810
+ args: CreateGatewayTargetCommandInput,
811
+ options?: HttpHandlerOptions,
812
+ ): Effect.Effect<
813
+ CreateGatewayTargetCommandOutput,
814
+ | Cause.TimeoutException
815
+ | SdkError
816
+ | AccessDeniedError
817
+ | ConflictError
818
+ | InternalServerError
819
+ | ResourceNotFoundError
820
+ | ServiceQuotaExceededError
821
+ | ThrottlingError
822
+ | ValidationError
823
+ >;
824
+
825
+ /**
826
+ * @see {@link CreateHarnessCommand}
827
+ */
828
+ createHarness(
829
+ args: CreateHarnessCommandInput,
830
+ options?: HttpHandlerOptions,
831
+ ): Effect.Effect<
832
+ CreateHarnessCommandOutput,
833
+ | Cause.TimeoutException
834
+ | SdkError
835
+ | AccessDeniedError
836
+ | ConflictError
837
+ | InternalServerError
838
+ | ServiceQuotaExceededError
839
+ | ThrottlingError
840
+ | ValidationError
841
+ >;
842
+
843
+ /**
844
+ * @see {@link CreateMemoryCommand}
845
+ */
846
+ createMemory(
847
+ args: CreateMemoryCommandInput,
848
+ options?: HttpHandlerOptions,
849
+ ): Effect.Effect<
850
+ CreateMemoryCommandOutput,
851
+ | Cause.TimeoutException
852
+ | SdkError
853
+ | AccessDeniedError
854
+ | ConflictError
855
+ | ResourceNotFoundError
856
+ | ServiceError
857
+ | ServiceQuotaExceededError
858
+ | ThrottledError
859
+ | ValidationError
860
+ >;
861
+
862
+ /**
863
+ * @see {@link CreateOauth2CredentialProviderCommand}
864
+ */
865
+ createOauth2CredentialProvider(
866
+ args: CreateOauth2CredentialProviderCommandInput,
867
+ options?: HttpHandlerOptions,
868
+ ): Effect.Effect<
869
+ CreateOauth2CredentialProviderCommandOutput,
870
+ | Cause.TimeoutException
871
+ | SdkError
872
+ | AccessDeniedError
873
+ | ConflictError
874
+ | DecryptionError
875
+ | EncryptionError
876
+ | InternalServerError
877
+ | ResourceLimitExceededError
878
+ | ResourceNotFoundError
879
+ | ServiceQuotaExceededError
880
+ | ThrottlingError
881
+ | UnauthorizedError
882
+ | ValidationError
883
+ >;
884
+
885
+ /**
886
+ * @see {@link CreateOnlineEvaluationConfigCommand}
887
+ */
888
+ createOnlineEvaluationConfig(
889
+ args: CreateOnlineEvaluationConfigCommandInput,
890
+ options?: HttpHandlerOptions,
891
+ ): Effect.Effect<
892
+ CreateOnlineEvaluationConfigCommandOutput,
893
+ | Cause.TimeoutException
894
+ | SdkError
895
+ | AccessDeniedError
896
+ | ConflictError
897
+ | InternalServerError
898
+ | ServiceQuotaExceededError
899
+ | ThrottlingError
900
+ | ValidationError
901
+ >;
902
+
903
+ /**
904
+ * @see {@link CreatePaymentConnectorCommand}
905
+ */
906
+ createPaymentConnector(
907
+ args: CreatePaymentConnectorCommandInput,
908
+ options?: HttpHandlerOptions,
909
+ ): Effect.Effect<
910
+ CreatePaymentConnectorCommandOutput,
911
+ | Cause.TimeoutException
912
+ | SdkError
913
+ | AccessDeniedError
914
+ | ConflictError
915
+ | InternalServerError
916
+ | ResourceNotFoundError
917
+ | ServiceQuotaExceededError
918
+ | ThrottlingError
919
+ | ValidationError
920
+ >;
921
+
922
+ /**
923
+ * @see {@link CreatePaymentCredentialProviderCommand}
924
+ */
925
+ createPaymentCredentialProvider(
926
+ args: CreatePaymentCredentialProviderCommandInput,
927
+ options?: HttpHandlerOptions,
928
+ ): Effect.Effect<
929
+ CreatePaymentCredentialProviderCommandOutput,
930
+ | Cause.TimeoutException
931
+ | SdkError
932
+ | AccessDeniedError
933
+ | ConflictError
934
+ | DecryptionError
935
+ | EncryptionError
936
+ | InternalServerError
937
+ | ResourceLimitExceededError
938
+ | ResourceNotFoundError
939
+ | ServiceQuotaExceededError
940
+ | ThrottlingError
941
+ | UnauthorizedError
942
+ | ValidationError
943
+ >;
944
+
945
+ /**
946
+ * @see {@link CreatePaymentManagerCommand}
947
+ */
948
+ createPaymentManager(
949
+ args: CreatePaymentManagerCommandInput,
950
+ options?: HttpHandlerOptions,
951
+ ): Effect.Effect<
952
+ CreatePaymentManagerCommandOutput,
953
+ | Cause.TimeoutException
954
+ | SdkError
955
+ | AccessDeniedError
956
+ | ConflictError
957
+ | InternalServerError
958
+ | ServiceQuotaExceededError
959
+ | ThrottlingError
960
+ | ValidationError
961
+ >;
962
+
963
+ /**
964
+ * @see {@link CreatePolicyCommand}
965
+ */
966
+ createPolicy(
967
+ args: CreatePolicyCommandInput,
968
+ options?: HttpHandlerOptions,
969
+ ): Effect.Effect<
970
+ CreatePolicyCommandOutput,
971
+ | Cause.TimeoutException
972
+ | SdkError
973
+ | AccessDeniedError
974
+ | ConflictError
975
+ | InternalServerError
976
+ | ResourceNotFoundError
977
+ | ServiceQuotaExceededError
978
+ | ThrottlingError
979
+ | ValidationError
980
+ >;
981
+
982
+ /**
983
+ * @see {@link CreatePolicyEngineCommand}
984
+ */
985
+ createPolicyEngine(
986
+ args: CreatePolicyEngineCommandInput,
987
+ options?: HttpHandlerOptions,
988
+ ): Effect.Effect<
989
+ CreatePolicyEngineCommandOutput,
990
+ | Cause.TimeoutException
991
+ | SdkError
992
+ | AccessDeniedError
993
+ | ConflictError
994
+ | InternalServerError
995
+ | ServiceQuotaExceededError
996
+ | ThrottlingError
997
+ | ValidationError
998
+ >;
999
+
1000
+ /**
1001
+ * @see {@link CreateRegistryCommand}
1002
+ */
1003
+ createRegistry(
1004
+ args: CreateRegistryCommandInput,
1005
+ options?: HttpHandlerOptions,
1006
+ ): Effect.Effect<
1007
+ CreateRegistryCommandOutput,
1008
+ | Cause.TimeoutException
1009
+ | SdkError
1010
+ | AccessDeniedError
1011
+ | ConflictError
1012
+ | InternalServerError
1013
+ | ServiceQuotaExceededError
1014
+ | ThrottlingError
1015
+ | ValidationError
1016
+ >;
1017
+
1018
+ /**
1019
+ * @see {@link CreateRegistryRecordCommand}
1020
+ */
1021
+ createRegistryRecord(
1022
+ args: CreateRegistryRecordCommandInput,
1023
+ options?: HttpHandlerOptions,
1024
+ ): Effect.Effect<
1025
+ CreateRegistryRecordCommandOutput,
1026
+ | Cause.TimeoutException
1027
+ | SdkError
1028
+ | AccessDeniedError
1029
+ | ConflictError
1030
+ | InternalServerError
1031
+ | ResourceNotFoundError
1032
+ | ServiceQuotaExceededError
1033
+ | ThrottlingError
1034
+ | ValidationError
1035
+ >;
1036
+
1037
+ /**
1038
+ * @see {@link CreateWorkloadIdentityCommand}
1039
+ */
1040
+ createWorkloadIdentity(
1041
+ args: CreateWorkloadIdentityCommandInput,
1042
+ options?: HttpHandlerOptions,
1043
+ ): Effect.Effect<
1044
+ CreateWorkloadIdentityCommandOutput,
1045
+ | Cause.TimeoutException
1046
+ | SdkError
1047
+ | AccessDeniedError
1048
+ | InternalServerError
1049
+ | ResourceNotFoundError
1050
+ | ThrottlingError
1051
+ | UnauthorizedError
1052
+ | ValidationError
1053
+ >;
1054
+
1055
+ /**
1056
+ * @see {@link DeleteAgentRuntimeCommand}
1057
+ */
1058
+ deleteAgentRuntime(
1059
+ args: DeleteAgentRuntimeCommandInput,
1060
+ options?: HttpHandlerOptions,
1061
+ ): Effect.Effect<
1062
+ DeleteAgentRuntimeCommandOutput,
1063
+ | Cause.TimeoutException
1064
+ | SdkError
1065
+ | AccessDeniedError
1066
+ | ConflictError
1067
+ | InternalServerError
1068
+ | ResourceNotFoundError
1069
+ | ThrottlingError
1070
+ >;
1071
+
1072
+ /**
1073
+ * @see {@link DeleteAgentRuntimeEndpointCommand}
1074
+ */
1075
+ deleteAgentRuntimeEndpoint(
1076
+ args: DeleteAgentRuntimeEndpointCommandInput,
1077
+ options?: HttpHandlerOptions,
1078
+ ): Effect.Effect<
1079
+ DeleteAgentRuntimeEndpointCommandOutput,
1080
+ | Cause.TimeoutException
1081
+ | SdkError
1082
+ | AccessDeniedError
1083
+ | ConflictError
1084
+ | InternalServerError
1085
+ | ResourceNotFoundError
1086
+ | ThrottlingError
1087
+ >;
1088
+
1089
+ /**
1090
+ * @see {@link DeleteApiKeyCredentialProviderCommand}
1091
+ */
1092
+ deleteApiKeyCredentialProvider(
1093
+ args: DeleteApiKeyCredentialProviderCommandInput,
1094
+ options?: HttpHandlerOptions,
1095
+ ): Effect.Effect<
1096
+ DeleteApiKeyCredentialProviderCommandOutput,
1097
+ | Cause.TimeoutException
1098
+ | SdkError
1099
+ | AccessDeniedError
1100
+ | InternalServerError
1101
+ | ResourceNotFoundError
1102
+ | ThrottlingError
1103
+ | UnauthorizedError
1104
+ | ValidationError
1105
+ >;
1106
+
1107
+ /**
1108
+ * @see {@link DeleteBrowserCommand}
1109
+ */
1110
+ deleteBrowser(
1111
+ args: DeleteBrowserCommandInput,
1112
+ options?: HttpHandlerOptions,
1113
+ ): Effect.Effect<
1114
+ DeleteBrowserCommandOutput,
1115
+ | Cause.TimeoutException
1116
+ | SdkError
1117
+ | AccessDeniedError
1118
+ | ConflictError
1119
+ | InternalServerError
1120
+ | ResourceNotFoundError
1121
+ | ServiceQuotaExceededError
1122
+ | ThrottlingError
1123
+ | ValidationError
1124
+ >;
1125
+
1126
+ /**
1127
+ * @see {@link DeleteBrowserProfileCommand}
1128
+ */
1129
+ deleteBrowserProfile(
1130
+ args: DeleteBrowserProfileCommandInput,
1131
+ options?: HttpHandlerOptions,
1132
+ ): Effect.Effect<
1133
+ DeleteBrowserProfileCommandOutput,
1134
+ | Cause.TimeoutException
1135
+ | SdkError
1136
+ | AccessDeniedError
1137
+ | ConflictError
1138
+ | InternalServerError
1139
+ | ResourceNotFoundError
1140
+ | ThrottlingError
1141
+ | ValidationError
1142
+ >;
1143
+
1144
+ /**
1145
+ * @see {@link DeleteCodeInterpreterCommand}
1146
+ */
1147
+ deleteCodeInterpreter(
1148
+ args: DeleteCodeInterpreterCommandInput,
1149
+ options?: HttpHandlerOptions,
1150
+ ): Effect.Effect<
1151
+ DeleteCodeInterpreterCommandOutput,
1152
+ | Cause.TimeoutException
1153
+ | SdkError
1154
+ | AccessDeniedError
1155
+ | ConflictError
1156
+ | InternalServerError
1157
+ | ResourceNotFoundError
1158
+ | ServiceQuotaExceededError
1159
+ | ThrottlingError
1160
+ | ValidationError
1161
+ >;
1162
+
1163
+ /**
1164
+ * @see {@link DeleteConfigurationBundleCommand}
1165
+ */
1166
+ deleteConfigurationBundle(
1167
+ args: DeleteConfigurationBundleCommandInput,
1168
+ options?: HttpHandlerOptions,
1169
+ ): Effect.Effect<
1170
+ DeleteConfigurationBundleCommandOutput,
1171
+ | Cause.TimeoutException
1172
+ | SdkError
1173
+ | AccessDeniedError
1174
+ | ConflictError
1175
+ | InternalServerError
1176
+ | ResourceNotFoundError
1177
+ | ThrottlingError
1178
+ | ValidationError
1179
+ >;
1180
+
1181
+ /**
1182
+ * @see {@link DeleteEvaluatorCommand}
1183
+ */
1184
+ deleteEvaluator(
1185
+ args: DeleteEvaluatorCommandInput,
1186
+ options?: HttpHandlerOptions,
1187
+ ): Effect.Effect<
1188
+ DeleteEvaluatorCommandOutput,
1189
+ | Cause.TimeoutException
1190
+ | SdkError
1191
+ | AccessDeniedError
1192
+ | ConflictError
1193
+ | InternalServerError
1194
+ | ResourceNotFoundError
1195
+ | ThrottlingError
1196
+ | ValidationError
1197
+ >;
1198
+
1199
+ /**
1200
+ * @see {@link DeleteGatewayCommand}
1201
+ */
1202
+ deleteGateway(
1203
+ args: DeleteGatewayCommandInput,
1204
+ options?: HttpHandlerOptions,
1205
+ ): Effect.Effect<
1206
+ DeleteGatewayCommandOutput,
1207
+ | Cause.TimeoutException
1208
+ | SdkError
1209
+ | AccessDeniedError
1210
+ | ConflictError
1211
+ | InternalServerError
1212
+ | ResourceNotFoundError
1213
+ | ThrottlingError
1214
+ | ValidationError
1215
+ >;
1216
+
1217
+ /**
1218
+ * @see {@link DeleteGatewayRuleCommand}
1219
+ */
1220
+ deleteGatewayRule(
1221
+ args: DeleteGatewayRuleCommandInput,
1222
+ options?: HttpHandlerOptions,
1223
+ ): Effect.Effect<
1224
+ DeleteGatewayRuleCommandOutput,
1225
+ | Cause.TimeoutException
1226
+ | SdkError
1227
+ | AccessDeniedError
1228
+ | ConflictError
1229
+ | InternalServerError
1230
+ | ResourceNotFoundError
1231
+ | ThrottlingError
1232
+ | ValidationError
1233
+ >;
1234
+
1235
+ /**
1236
+ * @see {@link DeleteGatewayTargetCommand}
1237
+ */
1238
+ deleteGatewayTarget(
1239
+ args: DeleteGatewayTargetCommandInput,
1240
+ options?: HttpHandlerOptions,
1241
+ ): Effect.Effect<
1242
+ DeleteGatewayTargetCommandOutput,
1243
+ | Cause.TimeoutException
1244
+ | SdkError
1245
+ | AccessDeniedError
1246
+ | ConflictError
1247
+ | InternalServerError
1248
+ | ResourceNotFoundError
1249
+ | ThrottlingError
1250
+ | ValidationError
1251
+ >;
1252
+
1253
+ /**
1254
+ * @see {@link DeleteHarnessCommand}
1255
+ */
1256
+ deleteHarness(
1257
+ args: DeleteHarnessCommandInput,
1258
+ options?: HttpHandlerOptions,
1259
+ ): Effect.Effect<
1260
+ DeleteHarnessCommandOutput,
1261
+ | Cause.TimeoutException
1262
+ | SdkError
1263
+ | AccessDeniedError
1264
+ | ConflictError
1265
+ | InternalServerError
1266
+ | ResourceNotFoundError
1267
+ | ThrottlingError
1268
+ | ValidationError
1269
+ >;
1270
+
1271
+ /**
1272
+ * @see {@link DeleteMemoryCommand}
1273
+ */
1274
+ deleteMemory(
1275
+ args: DeleteMemoryCommandInput,
1276
+ options?: HttpHandlerOptions,
1277
+ ): Effect.Effect<
1278
+ DeleteMemoryCommandOutput,
1279
+ | Cause.TimeoutException
1280
+ | SdkError
1281
+ | AccessDeniedError
1282
+ | ConflictError
1283
+ | ResourceNotFoundError
1284
+ | ServiceError
1285
+ | ThrottledError
1286
+ | ValidationError
1287
+ >;
1288
+
1289
+ /**
1290
+ * @see {@link DeleteOauth2CredentialProviderCommand}
1291
+ */
1292
+ deleteOauth2CredentialProvider(
1293
+ args: DeleteOauth2CredentialProviderCommandInput,
1294
+ options?: HttpHandlerOptions,
1295
+ ): Effect.Effect<
1296
+ DeleteOauth2CredentialProviderCommandOutput,
1297
+ | Cause.TimeoutException
1298
+ | SdkError
1299
+ | AccessDeniedError
1300
+ | ConflictError
1301
+ | InternalServerError
1302
+ | ResourceNotFoundError
1303
+ | ThrottlingError
1304
+ | UnauthorizedError
1305
+ | ValidationError
1306
+ >;
1307
+
1308
+ /**
1309
+ * @see {@link DeleteOnlineEvaluationConfigCommand}
1310
+ */
1311
+ deleteOnlineEvaluationConfig(
1312
+ args: DeleteOnlineEvaluationConfigCommandInput,
1313
+ options?: HttpHandlerOptions,
1314
+ ): Effect.Effect<
1315
+ DeleteOnlineEvaluationConfigCommandOutput,
1316
+ | Cause.TimeoutException
1317
+ | SdkError
1318
+ | AccessDeniedError
1319
+ | ConflictError
1320
+ | InternalServerError
1321
+ | ResourceNotFoundError
1322
+ | ThrottlingError
1323
+ | ValidationError
1324
+ >;
1325
+
1326
+ /**
1327
+ * @see {@link DeletePaymentConnectorCommand}
1328
+ */
1329
+ deletePaymentConnector(
1330
+ args: DeletePaymentConnectorCommandInput,
1331
+ options?: HttpHandlerOptions,
1332
+ ): Effect.Effect<
1333
+ DeletePaymentConnectorCommandOutput,
1334
+ | Cause.TimeoutException
1335
+ | SdkError
1336
+ | AccessDeniedError
1337
+ | ConflictError
1338
+ | InternalServerError
1339
+ | ResourceNotFoundError
1340
+ | ThrottlingError
1341
+ >;
1342
+
1343
+ /**
1344
+ * @see {@link DeletePaymentCredentialProviderCommand}
1345
+ */
1346
+ deletePaymentCredentialProvider(
1347
+ args: DeletePaymentCredentialProviderCommandInput,
1348
+ options?: HttpHandlerOptions,
1349
+ ): Effect.Effect<
1350
+ DeletePaymentCredentialProviderCommandOutput,
1351
+ | Cause.TimeoutException
1352
+ | SdkError
1353
+ | AccessDeniedError
1354
+ | InternalServerError
1355
+ | ResourceNotFoundError
1356
+ | ThrottlingError
1357
+ | UnauthorizedError
1358
+ | ValidationError
1359
+ >;
1360
+
1361
+ /**
1362
+ * @see {@link DeletePaymentManagerCommand}
1363
+ */
1364
+ deletePaymentManager(
1365
+ args: DeletePaymentManagerCommandInput,
1366
+ options?: HttpHandlerOptions,
1367
+ ): Effect.Effect<
1368
+ DeletePaymentManagerCommandOutput,
1369
+ | Cause.TimeoutException
1370
+ | SdkError
1371
+ | AccessDeniedError
1372
+ | ConflictError
1373
+ | InternalServerError
1374
+ | ResourceNotFoundError
1375
+ | ThrottlingError
1376
+ >;
1377
+
1378
+ /**
1379
+ * @see {@link DeletePolicyCommand}
1380
+ */
1381
+ deletePolicy(
1382
+ args: DeletePolicyCommandInput,
1383
+ options?: HttpHandlerOptions,
1384
+ ): Effect.Effect<
1385
+ DeletePolicyCommandOutput,
1386
+ | Cause.TimeoutException
1387
+ | SdkError
1388
+ | AccessDeniedError
1389
+ | ConflictError
1390
+ | InternalServerError
1391
+ | ResourceNotFoundError
1392
+ | ThrottlingError
1393
+ | ValidationError
1394
+ >;
1395
+
1396
+ /**
1397
+ * @see {@link DeletePolicyEngineCommand}
1398
+ */
1399
+ deletePolicyEngine(
1400
+ args: DeletePolicyEngineCommandInput,
1401
+ options?: HttpHandlerOptions,
1402
+ ): Effect.Effect<
1403
+ DeletePolicyEngineCommandOutput,
1404
+ | Cause.TimeoutException
1405
+ | SdkError
1406
+ | AccessDeniedError
1407
+ | ConflictError
1408
+ | InternalServerError
1409
+ | ResourceNotFoundError
1410
+ | ThrottlingError
1411
+ | ValidationError
1412
+ >;
1413
+
1414
+ /**
1415
+ * @see {@link DeleteRegistryCommand}
1416
+ */
1417
+ deleteRegistry(
1418
+ args: DeleteRegistryCommandInput,
1419
+ options?: HttpHandlerOptions,
1420
+ ): Effect.Effect<
1421
+ DeleteRegistryCommandOutput,
1422
+ | Cause.TimeoutException
1423
+ | SdkError
1424
+ | AccessDeniedError
1425
+ | ConflictError
1426
+ | InternalServerError
1427
+ | ResourceNotFoundError
1428
+ | ThrottlingError
1429
+ | ValidationError
1430
+ >;
1431
+
1432
+ /**
1433
+ * @see {@link DeleteRegistryRecordCommand}
1434
+ */
1435
+ deleteRegistryRecord(
1436
+ args: DeleteRegistryRecordCommandInput,
1437
+ options?: HttpHandlerOptions,
1438
+ ): Effect.Effect<
1439
+ DeleteRegistryRecordCommandOutput,
1440
+ | Cause.TimeoutException
1441
+ | SdkError
1442
+ | AccessDeniedError
1443
+ | ConflictError
1444
+ | InternalServerError
1445
+ | ResourceNotFoundError
1446
+ | ThrottlingError
1447
+ | ValidationError
1448
+ >;
1449
+
1450
+ /**
1451
+ * @see {@link DeleteResourcePolicyCommand}
1452
+ */
1453
+ deleteResourcePolicy(
1454
+ args: DeleteResourcePolicyCommandInput,
1455
+ options?: HttpHandlerOptions,
1456
+ ): Effect.Effect<
1457
+ DeleteResourcePolicyCommandOutput,
1458
+ | Cause.TimeoutException
1459
+ | SdkError
1460
+ | AccessDeniedError
1461
+ | InternalServerError
1462
+ | ResourceNotFoundError
1463
+ | ThrottlingError
1464
+ | ValidationError
1465
+ >;
1466
+
1467
+ /**
1468
+ * @see {@link DeleteWorkloadIdentityCommand}
1469
+ */
1470
+ deleteWorkloadIdentity(
1471
+ args: DeleteWorkloadIdentityCommandInput,
1472
+ options?: HttpHandlerOptions,
1473
+ ): Effect.Effect<
1474
+ DeleteWorkloadIdentityCommandOutput,
1475
+ | Cause.TimeoutException
1476
+ | SdkError
1477
+ | AccessDeniedError
1478
+ | InternalServerError
1479
+ | ResourceNotFoundError
1480
+ | ThrottlingError
1481
+ | UnauthorizedError
1482
+ | ValidationError
1483
+ >;
1484
+
1485
+ /**
1486
+ * @see {@link GetAgentRuntimeCommand}
1487
+ */
1488
+ getAgentRuntime(
1489
+ args: GetAgentRuntimeCommandInput,
1490
+ options?: HttpHandlerOptions,
1491
+ ): Effect.Effect<
1492
+ GetAgentRuntimeCommandOutput,
1493
+ | Cause.TimeoutException
1494
+ | SdkError
1495
+ | AccessDeniedError
1496
+ | InternalServerError
1497
+ | ResourceNotFoundError
1498
+ | ThrottlingError
1499
+ | ValidationError
1500
+ >;
1501
+
1502
+ /**
1503
+ * @see {@link GetAgentRuntimeEndpointCommand}
1504
+ */
1505
+ getAgentRuntimeEndpoint(
1506
+ args: GetAgentRuntimeEndpointCommandInput,
1507
+ options?: HttpHandlerOptions,
1508
+ ): Effect.Effect<
1509
+ GetAgentRuntimeEndpointCommandOutput,
1510
+ | Cause.TimeoutException
1511
+ | SdkError
1512
+ | AccessDeniedError
1513
+ | InternalServerError
1514
+ | ResourceNotFoundError
1515
+ | ThrottlingError
1516
+ | ValidationError
1517
+ >;
1518
+
1519
+ /**
1520
+ * @see {@link GetApiKeyCredentialProviderCommand}
1521
+ */
1522
+ getApiKeyCredentialProvider(
1523
+ args: GetApiKeyCredentialProviderCommandInput,
1524
+ options?: HttpHandlerOptions,
1525
+ ): Effect.Effect<
1526
+ GetApiKeyCredentialProviderCommandOutput,
1527
+ | Cause.TimeoutException
1528
+ | SdkError
1529
+ | AccessDeniedError
1530
+ | DecryptionError
1531
+ | InternalServerError
1532
+ | ResourceNotFoundError
1533
+ | ThrottlingError
1534
+ | UnauthorizedError
1535
+ | ValidationError
1536
+ >;
1537
+
1538
+ /**
1539
+ * @see {@link GetBrowserCommand}
1540
+ */
1541
+ getBrowser(
1542
+ args: GetBrowserCommandInput,
1543
+ options?: HttpHandlerOptions,
1544
+ ): Effect.Effect<
1545
+ GetBrowserCommandOutput,
1546
+ | Cause.TimeoutException
1547
+ | SdkError
1548
+ | AccessDeniedError
1549
+ | InternalServerError
1550
+ | ResourceNotFoundError
1551
+ | ServiceQuotaExceededError
1552
+ | ThrottlingError
1553
+ >;
1554
+
1555
+ /**
1556
+ * @see {@link GetBrowserProfileCommand}
1557
+ */
1558
+ getBrowserProfile(
1559
+ args: GetBrowserProfileCommandInput,
1560
+ options?: HttpHandlerOptions,
1561
+ ): Effect.Effect<
1562
+ GetBrowserProfileCommandOutput,
1563
+ | Cause.TimeoutException
1564
+ | SdkError
1565
+ | AccessDeniedError
1566
+ | InternalServerError
1567
+ | ResourceNotFoundError
1568
+ | ThrottlingError
1569
+ | ValidationError
1570
+ >;
1571
+
1572
+ /**
1573
+ * @see {@link GetCodeInterpreterCommand}
1574
+ */
1575
+ getCodeInterpreter(
1576
+ args: GetCodeInterpreterCommandInput,
1577
+ options?: HttpHandlerOptions,
1578
+ ): Effect.Effect<
1579
+ GetCodeInterpreterCommandOutput,
1580
+ | Cause.TimeoutException
1581
+ | SdkError
1582
+ | AccessDeniedError
1583
+ | InternalServerError
1584
+ | ResourceNotFoundError
1585
+ | ServiceQuotaExceededError
1586
+ | ThrottlingError
1587
+ >;
1588
+
1589
+ /**
1590
+ * @see {@link GetConfigurationBundleCommand}
1591
+ */
1592
+ getConfigurationBundle(
1593
+ args: GetConfigurationBundleCommandInput,
1594
+ options?: HttpHandlerOptions,
1595
+ ): Effect.Effect<
1596
+ GetConfigurationBundleCommandOutput,
1597
+ | Cause.TimeoutException
1598
+ | SdkError
1599
+ | AccessDeniedError
1600
+ | InternalServerError
1601
+ | ResourceNotFoundError
1602
+ | ThrottlingError
1603
+ | ValidationError
1604
+ >;
1605
+
1606
+ /**
1607
+ * @see {@link GetConfigurationBundleVersionCommand}
1608
+ */
1609
+ getConfigurationBundleVersion(
1610
+ args: GetConfigurationBundleVersionCommandInput,
1611
+ options?: HttpHandlerOptions,
1612
+ ): Effect.Effect<
1613
+ GetConfigurationBundleVersionCommandOutput,
1614
+ | Cause.TimeoutException
1615
+ | SdkError
1616
+ | AccessDeniedError
1617
+ | InternalServerError
1618
+ | ResourceNotFoundError
1619
+ | ThrottlingError
1620
+ | ValidationError
1621
+ >;
1622
+
1623
+ /**
1624
+ * @see {@link GetEvaluatorCommand}
1625
+ */
1626
+ getEvaluator(
1627
+ args: GetEvaluatorCommandInput,
1628
+ options?: HttpHandlerOptions,
1629
+ ): Effect.Effect<
1630
+ GetEvaluatorCommandOutput,
1631
+ | Cause.TimeoutException
1632
+ | SdkError
1633
+ | AccessDeniedError
1634
+ | InternalServerError
1635
+ | ResourceNotFoundError
1636
+ | ThrottlingError
1637
+ | ValidationError
1638
+ >;
1639
+
1640
+ /**
1641
+ * @see {@link GetGatewayCommand}
1642
+ */
1643
+ getGateway(
1644
+ args: GetGatewayCommandInput,
1645
+ options?: HttpHandlerOptions,
1646
+ ): Effect.Effect<
1647
+ GetGatewayCommandOutput,
1648
+ | Cause.TimeoutException
1649
+ | SdkError
1650
+ | AccessDeniedError
1651
+ | InternalServerError
1652
+ | ResourceNotFoundError
1653
+ | ThrottlingError
1654
+ | ValidationError
1655
+ >;
1656
+
1657
+ /**
1658
+ * @see {@link GetGatewayRuleCommand}
1659
+ */
1660
+ getGatewayRule(
1661
+ args: GetGatewayRuleCommandInput,
1662
+ options?: HttpHandlerOptions,
1663
+ ): Effect.Effect<
1664
+ GetGatewayRuleCommandOutput,
1665
+ | Cause.TimeoutException
1666
+ | SdkError
1667
+ | AccessDeniedError
1668
+ | InternalServerError
1669
+ | ResourceNotFoundError
1670
+ | ThrottlingError
1671
+ | ValidationError
1672
+ >;
1673
+
1674
+ /**
1675
+ * @see {@link GetGatewayTargetCommand}
1676
+ */
1677
+ getGatewayTarget(
1678
+ args: GetGatewayTargetCommandInput,
1679
+ options?: HttpHandlerOptions,
1680
+ ): Effect.Effect<
1681
+ GetGatewayTargetCommandOutput,
1682
+ | Cause.TimeoutException
1683
+ | SdkError
1684
+ | AccessDeniedError
1685
+ | InternalServerError
1686
+ | ResourceNotFoundError
1687
+ | ThrottlingError
1688
+ | ValidationError
1689
+ >;
1690
+
1691
+ /**
1692
+ * @see {@link GetHarnessCommand}
1693
+ */
1694
+ getHarness(
1695
+ args: GetHarnessCommandInput,
1696
+ options?: HttpHandlerOptions,
1697
+ ): Effect.Effect<
1698
+ GetHarnessCommandOutput,
1699
+ | Cause.TimeoutException
1700
+ | SdkError
1701
+ | AccessDeniedError
1702
+ | InternalServerError
1703
+ | ResourceNotFoundError
1704
+ | ThrottlingError
1705
+ | ValidationError
1706
+ >;
1707
+
1708
+ /**
1709
+ * @see {@link GetMemoryCommand}
1710
+ */
1711
+ getMemory(
1712
+ args: GetMemoryCommandInput,
1713
+ options?: HttpHandlerOptions,
1714
+ ): Effect.Effect<
1715
+ GetMemoryCommandOutput,
1716
+ | Cause.TimeoutException
1717
+ | SdkError
1718
+ | AccessDeniedError
1719
+ | ResourceNotFoundError
1720
+ | ServiceError
1721
+ | ThrottledError
1722
+ | ValidationError
1723
+ >;
1724
+
1725
+ /**
1726
+ * @see {@link GetOauth2CredentialProviderCommand}
1727
+ */
1728
+ getOauth2CredentialProvider(
1729
+ args: GetOauth2CredentialProviderCommandInput,
1730
+ options?: HttpHandlerOptions,
1731
+ ): Effect.Effect<
1732
+ GetOauth2CredentialProviderCommandOutput,
1733
+ | Cause.TimeoutException
1734
+ | SdkError
1735
+ | AccessDeniedError
1736
+ | DecryptionError
1737
+ | InternalServerError
1738
+ | ResourceNotFoundError
1739
+ | ThrottlingError
1740
+ | UnauthorizedError
1741
+ | ValidationError
1742
+ >;
1743
+
1744
+ /**
1745
+ * @see {@link GetOnlineEvaluationConfigCommand}
1746
+ */
1747
+ getOnlineEvaluationConfig(
1748
+ args: GetOnlineEvaluationConfigCommandInput,
1749
+ options?: HttpHandlerOptions,
1750
+ ): Effect.Effect<
1751
+ GetOnlineEvaluationConfigCommandOutput,
1752
+ | Cause.TimeoutException
1753
+ | SdkError
1754
+ | AccessDeniedError
1755
+ | InternalServerError
1756
+ | ResourceNotFoundError
1757
+ | ThrottlingError
1758
+ | ValidationError
1759
+ >;
1760
+
1761
+ /**
1762
+ * @see {@link GetPaymentConnectorCommand}
1763
+ */
1764
+ getPaymentConnector(
1765
+ args: GetPaymentConnectorCommandInput,
1766
+ options?: HttpHandlerOptions,
1767
+ ): Effect.Effect<
1768
+ GetPaymentConnectorCommandOutput,
1769
+ | Cause.TimeoutException
1770
+ | SdkError
1771
+ | AccessDeniedError
1772
+ | InternalServerError
1773
+ | ResourceNotFoundError
1774
+ | ThrottlingError
1775
+ | ValidationError
1776
+ >;
1777
+
1778
+ /**
1779
+ * @see {@link GetPaymentCredentialProviderCommand}
1780
+ */
1781
+ getPaymentCredentialProvider(
1782
+ args: GetPaymentCredentialProviderCommandInput,
1783
+ options?: HttpHandlerOptions,
1784
+ ): Effect.Effect<
1785
+ GetPaymentCredentialProviderCommandOutput,
1786
+ | Cause.TimeoutException
1787
+ | SdkError
1788
+ | AccessDeniedError
1789
+ | DecryptionError
1790
+ | InternalServerError
1791
+ | ResourceNotFoundError
1792
+ | ThrottlingError
1793
+ | UnauthorizedError
1794
+ | ValidationError
1795
+ >;
1796
+
1797
+ /**
1798
+ * @see {@link GetPaymentManagerCommand}
1799
+ */
1800
+ getPaymentManager(
1801
+ args: GetPaymentManagerCommandInput,
1802
+ options?: HttpHandlerOptions,
1803
+ ): Effect.Effect<
1804
+ GetPaymentManagerCommandOutput,
1805
+ | Cause.TimeoutException
1806
+ | SdkError
1807
+ | AccessDeniedError
1808
+ | InternalServerError
1809
+ | ResourceNotFoundError
1810
+ | ThrottlingError
1811
+ | ValidationError
1812
+ >;
1813
+
1814
+ /**
1815
+ * @see {@link GetPolicyCommand}
1816
+ */
1817
+ getPolicy(
1818
+ args: GetPolicyCommandInput,
1819
+ options?: HttpHandlerOptions,
1820
+ ): Effect.Effect<
1821
+ GetPolicyCommandOutput,
1822
+ | Cause.TimeoutException
1823
+ | SdkError
1824
+ | AccessDeniedError
1825
+ | InternalServerError
1826
+ | ResourceNotFoundError
1827
+ | ThrottlingError
1828
+ | ValidationError
1829
+ >;
1830
+
1831
+ /**
1832
+ * @see {@link GetPolicyEngineCommand}
1833
+ */
1834
+ getPolicyEngine(
1835
+ args: GetPolicyEngineCommandInput,
1836
+ options?: HttpHandlerOptions,
1837
+ ): Effect.Effect<
1838
+ GetPolicyEngineCommandOutput,
1839
+ | Cause.TimeoutException
1840
+ | SdkError
1841
+ | AccessDeniedError
1842
+ | InternalServerError
1843
+ | ResourceNotFoundError
1844
+ | ThrottlingError
1845
+ | ValidationError
1846
+ >;
1847
+
1848
+ /**
1849
+ * @see {@link GetPolicyGenerationCommand}
1850
+ */
1851
+ getPolicyGeneration(
1852
+ args: GetPolicyGenerationCommandInput,
1853
+ options?: HttpHandlerOptions,
1854
+ ): Effect.Effect<
1855
+ GetPolicyGenerationCommandOutput,
1856
+ | Cause.TimeoutException
1857
+ | SdkError
1858
+ | AccessDeniedError
1859
+ | InternalServerError
1860
+ | ResourceNotFoundError
1861
+ | ThrottlingError
1862
+ | ValidationError
1863
+ >;
1864
+
1865
+ /**
1866
+ * @see {@link GetRegistryCommand}
1867
+ */
1868
+ getRegistry(
1869
+ args: GetRegistryCommandInput,
1870
+ options?: HttpHandlerOptions,
1871
+ ): Effect.Effect<
1872
+ GetRegistryCommandOutput,
1873
+ | Cause.TimeoutException
1874
+ | SdkError
1875
+ | AccessDeniedError
1876
+ | InternalServerError
1877
+ | ResourceNotFoundError
1878
+ | ThrottlingError
1879
+ | ValidationError
1880
+ >;
1881
+
1882
+ /**
1883
+ * @see {@link GetRegistryRecordCommand}
1884
+ */
1885
+ getRegistryRecord(
1886
+ args: GetRegistryRecordCommandInput,
1887
+ options?: HttpHandlerOptions,
1888
+ ): Effect.Effect<
1889
+ GetRegistryRecordCommandOutput,
1890
+ | Cause.TimeoutException
1891
+ | SdkError
1892
+ | AccessDeniedError
1893
+ | ConflictError
1894
+ | InternalServerError
1895
+ | ResourceNotFoundError
1896
+ | ThrottlingError
1897
+ | ValidationError
1898
+ >;
1899
+
1900
+ /**
1901
+ * @see {@link GetResourcePolicyCommand}
1902
+ */
1903
+ getResourcePolicy(
1904
+ args: GetResourcePolicyCommandInput,
1905
+ options?: HttpHandlerOptions,
1906
+ ): Effect.Effect<
1907
+ GetResourcePolicyCommandOutput,
1908
+ | Cause.TimeoutException
1909
+ | SdkError
1910
+ | AccessDeniedError
1911
+ | InternalServerError
1912
+ | ResourceNotFoundError
1913
+ | ThrottlingError
1914
+ | ValidationError
1915
+ >;
1916
+
1917
+ /**
1918
+ * @see {@link GetTokenVaultCommand}
1919
+ */
1920
+ getTokenVault(
1921
+ args: GetTokenVaultCommandInput,
1922
+ options?: HttpHandlerOptions,
1923
+ ): Effect.Effect<
1924
+ GetTokenVaultCommandOutput,
1925
+ | Cause.TimeoutException
1926
+ | SdkError
1927
+ | AccessDeniedError
1928
+ | InternalServerError
1929
+ | ResourceNotFoundError
1930
+ | ThrottlingError
1931
+ | UnauthorizedError
1932
+ | ValidationError
1933
+ >;
1934
+
1935
+ /**
1936
+ * @see {@link GetWorkloadIdentityCommand}
1937
+ */
1938
+ getWorkloadIdentity(
1939
+ args: GetWorkloadIdentityCommandInput,
1940
+ options?: HttpHandlerOptions,
1941
+ ): Effect.Effect<
1942
+ GetWorkloadIdentityCommandOutput,
1943
+ | Cause.TimeoutException
1944
+ | SdkError
1945
+ | AccessDeniedError
1946
+ | InternalServerError
1947
+ | ResourceNotFoundError
1948
+ | ThrottlingError
1949
+ | UnauthorizedError
1950
+ | ValidationError
1951
+ >;
1952
+
1953
+ /**
1954
+ * @see {@link ListAgentRuntimeEndpointsCommand}
1955
+ */
1956
+ listAgentRuntimeEndpoints(
1957
+ args: ListAgentRuntimeEndpointsCommandInput,
1958
+ options?: HttpHandlerOptions,
1959
+ ): Effect.Effect<
1960
+ ListAgentRuntimeEndpointsCommandOutput,
1961
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1962
+ >;
1963
+
1964
+ listAgentRuntimeEndpointsStream(
1965
+ args: ListAgentRuntimeEndpointsCommandInput,
1966
+ options?: HttpHandlerOptions,
1967
+ ): Stream.Stream<
1968
+ ListAgentRuntimeEndpointsCommandOutput,
1969
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1970
+ >;
1971
+
1972
+ /**
1973
+ * @see {@link ListAgentRuntimeVersionsCommand}
1974
+ */
1975
+ listAgentRuntimeVersions(
1976
+ args: ListAgentRuntimeVersionsCommandInput,
1977
+ options?: HttpHandlerOptions,
1978
+ ): Effect.Effect<
1979
+ ListAgentRuntimeVersionsCommandOutput,
1980
+ | Cause.TimeoutException
1981
+ | SdkError
1982
+ | AccessDeniedError
1983
+ | InternalServerError
1984
+ | ResourceNotFoundError
1985
+ | ThrottlingError
1986
+ | ValidationError
1987
+ >;
1988
+
1989
+ listAgentRuntimeVersionsStream(
1990
+ args: ListAgentRuntimeVersionsCommandInput,
1991
+ options?: HttpHandlerOptions,
1992
+ ): Stream.Stream<
1993
+ ListAgentRuntimeVersionsCommandOutput,
1994
+ | Cause.TimeoutException
1995
+ | SdkError
1996
+ | AccessDeniedError
1997
+ | InternalServerError
1998
+ | ResourceNotFoundError
1999
+ | ThrottlingError
2000
+ | ValidationError
2001
+ >;
2002
+
2003
+ /**
2004
+ * @see {@link ListAgentRuntimesCommand}
2005
+ */
2006
+ listAgentRuntimes(
2007
+ args: ListAgentRuntimesCommandInput,
2008
+ options?: HttpHandlerOptions,
2009
+ ): Effect.Effect<
2010
+ ListAgentRuntimesCommandOutput,
2011
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2012
+ >;
2013
+
2014
+ listAgentRuntimesStream(
2015
+ args: ListAgentRuntimesCommandInput,
2016
+ options?: HttpHandlerOptions,
2017
+ ): Stream.Stream<
2018
+ ListAgentRuntimesCommandOutput,
2019
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2020
+ >;
2021
+
2022
+ /**
2023
+ * @see {@link ListApiKeyCredentialProvidersCommand}
2024
+ */
2025
+ listApiKeyCredentialProviders(
2026
+ args: ListApiKeyCredentialProvidersCommandInput,
2027
+ options?: HttpHandlerOptions,
2028
+ ): Effect.Effect<
2029
+ ListApiKeyCredentialProvidersCommandOutput,
2030
+ | Cause.TimeoutException
2031
+ | SdkError
2032
+ | AccessDeniedError
2033
+ | InternalServerError
2034
+ | ResourceNotFoundError
2035
+ | ThrottlingError
2036
+ | UnauthorizedError
2037
+ | ValidationError
2038
+ >;
2039
+
2040
+ listApiKeyCredentialProvidersStream(
2041
+ args: ListApiKeyCredentialProvidersCommandInput,
2042
+ options?: HttpHandlerOptions,
2043
+ ): Stream.Stream<
2044
+ ListApiKeyCredentialProvidersCommandOutput,
2045
+ | Cause.TimeoutException
2046
+ | SdkError
2047
+ | AccessDeniedError
2048
+ | InternalServerError
2049
+ | ResourceNotFoundError
2050
+ | ThrottlingError
2051
+ | UnauthorizedError
2052
+ | ValidationError
2053
+ >;
2054
+
2055
+ /**
2056
+ * @see {@link ListBrowserProfilesCommand}
2057
+ */
2058
+ listBrowserProfiles(
2059
+ args: ListBrowserProfilesCommandInput,
2060
+ options?: HttpHandlerOptions,
2061
+ ): Effect.Effect<
2062
+ ListBrowserProfilesCommandOutput,
2063
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2064
+ >;
2065
+
2066
+ listBrowserProfilesStream(
2067
+ args: ListBrowserProfilesCommandInput,
2068
+ options?: HttpHandlerOptions,
2069
+ ): Stream.Stream<
2070
+ ListBrowserProfilesCommandOutput,
2071
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2072
+ >;
2073
+
2074
+ /**
2075
+ * @see {@link ListBrowsersCommand}
2076
+ */
2077
+ listBrowsers(
2078
+ args: ListBrowsersCommandInput,
2079
+ options?: HttpHandlerOptions,
2080
+ ): Effect.Effect<
2081
+ ListBrowsersCommandOutput,
2082
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2083
+ >;
2084
+
2085
+ listBrowsersStream(
2086
+ args: ListBrowsersCommandInput,
2087
+ options?: HttpHandlerOptions,
2088
+ ): Stream.Stream<
2089
+ ListBrowsersCommandOutput,
2090
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2091
+ >;
2092
+
2093
+ /**
2094
+ * @see {@link ListCodeInterpretersCommand}
2095
+ */
2096
+ listCodeInterpreters(
2097
+ args: ListCodeInterpretersCommandInput,
2098
+ options?: HttpHandlerOptions,
2099
+ ): Effect.Effect<
2100
+ ListCodeInterpretersCommandOutput,
2101
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2102
+ >;
2103
+
2104
+ listCodeInterpretersStream(
2105
+ args: ListCodeInterpretersCommandInput,
2106
+ options?: HttpHandlerOptions,
2107
+ ): Stream.Stream<
2108
+ ListCodeInterpretersCommandOutput,
2109
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2110
+ >;
2111
+
2112
+ /**
2113
+ * @see {@link ListConfigurationBundleVersionsCommand}
2114
+ */
2115
+ listConfigurationBundleVersions(
2116
+ args: ListConfigurationBundleVersionsCommandInput,
2117
+ options?: HttpHandlerOptions,
2118
+ ): Effect.Effect<
2119
+ ListConfigurationBundleVersionsCommandOutput,
2120
+ | Cause.TimeoutException
2121
+ | SdkError
2122
+ | AccessDeniedError
2123
+ | InternalServerError
2124
+ | ResourceNotFoundError
2125
+ | ThrottlingError
2126
+ | ValidationError
2127
+ >;
2128
+
2129
+ listConfigurationBundleVersionsStream(
2130
+ args: ListConfigurationBundleVersionsCommandInput,
2131
+ options?: HttpHandlerOptions,
2132
+ ): Stream.Stream<
2133
+ ListConfigurationBundleVersionsCommandOutput,
2134
+ | Cause.TimeoutException
2135
+ | SdkError
2136
+ | AccessDeniedError
2137
+ | InternalServerError
2138
+ | ResourceNotFoundError
2139
+ | ThrottlingError
2140
+ | ValidationError
2141
+ >;
2142
+
2143
+ /**
2144
+ * @see {@link ListConfigurationBundlesCommand}
2145
+ */
2146
+ listConfigurationBundles(
2147
+ args: ListConfigurationBundlesCommandInput,
2148
+ options?: HttpHandlerOptions,
2149
+ ): Effect.Effect<
2150
+ ListConfigurationBundlesCommandOutput,
2151
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2152
+ >;
2153
+
2154
+ listConfigurationBundlesStream(
2155
+ args: ListConfigurationBundlesCommandInput,
2156
+ options?: HttpHandlerOptions,
2157
+ ): Stream.Stream<
2158
+ ListConfigurationBundlesCommandOutput,
2159
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2160
+ >;
2161
+
2162
+ /**
2163
+ * @see {@link ListEvaluatorsCommand}
2164
+ */
2165
+ listEvaluators(
2166
+ args: ListEvaluatorsCommandInput,
2167
+ options?: HttpHandlerOptions,
2168
+ ): Effect.Effect<
2169
+ ListEvaluatorsCommandOutput,
2170
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2171
+ >;
2172
+
2173
+ listEvaluatorsStream(
2174
+ args: ListEvaluatorsCommandInput,
2175
+ options?: HttpHandlerOptions,
2176
+ ): Stream.Stream<
2177
+ ListEvaluatorsCommandOutput,
2178
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2179
+ >;
2180
+
2181
+ /**
2182
+ * @see {@link ListGatewayRulesCommand}
2183
+ */
2184
+ listGatewayRules(
2185
+ args: ListGatewayRulesCommandInput,
2186
+ options?: HttpHandlerOptions,
2187
+ ): Effect.Effect<
2188
+ ListGatewayRulesCommandOutput,
2189
+ | Cause.TimeoutException
2190
+ | SdkError
2191
+ | AccessDeniedError
2192
+ | InternalServerError
2193
+ | ResourceNotFoundError
2194
+ | ThrottlingError
2195
+ | ValidationError
2196
+ >;
2197
+
2198
+ listGatewayRulesStream(
2199
+ args: ListGatewayRulesCommandInput,
2200
+ options?: HttpHandlerOptions,
2201
+ ): Stream.Stream<
2202
+ ListGatewayRulesCommandOutput,
2203
+ | Cause.TimeoutException
2204
+ | SdkError
2205
+ | AccessDeniedError
2206
+ | InternalServerError
2207
+ | ResourceNotFoundError
2208
+ | ThrottlingError
2209
+ | ValidationError
2210
+ >;
2211
+
2212
+ /**
2213
+ * @see {@link ListGatewayTargetsCommand}
2214
+ */
2215
+ listGatewayTargets(
2216
+ args: ListGatewayTargetsCommandInput,
2217
+ options?: HttpHandlerOptions,
2218
+ ): Effect.Effect<
2219
+ ListGatewayTargetsCommandOutput,
2220
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2221
+ >;
2222
+
2223
+ listGatewayTargetsStream(
2224
+ args: ListGatewayTargetsCommandInput,
2225
+ options?: HttpHandlerOptions,
2226
+ ): Stream.Stream<
2227
+ ListGatewayTargetsCommandOutput,
2228
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2229
+ >;
2230
+
2231
+ /**
2232
+ * @see {@link ListGatewaysCommand}
2233
+ */
2234
+ listGateways(
2235
+ args: ListGatewaysCommandInput,
2236
+ options?: HttpHandlerOptions,
2237
+ ): Effect.Effect<
2238
+ ListGatewaysCommandOutput,
2239
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2240
+ >;
2241
+
2242
+ listGatewaysStream(
2243
+ args: ListGatewaysCommandInput,
2244
+ options?: HttpHandlerOptions,
2245
+ ): Stream.Stream<
2246
+ ListGatewaysCommandOutput,
2247
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2248
+ >;
2249
+
2250
+ /**
2251
+ * @see {@link ListHarnessesCommand}
2252
+ */
2253
+ listHarnesses(
2254
+ args: ListHarnessesCommandInput,
2255
+ options?: HttpHandlerOptions,
2256
+ ): Effect.Effect<
2257
+ ListHarnessesCommandOutput,
2258
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2259
+ >;
2260
+
2261
+ listHarnessesStream(
2262
+ args: ListHarnessesCommandInput,
2263
+ options?: HttpHandlerOptions,
2264
+ ): Stream.Stream<
2265
+ ListHarnessesCommandOutput,
2266
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2267
+ >;
2268
+
2269
+ /**
2270
+ * @see {@link ListMemoriesCommand}
2271
+ */
2272
+ listMemories(
2273
+ args: ListMemoriesCommandInput,
2274
+ options?: HttpHandlerOptions,
2275
+ ): Effect.Effect<
2276
+ ListMemoriesCommandOutput,
2277
+ | Cause.TimeoutException
2278
+ | SdkError
2279
+ | AccessDeniedError
2280
+ | ResourceNotFoundError
2281
+ | ServiceError
2282
+ | ThrottledError
2283
+ | ValidationError
2284
+ >;
2285
+
2286
+ listMemoriesStream(
2287
+ args: ListMemoriesCommandInput,
2288
+ options?: HttpHandlerOptions,
2289
+ ): Stream.Stream<
2290
+ ListMemoriesCommandOutput,
2291
+ | Cause.TimeoutException
2292
+ | SdkError
2293
+ | AccessDeniedError
2294
+ | ResourceNotFoundError
2295
+ | ServiceError
2296
+ | ThrottledError
2297
+ | ValidationError
2298
+ >;
2299
+
2300
+ /**
2301
+ * @see {@link ListOauth2CredentialProvidersCommand}
2302
+ */
2303
+ listOauth2CredentialProviders(
2304
+ args: ListOauth2CredentialProvidersCommandInput,
2305
+ options?: HttpHandlerOptions,
2306
+ ): Effect.Effect<
2307
+ ListOauth2CredentialProvidersCommandOutput,
2308
+ | Cause.TimeoutException
2309
+ | SdkError
2310
+ | AccessDeniedError
2311
+ | InternalServerError
2312
+ | ResourceNotFoundError
2313
+ | ThrottlingError
2314
+ | UnauthorizedError
2315
+ | ValidationError
2316
+ >;
2317
+
2318
+ listOauth2CredentialProvidersStream(
2319
+ args: ListOauth2CredentialProvidersCommandInput,
2320
+ options?: HttpHandlerOptions,
2321
+ ): Stream.Stream<
2322
+ ListOauth2CredentialProvidersCommandOutput,
2323
+ | Cause.TimeoutException
2324
+ | SdkError
2325
+ | AccessDeniedError
2326
+ | InternalServerError
2327
+ | ResourceNotFoundError
2328
+ | ThrottlingError
2329
+ | UnauthorizedError
2330
+ | ValidationError
2331
+ >;
2332
+
2333
+ /**
2334
+ * @see {@link ListOnlineEvaluationConfigsCommand}
2335
+ */
2336
+ listOnlineEvaluationConfigs(
2337
+ args: ListOnlineEvaluationConfigsCommandInput,
2338
+ options?: HttpHandlerOptions,
2339
+ ): Effect.Effect<
2340
+ ListOnlineEvaluationConfigsCommandOutput,
2341
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2342
+ >;
2343
+
2344
+ listOnlineEvaluationConfigsStream(
2345
+ args: ListOnlineEvaluationConfigsCommandInput,
2346
+ options?: HttpHandlerOptions,
2347
+ ): Stream.Stream<
2348
+ ListOnlineEvaluationConfigsCommandOutput,
2349
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2350
+ >;
2351
+
2352
+ /**
2353
+ * @see {@link ListPaymentConnectorsCommand}
2354
+ */
2355
+ listPaymentConnectors(
2356
+ args: ListPaymentConnectorsCommandInput,
2357
+ options?: HttpHandlerOptions,
2358
+ ): Effect.Effect<
2359
+ ListPaymentConnectorsCommandOutput,
2360
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2361
+ >;
2362
+
2363
+ listPaymentConnectorsStream(
2364
+ args: ListPaymentConnectorsCommandInput,
2365
+ options?: HttpHandlerOptions,
2366
+ ): Stream.Stream<
2367
+ ListPaymentConnectorsCommandOutput,
2368
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2369
+ >;
2370
+
2371
+ /**
2372
+ * @see {@link ListPaymentCredentialProvidersCommand}
2373
+ */
2374
+ listPaymentCredentialProviders(
2375
+ args: ListPaymentCredentialProvidersCommandInput,
2376
+ options?: HttpHandlerOptions,
2377
+ ): Effect.Effect<
2378
+ ListPaymentCredentialProvidersCommandOutput,
2379
+ | Cause.TimeoutException
2380
+ | SdkError
2381
+ | AccessDeniedError
2382
+ | InternalServerError
2383
+ | ResourceNotFoundError
2384
+ | ThrottlingError
2385
+ | UnauthorizedError
2386
+ | ValidationError
2387
+ >;
2388
+
2389
+ listPaymentCredentialProvidersStream(
2390
+ args: ListPaymentCredentialProvidersCommandInput,
2391
+ options?: HttpHandlerOptions,
2392
+ ): Stream.Stream<
2393
+ ListPaymentCredentialProvidersCommandOutput,
2394
+ | Cause.TimeoutException
2395
+ | SdkError
2396
+ | AccessDeniedError
2397
+ | InternalServerError
2398
+ | ResourceNotFoundError
2399
+ | ThrottlingError
2400
+ | UnauthorizedError
2401
+ | ValidationError
2402
+ >;
2403
+
2404
+ /**
2405
+ * @see {@link ListPaymentManagersCommand}
2406
+ */
2407
+ listPaymentManagers(
2408
+ args: ListPaymentManagersCommandInput,
2409
+ options?: HttpHandlerOptions,
2410
+ ): Effect.Effect<
2411
+ ListPaymentManagersCommandOutput,
2412
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2413
+ >;
2414
+
2415
+ listPaymentManagersStream(
2416
+ args: ListPaymentManagersCommandInput,
2417
+ options?: HttpHandlerOptions,
2418
+ ): Stream.Stream<
2419
+ ListPaymentManagersCommandOutput,
2420
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2421
+ >;
2422
+
2423
+ /**
2424
+ * @see {@link ListPoliciesCommand}
2425
+ */
2426
+ listPolicies(
2427
+ args: ListPoliciesCommandInput,
2428
+ options?: HttpHandlerOptions,
2429
+ ): Effect.Effect<
2430
+ ListPoliciesCommandOutput,
2431
+ | Cause.TimeoutException
2432
+ | SdkError
2433
+ | AccessDeniedError
2434
+ | InternalServerError
2435
+ | ResourceNotFoundError
2436
+ | ThrottlingError
2437
+ | ValidationError
2438
+ >;
2439
+
2440
+ listPoliciesStream(
2441
+ args: ListPoliciesCommandInput,
2442
+ options?: HttpHandlerOptions,
2443
+ ): Stream.Stream<
2444
+ ListPoliciesCommandOutput,
2445
+ | Cause.TimeoutException
2446
+ | SdkError
2447
+ | AccessDeniedError
2448
+ | InternalServerError
2449
+ | ResourceNotFoundError
2450
+ | ThrottlingError
2451
+ | ValidationError
2452
+ >;
2453
+
2454
+ /**
2455
+ * @see {@link ListPolicyEnginesCommand}
2456
+ */
2457
+ listPolicyEngines(
2458
+ args: ListPolicyEnginesCommandInput,
2459
+ options?: HttpHandlerOptions,
2460
+ ): Effect.Effect<
2461
+ ListPolicyEnginesCommandOutput,
2462
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2463
+ >;
2464
+
2465
+ listPolicyEnginesStream(
2466
+ args: ListPolicyEnginesCommandInput,
2467
+ options?: HttpHandlerOptions,
2468
+ ): Stream.Stream<
2469
+ ListPolicyEnginesCommandOutput,
2470
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2471
+ >;
2472
+
2473
+ /**
2474
+ * @see {@link ListPolicyGenerationAssetsCommand}
2475
+ */
2476
+ listPolicyGenerationAssets(
2477
+ args: ListPolicyGenerationAssetsCommandInput,
2478
+ options?: HttpHandlerOptions,
2479
+ ): Effect.Effect<
2480
+ ListPolicyGenerationAssetsCommandOutput,
2481
+ | Cause.TimeoutException
2482
+ | SdkError
2483
+ | AccessDeniedError
2484
+ | InternalServerError
2485
+ | ResourceNotFoundError
2486
+ | ThrottlingError
2487
+ | ValidationError
2488
+ >;
2489
+
2490
+ listPolicyGenerationAssetsStream(
2491
+ args: ListPolicyGenerationAssetsCommandInput,
2492
+ options?: HttpHandlerOptions,
2493
+ ): Stream.Stream<
2494
+ ListPolicyGenerationAssetsCommandOutput,
2495
+ | Cause.TimeoutException
2496
+ | SdkError
2497
+ | AccessDeniedError
2498
+ | InternalServerError
2499
+ | ResourceNotFoundError
2500
+ | ThrottlingError
2501
+ | ValidationError
2502
+ >;
2503
+
2504
+ /**
2505
+ * @see {@link ListPolicyGenerationsCommand}
2506
+ */
2507
+ listPolicyGenerations(
2508
+ args: ListPolicyGenerationsCommandInput,
2509
+ options?: HttpHandlerOptions,
2510
+ ): Effect.Effect<
2511
+ ListPolicyGenerationsCommandOutput,
2512
+ | Cause.TimeoutException
2513
+ | SdkError
2514
+ | AccessDeniedError
2515
+ | InternalServerError
2516
+ | ResourceNotFoundError
2517
+ | ThrottlingError
2518
+ | ValidationError
2519
+ >;
2520
+
2521
+ listPolicyGenerationsStream(
2522
+ args: ListPolicyGenerationsCommandInput,
2523
+ options?: HttpHandlerOptions,
2524
+ ): Stream.Stream<
2525
+ ListPolicyGenerationsCommandOutput,
2526
+ | Cause.TimeoutException
2527
+ | SdkError
2528
+ | AccessDeniedError
2529
+ | InternalServerError
2530
+ | ResourceNotFoundError
2531
+ | ThrottlingError
2532
+ | ValidationError
2533
+ >;
2534
+
2535
+ /**
2536
+ * @see {@link ListRegistriesCommand}
2537
+ */
2538
+ listRegistries(
2539
+ args: ListRegistriesCommandInput,
2540
+ options?: HttpHandlerOptions,
2541
+ ): Effect.Effect<
2542
+ ListRegistriesCommandOutput,
2543
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2544
+ >;
2545
+
2546
+ listRegistriesStream(
2547
+ args: ListRegistriesCommandInput,
2548
+ options?: HttpHandlerOptions,
2549
+ ): Stream.Stream<
2550
+ ListRegistriesCommandOutput,
2551
+ Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2552
+ >;
2553
+
2554
+ /**
2555
+ * @see {@link ListRegistryRecordsCommand}
2556
+ */
2557
+ listRegistryRecords(
2558
+ args: ListRegistryRecordsCommandInput,
2559
+ options?: HttpHandlerOptions,
2560
+ ): Effect.Effect<
2561
+ ListRegistryRecordsCommandOutput,
2562
+ | Cause.TimeoutException
2563
+ | SdkError
2564
+ | AccessDeniedError
2565
+ | ConflictError
2566
+ | InternalServerError
2567
+ | ResourceNotFoundError
2568
+ | ThrottlingError
2569
+ | ValidationError
2570
+ >;
2571
+
2572
+ listRegistryRecordsStream(
2573
+ args: ListRegistryRecordsCommandInput,
2574
+ options?: HttpHandlerOptions,
2575
+ ): Stream.Stream<
2576
+ ListRegistryRecordsCommandOutput,
2577
+ | Cause.TimeoutException
2578
+ | SdkError
2579
+ | AccessDeniedError
2580
+ | ConflictError
2581
+ | InternalServerError
2582
+ | ResourceNotFoundError
2583
+ | ThrottlingError
2584
+ | ValidationError
2585
+ >;
2586
+
2587
+ /**
2588
+ * @see {@link ListTagsForResourceCommand}
2589
+ */
2590
+ listTagsForResource(
2591
+ args: ListTagsForResourceCommandInput,
2592
+ options?: HttpHandlerOptions,
2593
+ ): Effect.Effect<
2594
+ ListTagsForResourceCommandOutput,
2595
+ | Cause.TimeoutException
2596
+ | SdkError
2597
+ | AccessDeniedError
2598
+ | InternalServerError
2599
+ | ResourceNotFoundError
2600
+ | ThrottlingError
2601
+ | ValidationError
2602
+ >;
2603
+
2604
+ /**
2605
+ * @see {@link ListWorkloadIdentitiesCommand}
2606
+ */
2607
+ listWorkloadIdentities(
2608
+ args: ListWorkloadIdentitiesCommandInput,
2609
+ options?: HttpHandlerOptions,
2610
+ ): Effect.Effect<
2611
+ ListWorkloadIdentitiesCommandOutput,
2612
+ | Cause.TimeoutException
2613
+ | SdkError
2614
+ | AccessDeniedError
2615
+ | InternalServerError
2616
+ | ResourceNotFoundError
2617
+ | ThrottlingError
2618
+ | UnauthorizedError
2619
+ | ValidationError
2620
+ >;
2621
+
2622
+ listWorkloadIdentitiesStream(
2623
+ args: ListWorkloadIdentitiesCommandInput,
2624
+ options?: HttpHandlerOptions,
2625
+ ): Stream.Stream<
2626
+ ListWorkloadIdentitiesCommandOutput,
2627
+ | Cause.TimeoutException
2628
+ | SdkError
2629
+ | AccessDeniedError
2630
+ | InternalServerError
2631
+ | ResourceNotFoundError
2632
+ | ThrottlingError
2633
+ | UnauthorizedError
2634
+ | ValidationError
2635
+ >;
2636
+
2637
+ /**
2638
+ * @see {@link PutResourcePolicyCommand}
2639
+ */
2640
+ putResourcePolicy(
2641
+ args: PutResourcePolicyCommandInput,
2642
+ options?: HttpHandlerOptions,
2643
+ ): Effect.Effect<
2644
+ PutResourcePolicyCommandOutput,
2645
+ | Cause.TimeoutException
2646
+ | SdkError
2647
+ | AccessDeniedError
2648
+ | InternalServerError
2649
+ | ResourceNotFoundError
2650
+ | ThrottlingError
2651
+ | ValidationError
2652
+ >;
2653
+
2654
+ /**
2655
+ * @see {@link SetTokenVaultCMKCommand}
2656
+ */
2657
+ setTokenVaultCMK(
2658
+ args: SetTokenVaultCMKCommandInput,
2659
+ options?: HttpHandlerOptions,
2660
+ ): Effect.Effect<
2661
+ SetTokenVaultCMKCommandOutput,
2662
+ | Cause.TimeoutException
2663
+ | SdkError
2664
+ | AccessDeniedError
2665
+ | ConcurrentModificationError
2666
+ | InternalServerError
2667
+ | ResourceNotFoundError
2668
+ | ThrottlingError
2669
+ | UnauthorizedError
2670
+ | ValidationError
2671
+ >;
2672
+
2673
+ /**
2674
+ * @see {@link StartPolicyGenerationCommand}
2675
+ */
2676
+ startPolicyGeneration(
2677
+ args: StartPolicyGenerationCommandInput,
2678
+ options?: HttpHandlerOptions,
2679
+ ): Effect.Effect<
2680
+ StartPolicyGenerationCommandOutput,
2681
+ | Cause.TimeoutException
2682
+ | SdkError
2683
+ | AccessDeniedError
2684
+ | ConflictError
2685
+ | InternalServerError
2686
+ | ResourceNotFoundError
2687
+ | ServiceQuotaExceededError
2688
+ | ThrottlingError
2689
+ | ValidationError
2690
+ >;
2691
+
2692
+ /**
2693
+ * @see {@link SubmitRegistryRecordForApprovalCommand}
2694
+ */
2695
+ submitRegistryRecordForApproval(
2696
+ args: SubmitRegistryRecordForApprovalCommandInput,
2697
+ options?: HttpHandlerOptions,
2698
+ ): Effect.Effect<
2699
+ SubmitRegistryRecordForApprovalCommandOutput,
2700
+ | Cause.TimeoutException
2701
+ | SdkError
2702
+ | AccessDeniedError
2703
+ | ConflictError
2704
+ | InternalServerError
2705
+ | ResourceNotFoundError
2706
+ | ThrottlingError
2707
+ | ValidationError
2708
+ >;
2709
+
2710
+ /**
2711
+ * @see {@link SynchronizeGatewayTargetsCommand}
2712
+ */
2713
+ synchronizeGatewayTargets(
2714
+ args: SynchronizeGatewayTargetsCommandInput,
2715
+ options?: HttpHandlerOptions,
2716
+ ): Effect.Effect<
2717
+ SynchronizeGatewayTargetsCommandOutput,
2718
+ | Cause.TimeoutException
2719
+ | SdkError
2720
+ | AccessDeniedError
2721
+ | ConflictError
2722
+ | InternalServerError
2723
+ | ResourceNotFoundError
2724
+ | ServiceQuotaExceededError
2725
+ | ThrottlingError
2726
+ | ValidationError
2727
+ >;
2728
+
2729
+ /**
2730
+ * @see {@link TagResourceCommand}
2731
+ */
2732
+ tagResource(
2733
+ args: TagResourceCommandInput,
2734
+ options?: HttpHandlerOptions,
2735
+ ): Effect.Effect<
2736
+ TagResourceCommandOutput,
2737
+ | Cause.TimeoutException
2738
+ | SdkError
2739
+ | AccessDeniedError
2740
+ | InternalServerError
2741
+ | ResourceNotFoundError
2742
+ | ServiceQuotaExceededError
2743
+ | ThrottlingError
2744
+ | ValidationError
2745
+ >;
2746
+
2747
+ /**
2748
+ * @see {@link UntagResourceCommand}
2749
+ */
2750
+ untagResource(
2751
+ args: UntagResourceCommandInput,
2752
+ options?: HttpHandlerOptions,
2753
+ ): Effect.Effect<
2754
+ UntagResourceCommandOutput,
2755
+ | Cause.TimeoutException
2756
+ | SdkError
2757
+ | AccessDeniedError
2758
+ | InternalServerError
2759
+ | ResourceNotFoundError
2760
+ | ThrottlingError
2761
+ | ValidationError
2762
+ >;
2763
+
2764
+ /**
2765
+ * @see {@link UpdateAgentRuntimeCommand}
2766
+ */
2767
+ updateAgentRuntime(
2768
+ args: UpdateAgentRuntimeCommandInput,
2769
+ options?: HttpHandlerOptions,
2770
+ ): Effect.Effect<
2771
+ UpdateAgentRuntimeCommandOutput,
2772
+ | Cause.TimeoutException
2773
+ | SdkError
2774
+ | AccessDeniedError
2775
+ | ConflictError
2776
+ | InternalServerError
2777
+ | ResourceNotFoundError
2778
+ | ServiceQuotaExceededError
2779
+ | ThrottlingError
2780
+ | ValidationError
2781
+ >;
2782
+
2783
+ /**
2784
+ * @see {@link UpdateAgentRuntimeEndpointCommand}
2785
+ */
2786
+ updateAgentRuntimeEndpoint(
2787
+ args: UpdateAgentRuntimeEndpointCommandInput,
2788
+ options?: HttpHandlerOptions,
2789
+ ): Effect.Effect<
2790
+ UpdateAgentRuntimeEndpointCommandOutput,
2791
+ | Cause.TimeoutException
2792
+ | SdkError
2793
+ | AccessDeniedError
2794
+ | ConflictError
2795
+ | InternalServerError
2796
+ | ResourceNotFoundError
2797
+ | ServiceQuotaExceededError
2798
+ | ThrottlingError
2799
+ | ValidationError
2800
+ >;
2801
+
2802
+ /**
2803
+ * @see {@link UpdateApiKeyCredentialProviderCommand}
2804
+ */
2805
+ updateApiKeyCredentialProvider(
2806
+ args: UpdateApiKeyCredentialProviderCommandInput,
2807
+ options?: HttpHandlerOptions,
2808
+ ): Effect.Effect<
2809
+ UpdateApiKeyCredentialProviderCommandOutput,
2810
+ | Cause.TimeoutException
2811
+ | SdkError
2812
+ | AccessDeniedError
2813
+ | ConflictError
2814
+ | DecryptionError
2815
+ | EncryptionError
2816
+ | InternalServerError
2817
+ | ResourceNotFoundError
2818
+ | ServiceQuotaExceededError
2819
+ | ThrottlingError
2820
+ | UnauthorizedError
2821
+ | ValidationError
2822
+ >;
2823
+
2824
+ /**
2825
+ * @see {@link UpdateConfigurationBundleCommand}
2826
+ */
2827
+ updateConfigurationBundle(
2828
+ args: UpdateConfigurationBundleCommandInput,
2829
+ options?: HttpHandlerOptions,
2830
+ ): Effect.Effect<
2831
+ UpdateConfigurationBundleCommandOutput,
2832
+ | Cause.TimeoutException
2833
+ | SdkError
2834
+ | AccessDeniedError
2835
+ | ConflictError
2836
+ | InternalServerError
2837
+ | ResourceNotFoundError
2838
+ | ThrottlingError
2839
+ | ValidationError
2840
+ >;
2841
+
2842
+ /**
2843
+ * @see {@link UpdateEvaluatorCommand}
2844
+ */
2845
+ updateEvaluator(
2846
+ args: UpdateEvaluatorCommandInput,
2847
+ options?: HttpHandlerOptions,
2848
+ ): Effect.Effect<
2849
+ UpdateEvaluatorCommandOutput,
2850
+ | Cause.TimeoutException
2851
+ | SdkError
2852
+ | AccessDeniedError
2853
+ | ConflictError
2854
+ | InternalServerError
2855
+ | ResourceNotFoundError
2856
+ | ServiceQuotaExceededError
2857
+ | ThrottlingError
2858
+ | ValidationError
2859
+ >;
2860
+
2861
+ /**
2862
+ * @see {@link UpdateGatewayCommand}
2863
+ */
2864
+ updateGateway(
2865
+ args: UpdateGatewayCommandInput,
2866
+ options?: HttpHandlerOptions,
2867
+ ): Effect.Effect<
2868
+ UpdateGatewayCommandOutput,
2869
+ | Cause.TimeoutException
2870
+ | SdkError
2871
+ | AccessDeniedError
2872
+ | ConflictError
2873
+ | InternalServerError
2874
+ | ResourceNotFoundError
2875
+ | ServiceQuotaExceededError
2876
+ | ThrottlingError
2877
+ | ValidationError
2878
+ >;
2879
+
2880
+ /**
2881
+ * @see {@link UpdateGatewayRuleCommand}
2882
+ */
2883
+ updateGatewayRule(
2884
+ args: UpdateGatewayRuleCommandInput,
2885
+ options?: HttpHandlerOptions,
2886
+ ): Effect.Effect<
2887
+ UpdateGatewayRuleCommandOutput,
2888
+ | Cause.TimeoutException
2889
+ | SdkError
2890
+ | AccessDeniedError
2891
+ | ConflictError
2892
+ | InternalServerError
2893
+ | ResourceNotFoundError
2894
+ | ThrottlingError
2895
+ | ValidationError
2896
+ >;
2897
+
2898
+ /**
2899
+ * @see {@link UpdateGatewayTargetCommand}
2900
+ */
2901
+ updateGatewayTarget(
2902
+ args: UpdateGatewayTargetCommandInput,
2903
+ options?: HttpHandlerOptions,
2904
+ ): Effect.Effect<
2905
+ UpdateGatewayTargetCommandOutput,
2906
+ | Cause.TimeoutException
2907
+ | SdkError
2908
+ | AccessDeniedError
2909
+ | ConflictError
2910
+ | InternalServerError
2911
+ | ResourceNotFoundError
2912
+ | ServiceQuotaExceededError
2913
+ | ThrottlingError
2914
+ | ValidationError
2915
+ >;
2916
+
2917
+ /**
2918
+ * @see {@link UpdateHarnessCommand}
2919
+ */
2920
+ updateHarness(
2921
+ args: UpdateHarnessCommandInput,
2922
+ options?: HttpHandlerOptions,
2923
+ ): Effect.Effect<
2924
+ UpdateHarnessCommandOutput,
2925
+ | Cause.TimeoutException
2926
+ | SdkError
2927
+ | AccessDeniedError
2928
+ | ConflictError
2929
+ | InternalServerError
2930
+ | ResourceNotFoundError
2931
+ | ThrottlingError
2932
+ | ValidationError
2933
+ >;
2934
+
2935
+ /**
2936
+ * @see {@link UpdateMemoryCommand}
2937
+ */
2938
+ updateMemory(
2939
+ args: UpdateMemoryCommandInput,
2940
+ options?: HttpHandlerOptions,
2941
+ ): Effect.Effect<
2942
+ UpdateMemoryCommandOutput,
2943
+ | Cause.TimeoutException
2944
+ | SdkError
2945
+ | AccessDeniedError
2946
+ | ConflictError
2947
+ | ResourceNotFoundError
2948
+ | ServiceError
2949
+ | ServiceQuotaExceededError
2950
+ | ThrottledError
2951
+ | ValidationError
2952
+ >;
2953
+
2954
+ /**
2955
+ * @see {@link UpdateOauth2CredentialProviderCommand}
2956
+ */
2957
+ updateOauth2CredentialProvider(
2958
+ args: UpdateOauth2CredentialProviderCommandInput,
2959
+ options?: HttpHandlerOptions,
2960
+ ): Effect.Effect<
2961
+ UpdateOauth2CredentialProviderCommandOutput,
2962
+ | Cause.TimeoutException
2963
+ | SdkError
2964
+ | AccessDeniedError
2965
+ | ConflictError
2966
+ | DecryptionError
2967
+ | EncryptionError
2968
+ | InternalServerError
2969
+ | ResourceNotFoundError
2970
+ | ServiceQuotaExceededError
2971
+ | ThrottlingError
2972
+ | UnauthorizedError
2973
+ | ValidationError
2974
+ >;
2975
+
2976
+ /**
2977
+ * @see {@link UpdateOnlineEvaluationConfigCommand}
2978
+ */
2979
+ updateOnlineEvaluationConfig(
2980
+ args: UpdateOnlineEvaluationConfigCommandInput,
2981
+ options?: HttpHandlerOptions,
2982
+ ): Effect.Effect<
2983
+ UpdateOnlineEvaluationConfigCommandOutput,
2984
+ | Cause.TimeoutException
2985
+ | SdkError
2986
+ | AccessDeniedError
2987
+ | ConflictError
2988
+ | InternalServerError
2989
+ | ResourceNotFoundError
2990
+ | ServiceQuotaExceededError
2991
+ | ThrottlingError
2992
+ | ValidationError
2993
+ >;
2994
+
2995
+ /**
2996
+ * @see {@link UpdatePaymentConnectorCommand}
2997
+ */
2998
+ updatePaymentConnector(
2999
+ args: UpdatePaymentConnectorCommandInput,
3000
+ options?: HttpHandlerOptions,
3001
+ ): Effect.Effect<
3002
+ UpdatePaymentConnectorCommandOutput,
3003
+ | Cause.TimeoutException
3004
+ | SdkError
3005
+ | AccessDeniedError
3006
+ | ConflictError
3007
+ | InternalServerError
3008
+ | ResourceNotFoundError
3009
+ | ServiceQuotaExceededError
3010
+ | ThrottlingError
3011
+ | ValidationError
3012
+ >;
3013
+
3014
+ /**
3015
+ * @see {@link UpdatePaymentCredentialProviderCommand}
3016
+ */
3017
+ updatePaymentCredentialProvider(
3018
+ args: UpdatePaymentCredentialProviderCommandInput,
3019
+ options?: HttpHandlerOptions,
3020
+ ): Effect.Effect<
3021
+ UpdatePaymentCredentialProviderCommandOutput,
3022
+ | Cause.TimeoutException
3023
+ | SdkError
3024
+ | AccessDeniedError
3025
+ | ConflictError
3026
+ | DecryptionError
3027
+ | EncryptionError
3028
+ | InternalServerError
3029
+ | ResourceNotFoundError
3030
+ | ServiceQuotaExceededError
3031
+ | ThrottlingError
3032
+ | UnauthorizedError
3033
+ | ValidationError
3034
+ >;
3035
+
3036
+ /**
3037
+ * @see {@link UpdatePaymentManagerCommand}
3038
+ */
3039
+ updatePaymentManager(
3040
+ args: UpdatePaymentManagerCommandInput,
3041
+ options?: HttpHandlerOptions,
3042
+ ): Effect.Effect<
3043
+ UpdatePaymentManagerCommandOutput,
3044
+ | Cause.TimeoutException
3045
+ | SdkError
3046
+ | AccessDeniedError
3047
+ | ConflictError
3048
+ | InternalServerError
3049
+ | ResourceNotFoundError
3050
+ | ServiceQuotaExceededError
3051
+ | ThrottlingError
3052
+ | ValidationError
3053
+ >;
3054
+
3055
+ /**
3056
+ * @see {@link UpdatePolicyCommand}
3057
+ */
3058
+ updatePolicy(
3059
+ args: UpdatePolicyCommandInput,
3060
+ options?: HttpHandlerOptions,
3061
+ ): Effect.Effect<
3062
+ UpdatePolicyCommandOutput,
3063
+ | Cause.TimeoutException
3064
+ | SdkError
3065
+ | AccessDeniedError
3066
+ | ConflictError
3067
+ | InternalServerError
3068
+ | ResourceNotFoundError
3069
+ | ThrottlingError
3070
+ | ValidationError
3071
+ >;
3072
+
3073
+ /**
3074
+ * @see {@link UpdatePolicyEngineCommand}
3075
+ */
3076
+ updatePolicyEngine(
3077
+ args: UpdatePolicyEngineCommandInput,
3078
+ options?: HttpHandlerOptions,
3079
+ ): Effect.Effect<
3080
+ UpdatePolicyEngineCommandOutput,
3081
+ | Cause.TimeoutException
3082
+ | SdkError
3083
+ | AccessDeniedError
3084
+ | ConflictError
3085
+ | InternalServerError
3086
+ | ResourceNotFoundError
3087
+ | ThrottlingError
3088
+ | ValidationError
3089
+ >;
3090
+
3091
+ /**
3092
+ * @see {@link UpdateRegistryCommand}
3093
+ */
3094
+ updateRegistry(
3095
+ args: UpdateRegistryCommandInput,
3096
+ options?: HttpHandlerOptions,
3097
+ ): Effect.Effect<
3098
+ UpdateRegistryCommandOutput,
3099
+ | Cause.TimeoutException
3100
+ | SdkError
3101
+ | AccessDeniedError
3102
+ | ConflictError
3103
+ | InternalServerError
3104
+ | ResourceNotFoundError
3105
+ | ServiceQuotaExceededError
3106
+ | ThrottlingError
3107
+ | ValidationError
3108
+ >;
3109
+
3110
+ /**
3111
+ * @see {@link UpdateRegistryRecordCommand}
3112
+ */
3113
+ updateRegistryRecord(
3114
+ args: UpdateRegistryRecordCommandInput,
3115
+ options?: HttpHandlerOptions,
3116
+ ): Effect.Effect<
3117
+ UpdateRegistryRecordCommandOutput,
3118
+ | Cause.TimeoutException
3119
+ | SdkError
3120
+ | AccessDeniedError
3121
+ | ConflictError
3122
+ | InternalServerError
3123
+ | ResourceNotFoundError
3124
+ | ThrottlingError
3125
+ | ValidationError
3126
+ >;
3127
+
3128
+ /**
3129
+ * @see {@link UpdateRegistryRecordStatusCommand}
3130
+ */
3131
+ updateRegistryRecordStatus(
3132
+ args: UpdateRegistryRecordStatusCommandInput,
3133
+ options?: HttpHandlerOptions,
3134
+ ): Effect.Effect<
3135
+ UpdateRegistryRecordStatusCommandOutput,
3136
+ | Cause.TimeoutException
3137
+ | SdkError
3138
+ | AccessDeniedError
3139
+ | ConflictError
3140
+ | InternalServerError
3141
+ | ResourceNotFoundError
3142
+ | ThrottlingError
3143
+ | ValidationError
3144
+ >;
3145
+
3146
+ /**
3147
+ * @see {@link UpdateWorkloadIdentityCommand}
3148
+ */
3149
+ updateWorkloadIdentity(
3150
+ args: UpdateWorkloadIdentityCommandInput,
3151
+ options?: HttpHandlerOptions,
3152
+ ): Effect.Effect<
3153
+ UpdateWorkloadIdentityCommandOutput,
3154
+ | Cause.TimeoutException
3155
+ | SdkError
3156
+ | AccessDeniedError
3157
+ | InternalServerError
3158
+ | ResourceNotFoundError
3159
+ | ThrottlingError
3160
+ | UnauthorizedError
3161
+ | ValidationError
3162
+ >;
3163
+ }
3164
+
3165
+ /**
3166
+ * @since 1.0.0
3167
+ * @category constructors
3168
+ */
3169
+ export const makeBedrockAgentCoreControlService = Effect.gen(function*() {
3170
+ const client = yield* Instance.BedrockAgentCoreControlClientInstance;
3171
+
3172
+ return yield* Service.fromClientAndCommands<BedrockAgentCoreControlService$>(
3173
+ client,
3174
+ commands,
3175
+ {
3176
+ errorTags: AllServiceErrors,
3177
+ resolveClientConfig: BedrockAgentCoreControlServiceConfig.toBedrockAgentCoreControlClientConfig,
3178
+ },
3179
+ paginators,
3180
+ );
3181
+ });
3182
+
3183
+ /**
3184
+ * @since 1.0.0
3185
+ * @category models
3186
+ */
3187
+ export class BedrockAgentCoreControlService
3188
+ extends Effect.Tag("@effect-aws/client-bedrock-agentcore-control/BedrockAgentCoreControlService")<
3189
+ BedrockAgentCoreControlService,
3190
+ BedrockAgentCoreControlService$
3191
+ >()
3192
+ {
3193
+ static readonly defaultLayer = Layer.effect(this, makeBedrockAgentCoreControlService).pipe(
3194
+ Layer.provide(Instance.layer),
3195
+ );
3196
+ static readonly layer = (config: BedrockAgentCoreControlService.Config) =>
3197
+ Layer.effect(this, makeBedrockAgentCoreControlService).pipe(
3198
+ Layer.provide(Instance.layer),
3199
+ Layer.provide(BedrockAgentCoreControlServiceConfig.setBedrockAgentCoreControlServiceConfig(config)),
3200
+ );
3201
+ static readonly baseLayer = (
3202
+ evaluate: (defaultConfig: BedrockAgentCoreControlClientConfig) => BedrockAgentCoreControlClient,
3203
+ ) =>
3204
+ Layer.effect(this, makeBedrockAgentCoreControlService).pipe(
3205
+ Layer.provide(
3206
+ Layer.effect(
3207
+ Instance.BedrockAgentCoreControlClientInstance,
3208
+ Effect.map(BedrockAgentCoreControlServiceConfig.toBedrockAgentCoreControlClientConfig, evaluate),
3209
+ ),
3210
+ ),
3211
+ );
3212
+ }
3213
+
3214
+ /**
3215
+ * @since 1.0.0
3216
+ */
3217
+ export declare namespace BedrockAgentCoreControlService {
3218
+ /**
3219
+ * @since 1.0.0
3220
+ */
3221
+ export interface Config extends Omit<BedrockAgentCoreControlClientConfig, "logger"> {
3222
+ readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
3223
+ }
3224
+
3225
+ /**
3226
+ * @since 1.0.0
3227
+ */
3228
+ export type Type = BedrockAgentCoreControlService$;
3229
+ }