@effect-aws/client-bedrock-agentcore-control 1.11.3 → 2.0.0-beta.5

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 (36) hide show
  1. package/README.md +3 -3
  2. package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts +1 -1
  3. package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts.map +1 -1
  4. package/dist/dts/BedrockAgentCoreControlService.d.ts +191 -193
  5. package/dist/dts/BedrockAgentCoreControlService.d.ts.map +1 -1
  6. package/dist/dts/BedrockAgentCoreControlServiceConfig.d.ts.map +1 -1
  7. package/dist/esm/BedrockAgentCoreControlClientInstance.js +2 -2
  8. package/dist/esm/BedrockAgentCoreControlClientInstance.js.map +1 -1
  9. package/dist/esm/BedrockAgentCoreControlService.js +2 -1
  10. package/dist/esm/BedrockAgentCoreControlService.js.map +1 -1
  11. package/dist/esm/BedrockAgentCoreControlServiceConfig.js +5 -6
  12. package/dist/esm/BedrockAgentCoreControlServiceConfig.js.map +1 -1
  13. package/package.json +8 -14
  14. package/src/BedrockAgentCoreControlClientInstance.ts +6 -4
  15. package/src/BedrockAgentCoreControlService.ts +194 -197
  16. package/src/BedrockAgentCoreControlServiceConfig.ts +6 -7
  17. package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts +0 -26
  18. package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts.map +0 -1
  19. package/dist/cjs/BedrockAgentCoreControlClientInstance.js +0 -52
  20. package/dist/cjs/BedrockAgentCoreControlClientInstance.js.map +0 -1
  21. package/dist/cjs/BedrockAgentCoreControlService.d.ts +0 -696
  22. package/dist/cjs/BedrockAgentCoreControlService.d.ts.map +0 -1
  23. package/dist/cjs/BedrockAgentCoreControlService.js +0 -250
  24. package/dist/cjs/BedrockAgentCoreControlService.js.map +0 -1
  25. package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts +0 -26
  26. package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts.map +0 -1
  27. package/dist/cjs/BedrockAgentCoreControlServiceConfig.js +0 -60
  28. package/dist/cjs/BedrockAgentCoreControlServiceConfig.js.map +0 -1
  29. package/dist/cjs/Errors.d.ts +0 -21
  30. package/dist/cjs/Errors.d.ts.map +0 -1
  31. package/dist/cjs/Errors.js +0 -20
  32. package/dist/cjs/Errors.js.map +0 -1
  33. package/dist/cjs/index.d.ts +0 -44
  34. package/dist/cjs/index.d.ts.map +0 -1
  35. package/dist/cjs/index.js +0 -56
  36. package/dist/cjs/index.js.map +0 -1
@@ -5,669 +5,667 @@ import { type AddDatasetExamplesCommandInput, type AddDatasetExamplesCommandOutp
5
5
  import type * as ServiceLogger from "@effect-aws/commons/ServiceLogger";
6
6
  import type { HttpHandlerOptions } from "@effect-aws/commons/Types";
7
7
  import type * as Cause from "effect/Cause";
8
+ import * as Context from "effect/Context";
8
9
  import * as Effect from "effect/Effect";
9
10
  import * as Layer from "effect/Layer";
10
11
  import type * as Stream from "effect/Stream";
11
12
  import * as Instance from "./BedrockAgentCoreControlClientInstance.js";
12
13
  import type { AccessDeniedError, ConcurrentModificationError, ConflictError, DecryptionError, EncryptionError, InternalServerError, ResourceLimitExceededError, ResourceNotFoundError, SdkError, ServiceError, ServiceQuotaExceededError, ThrottledError, ThrottlingError, UnauthorizedError, ValidationError } from "./Errors.js";
13
- interface BedrockAgentCoreControlService$ {
14
- readonly _: unique symbol;
14
+ export interface BedrockAgentCoreControlService$ {
15
15
  /**
16
16
  * @see {@link AddDatasetExamplesCommand}
17
17
  */
18
- addDatasetExamples(args: AddDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddDatasetExamplesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
18
+ addDatasetExamples(args: AddDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddDatasetExamplesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
19
19
  /**
20
20
  * @see {@link CreateAgentRuntimeCommand}
21
21
  */
22
- createAgentRuntime(args: CreateAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAgentRuntimeCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
22
+ createAgentRuntime(args: CreateAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAgentRuntimeCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
23
23
  /**
24
24
  * @see {@link CreateAgentRuntimeEndpointCommand}
25
25
  */
26
- createAgentRuntimeEndpoint(args: CreateAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAgentRuntimeEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
26
+ createAgentRuntimeEndpoint(args: CreateAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAgentRuntimeEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
27
27
  /**
28
28
  * @see {@link CreateApiKeyCredentialProviderCommand}
29
29
  */
30
- createApiKeyCredentialProvider(args: CreateApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateApiKeyCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceLimitExceededError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
30
+ createApiKeyCredentialProvider(args: CreateApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateApiKeyCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceLimitExceededError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
31
31
  /**
32
32
  * @see {@link CreateBrowserCommand}
33
33
  */
34
- createBrowser(args: CreateBrowserCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateBrowserCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
34
+ createBrowser(args: CreateBrowserCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateBrowserCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
35
35
  /**
36
36
  * @see {@link CreateBrowserProfileCommand}
37
37
  */
38
- createBrowserProfile(args: CreateBrowserProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateBrowserProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
38
+ createBrowserProfile(args: CreateBrowserProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateBrowserProfileCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
39
39
  /**
40
40
  * @see {@link CreateCodeInterpreterCommand}
41
41
  */
42
- createCodeInterpreter(args: CreateCodeInterpreterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCodeInterpreterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
42
+ createCodeInterpreter(args: CreateCodeInterpreterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCodeInterpreterCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
43
43
  /**
44
44
  * @see {@link CreateConfigurationBundleCommand}
45
45
  */
46
- createConfigurationBundle(args: CreateConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationBundleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
46
+ createConfigurationBundle(args: CreateConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateConfigurationBundleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
47
47
  /**
48
48
  * @see {@link CreateDatasetCommand}
49
49
  */
50
- createDataset(args: CreateDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDatasetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
50
+ createDataset(args: CreateDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDatasetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
51
51
  /**
52
52
  * @see {@link CreateDatasetVersionCommand}
53
53
  */
54
- createDatasetVersion(args: CreateDatasetVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDatasetVersionCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
54
+ createDatasetVersion(args: CreateDatasetVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDatasetVersionCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
55
55
  /**
56
56
  * @see {@link CreateEvaluatorCommand}
57
57
  */
58
- createEvaluator(args: CreateEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateEvaluatorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
58
+ createEvaluator(args: CreateEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateEvaluatorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
59
59
  /**
60
60
  * @see {@link CreateGatewayCommand}
61
61
  */
62
- createGateway(args: CreateGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGatewayCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
62
+ createGateway(args: CreateGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGatewayCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
63
63
  /**
64
64
  * @see {@link CreateGatewayRuleCommand}
65
65
  */
66
- createGatewayRule(args: CreateGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGatewayRuleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
66
+ createGatewayRule(args: CreateGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGatewayRuleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
67
67
  /**
68
68
  * @see {@link CreateGatewayTargetCommand}
69
69
  */
70
- createGatewayTarget(args: CreateGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGatewayTargetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
70
+ createGatewayTarget(args: CreateGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGatewayTargetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
71
71
  /**
72
72
  * @see {@link CreateHarnessCommand}
73
73
  */
74
- createHarness(args: CreateHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateHarnessCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
74
+ createHarness(args: CreateHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateHarnessCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
75
75
  /**
76
76
  * @see {@link CreateHarnessEndpointCommand}
77
77
  */
78
- createHarnessEndpoint(args: CreateHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateHarnessEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
78
+ createHarnessEndpoint(args: CreateHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateHarnessEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
79
79
  /**
80
80
  * @see {@link CreateMemoryCommand}
81
81
  */
82
- createMemory(args: CreateMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateMemoryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceError | ServiceQuotaExceededError | ThrottledError | ValidationError>;
82
+ createMemory(args: CreateMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateMemoryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceError | ServiceQuotaExceededError | ThrottledError | ValidationError>;
83
83
  /**
84
84
  * @see {@link CreateOauth2CredentialProviderCommand}
85
85
  */
86
- createOauth2CredentialProvider(args: CreateOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateOauth2CredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceLimitExceededError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
86
+ createOauth2CredentialProvider(args: CreateOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateOauth2CredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceLimitExceededError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
87
87
  /**
88
88
  * @see {@link CreateOnlineEvaluationConfigCommand}
89
89
  */
90
- createOnlineEvaluationConfig(args: CreateOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateOnlineEvaluationConfigCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
90
+ createOnlineEvaluationConfig(args: CreateOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateOnlineEvaluationConfigCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
91
91
  /**
92
92
  * @see {@link CreatePaymentConnectorCommand}
93
93
  */
94
- createPaymentConnector(args: CreatePaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePaymentConnectorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
94
+ createPaymentConnector(args: CreatePaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePaymentConnectorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
95
95
  /**
96
96
  * @see {@link CreatePaymentCredentialProviderCommand}
97
97
  */
98
- createPaymentCredentialProvider(args: CreatePaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePaymentCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceLimitExceededError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
98
+ createPaymentCredentialProvider(args: CreatePaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePaymentCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceLimitExceededError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
99
99
  /**
100
100
  * @see {@link CreatePaymentManagerCommand}
101
101
  */
102
- createPaymentManager(args: CreatePaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePaymentManagerCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
102
+ createPaymentManager(args: CreatePaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePaymentManagerCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
103
103
  /**
104
104
  * @see {@link CreatePolicyCommand}
105
105
  */
106
- createPolicy(args: CreatePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
106
+ createPolicy(args: CreatePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
107
107
  /**
108
108
  * @see {@link CreatePolicyEngineCommand}
109
109
  */
110
- createPolicyEngine(args: CreatePolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePolicyEngineCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
110
+ createPolicyEngine(args: CreatePolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePolicyEngineCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
111
111
  /**
112
112
  * @see {@link CreateRegistryCommand}
113
113
  */
114
- createRegistry(args: CreateRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateRegistryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
114
+ createRegistry(args: CreateRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateRegistryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
115
115
  /**
116
116
  * @see {@link CreateRegistryRecordCommand}
117
117
  */
118
- createRegistryRecord(args: CreateRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateRegistryRecordCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
118
+ createRegistryRecord(args: CreateRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateRegistryRecordCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
119
119
  /**
120
120
  * @see {@link CreateWorkloadIdentityCommand}
121
121
  */
122
- createWorkloadIdentity(args: CreateWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateWorkloadIdentityCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
122
+ createWorkloadIdentity(args: CreateWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateWorkloadIdentityCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
123
123
  /**
124
124
  * @see {@link DeleteAgentRuntimeCommand}
125
125
  */
126
- deleteAgentRuntime(args: DeleteAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAgentRuntimeCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
126
+ deleteAgentRuntime(args: DeleteAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAgentRuntimeCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
127
127
  /**
128
128
  * @see {@link DeleteAgentRuntimeEndpointCommand}
129
129
  */
130
- deleteAgentRuntimeEndpoint(args: DeleteAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAgentRuntimeEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
130
+ deleteAgentRuntimeEndpoint(args: DeleteAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAgentRuntimeEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
131
131
  /**
132
132
  * @see {@link DeleteApiKeyCredentialProviderCommand}
133
133
  */
134
- deleteApiKeyCredentialProvider(args: DeleteApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteApiKeyCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
134
+ deleteApiKeyCredentialProvider(args: DeleteApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteApiKeyCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
135
135
  /**
136
136
  * @see {@link DeleteBrowserCommand}
137
137
  */
138
- deleteBrowser(args: DeleteBrowserCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteBrowserCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
138
+ deleteBrowser(args: DeleteBrowserCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteBrowserCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
139
139
  /**
140
140
  * @see {@link DeleteBrowserProfileCommand}
141
141
  */
142
- deleteBrowserProfile(args: DeleteBrowserProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteBrowserProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
142
+ deleteBrowserProfile(args: DeleteBrowserProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteBrowserProfileCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
143
143
  /**
144
144
  * @see {@link DeleteCodeInterpreterCommand}
145
145
  */
146
- deleteCodeInterpreter(args: DeleteCodeInterpreterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCodeInterpreterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
146
+ deleteCodeInterpreter(args: DeleteCodeInterpreterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCodeInterpreterCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
147
147
  /**
148
148
  * @see {@link DeleteConfigurationBundleCommand}
149
149
  */
150
- deleteConfigurationBundle(args: DeleteConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationBundleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
150
+ deleteConfigurationBundle(args: DeleteConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteConfigurationBundleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
151
151
  /**
152
152
  * @see {@link DeleteDatasetCommand}
153
153
  */
154
- deleteDataset(args: DeleteDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDatasetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
154
+ deleteDataset(args: DeleteDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDatasetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
155
155
  /**
156
156
  * @see {@link DeleteDatasetExamplesCommand}
157
157
  */
158
- deleteDatasetExamples(args: DeleteDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDatasetExamplesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
158
+ deleteDatasetExamples(args: DeleteDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDatasetExamplesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
159
159
  /**
160
160
  * @see {@link DeleteEvaluatorCommand}
161
161
  */
162
- deleteEvaluator(args: DeleteEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEvaluatorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
162
+ deleteEvaluator(args: DeleteEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEvaluatorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
163
163
  /**
164
164
  * @see {@link DeleteGatewayCommand}
165
165
  */
166
- deleteGateway(args: DeleteGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGatewayCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
166
+ deleteGateway(args: DeleteGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGatewayCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
167
167
  /**
168
168
  * @see {@link DeleteGatewayRuleCommand}
169
169
  */
170
- deleteGatewayRule(args: DeleteGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGatewayRuleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
170
+ deleteGatewayRule(args: DeleteGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGatewayRuleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
171
171
  /**
172
172
  * @see {@link DeleteGatewayTargetCommand}
173
173
  */
174
- deleteGatewayTarget(args: DeleteGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGatewayTargetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
174
+ deleteGatewayTarget(args: DeleteGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGatewayTargetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
175
175
  /**
176
176
  * @see {@link DeleteHarnessCommand}
177
177
  */
178
- deleteHarness(args: DeleteHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteHarnessCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
178
+ deleteHarness(args: DeleteHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteHarnessCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
179
179
  /**
180
180
  * @see {@link DeleteHarnessEndpointCommand}
181
181
  */
182
- deleteHarnessEndpoint(args: DeleteHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteHarnessEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
182
+ deleteHarnessEndpoint(args: DeleteHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteHarnessEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
183
183
  /**
184
184
  * @see {@link DeleteMemoryCommand}
185
185
  */
186
- deleteMemory(args: DeleteMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteMemoryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
186
+ deleteMemory(args: DeleteMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteMemoryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
187
187
  /**
188
188
  * @see {@link DeleteOauth2CredentialProviderCommand}
189
189
  */
190
- deleteOauth2CredentialProvider(args: DeleteOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteOauth2CredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
190
+ deleteOauth2CredentialProvider(args: DeleteOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteOauth2CredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
191
191
  /**
192
192
  * @see {@link DeleteOnlineEvaluationConfigCommand}
193
193
  */
194
- deleteOnlineEvaluationConfig(args: DeleteOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteOnlineEvaluationConfigCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
194
+ deleteOnlineEvaluationConfig(args: DeleteOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteOnlineEvaluationConfigCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
195
195
  /**
196
196
  * @see {@link DeletePaymentConnectorCommand}
197
197
  */
198
- deletePaymentConnector(args: DeletePaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePaymentConnectorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
198
+ deletePaymentConnector(args: DeletePaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePaymentConnectorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
199
199
  /**
200
200
  * @see {@link DeletePaymentCredentialProviderCommand}
201
201
  */
202
- deletePaymentCredentialProvider(args: DeletePaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePaymentCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
202
+ deletePaymentCredentialProvider(args: DeletePaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePaymentCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
203
203
  /**
204
204
  * @see {@link DeletePaymentManagerCommand}
205
205
  */
206
- deletePaymentManager(args: DeletePaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePaymentManagerCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
206
+ deletePaymentManager(args: DeletePaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePaymentManagerCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError>;
207
207
  /**
208
208
  * @see {@link DeletePolicyCommand}
209
209
  */
210
- deletePolicy(args: DeletePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
210
+ deletePolicy(args: DeletePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
211
211
  /**
212
212
  * @see {@link DeletePolicyEngineCommand}
213
213
  */
214
- deletePolicyEngine(args: DeletePolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePolicyEngineCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
214
+ deletePolicyEngine(args: DeletePolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePolicyEngineCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
215
215
  /**
216
216
  * @see {@link DeleteRegistryCommand}
217
217
  */
218
- deleteRegistry(args: DeleteRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRegistryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
218
+ deleteRegistry(args: DeleteRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRegistryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
219
219
  /**
220
220
  * @see {@link DeleteRegistryRecordCommand}
221
221
  */
222
- deleteRegistryRecord(args: DeleteRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRegistryRecordCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
222
+ deleteRegistryRecord(args: DeleteRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteRegistryRecordCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
223
223
  /**
224
224
  * @see {@link DeleteResourcePolicyCommand}
225
225
  */
226
- deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteResourcePolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
226
+ deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteResourcePolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
227
227
  /**
228
228
  * @see {@link DeleteWorkloadIdentityCommand}
229
229
  */
230
- deleteWorkloadIdentity(args: DeleteWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteWorkloadIdentityCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
230
+ deleteWorkloadIdentity(args: DeleteWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteWorkloadIdentityCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
231
231
  /**
232
232
  * @see {@link GetAgentRuntimeCommand}
233
233
  */
234
- getAgentRuntime(args: GetAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAgentRuntimeCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
234
+ getAgentRuntime(args: GetAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAgentRuntimeCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
235
235
  /**
236
236
  * @see {@link GetAgentRuntimeEndpointCommand}
237
237
  */
238
- getAgentRuntimeEndpoint(args: GetAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAgentRuntimeEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
238
+ getAgentRuntimeEndpoint(args: GetAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAgentRuntimeEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
239
239
  /**
240
240
  * @see {@link GetApiKeyCredentialProviderCommand}
241
241
  */
242
- getApiKeyCredentialProvider(args: GetApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApiKeyCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | DecryptionError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
242
+ getApiKeyCredentialProvider(args: GetApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApiKeyCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | DecryptionError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
243
243
  /**
244
244
  * @see {@link GetBrowserCommand}
245
245
  */
246
- getBrowser(args: GetBrowserCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBrowserCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError>;
246
+ getBrowser(args: GetBrowserCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBrowserCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError>;
247
247
  /**
248
248
  * @see {@link GetBrowserProfileCommand}
249
249
  */
250
- getBrowserProfile(args: GetBrowserProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBrowserProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
250
+ getBrowserProfile(args: GetBrowserProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetBrowserProfileCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
251
251
  /**
252
252
  * @see {@link GetCodeInterpreterCommand}
253
253
  */
254
- getCodeInterpreter(args: GetCodeInterpreterCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCodeInterpreterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError>;
254
+ getCodeInterpreter(args: GetCodeInterpreterCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCodeInterpreterCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError>;
255
255
  /**
256
256
  * @see {@link GetConfigurationBundleCommand}
257
257
  */
258
- getConfigurationBundle(args: GetConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetConfigurationBundleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
258
+ getConfigurationBundle(args: GetConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetConfigurationBundleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
259
259
  /**
260
260
  * @see {@link GetConfigurationBundleVersionCommand}
261
261
  */
262
- getConfigurationBundleVersion(args: GetConfigurationBundleVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetConfigurationBundleVersionCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
262
+ getConfigurationBundleVersion(args: GetConfigurationBundleVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetConfigurationBundleVersionCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
263
263
  /**
264
264
  * @see {@link GetDatasetCommand}
265
265
  */
266
- getDataset(args: GetDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDatasetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
266
+ getDataset(args: GetDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDatasetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
267
267
  /**
268
268
  * @see {@link GetEvaluatorCommand}
269
269
  */
270
- getEvaluator(args: GetEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEvaluatorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
270
+ getEvaluator(args: GetEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEvaluatorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
271
271
  /**
272
272
  * @see {@link GetGatewayCommand}
273
273
  */
274
- getGateway(args: GetGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGatewayCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
274
+ getGateway(args: GetGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGatewayCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
275
275
  /**
276
276
  * @see {@link GetGatewayRuleCommand}
277
277
  */
278
- getGatewayRule(args: GetGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGatewayRuleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
278
+ getGatewayRule(args: GetGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGatewayRuleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
279
279
  /**
280
280
  * @see {@link GetGatewayTargetCommand}
281
281
  */
282
- getGatewayTarget(args: GetGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGatewayTargetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
282
+ getGatewayTarget(args: GetGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGatewayTargetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
283
283
  /**
284
284
  * @see {@link GetHarnessCommand}
285
285
  */
286
- getHarness(args: GetHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetHarnessCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
286
+ getHarness(args: GetHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetHarnessCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
287
287
  /**
288
288
  * @see {@link GetHarnessEndpointCommand}
289
289
  */
290
- getHarnessEndpoint(args: GetHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetHarnessEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
290
+ getHarnessEndpoint(args: GetHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetHarnessEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
291
291
  /**
292
292
  * @see {@link GetMemoryCommand}
293
293
  */
294
- getMemory(args: GetMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetMemoryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
294
+ getMemory(args: GetMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetMemoryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
295
295
  /**
296
296
  * @see {@link GetOauth2CredentialProviderCommand}
297
297
  */
298
- getOauth2CredentialProvider(args: GetOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetOauth2CredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | DecryptionError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
298
+ getOauth2CredentialProvider(args: GetOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetOauth2CredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | DecryptionError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
299
299
  /**
300
300
  * @see {@link GetOnlineEvaluationConfigCommand}
301
301
  */
302
- getOnlineEvaluationConfig(args: GetOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetOnlineEvaluationConfigCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
302
+ getOnlineEvaluationConfig(args: GetOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetOnlineEvaluationConfigCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
303
303
  /**
304
304
  * @see {@link GetPaymentConnectorCommand}
305
305
  */
306
- getPaymentConnector(args: GetPaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPaymentConnectorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
306
+ getPaymentConnector(args: GetPaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPaymentConnectorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
307
307
  /**
308
308
  * @see {@link GetPaymentCredentialProviderCommand}
309
309
  */
310
- getPaymentCredentialProvider(args: GetPaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPaymentCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | DecryptionError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
310
+ getPaymentCredentialProvider(args: GetPaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPaymentCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | DecryptionError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
311
311
  /**
312
312
  * @see {@link GetPaymentManagerCommand}
313
313
  */
314
- getPaymentManager(args: GetPaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPaymentManagerCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
314
+ getPaymentManager(args: GetPaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPaymentManagerCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
315
315
  /**
316
316
  * @see {@link GetPolicyCommand}
317
317
  */
318
- getPolicy(args: GetPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
318
+ getPolicy(args: GetPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
319
319
  /**
320
320
  * @see {@link GetPolicyEngineCommand}
321
321
  */
322
- getPolicyEngine(args: GetPolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyEngineCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
322
+ getPolicyEngine(args: GetPolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyEngineCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
323
323
  /**
324
324
  * @see {@link GetPolicyEngineSummaryCommand}
325
325
  */
326
- getPolicyEngineSummary(args: GetPolicyEngineSummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyEngineSummaryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
326
+ getPolicyEngineSummary(args: GetPolicyEngineSummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyEngineSummaryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
327
327
  /**
328
328
  * @see {@link GetPolicyGenerationCommand}
329
329
  */
330
- getPolicyGeneration(args: GetPolicyGenerationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyGenerationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
330
+ getPolicyGeneration(args: GetPolicyGenerationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyGenerationCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
331
331
  /**
332
332
  * @see {@link GetPolicyGenerationSummaryCommand}
333
333
  */
334
- getPolicyGenerationSummary(args: GetPolicyGenerationSummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyGenerationSummaryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
334
+ getPolicyGenerationSummary(args: GetPolicyGenerationSummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyGenerationSummaryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
335
335
  /**
336
336
  * @see {@link GetPolicySummaryCommand}
337
337
  */
338
- getPolicySummary(args: GetPolicySummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicySummaryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
338
+ getPolicySummary(args: GetPolicySummaryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicySummaryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
339
339
  /**
340
340
  * @see {@link GetRegistryCommand}
341
341
  */
342
- getRegistry(args: GetRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRegistryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
342
+ getRegistry(args: GetRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRegistryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
343
343
  /**
344
344
  * @see {@link GetRegistryRecordCommand}
345
345
  */
346
- getRegistryRecord(args: GetRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRegistryRecordCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
346
+ getRegistryRecord(args: GetRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRegistryRecordCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
347
347
  /**
348
348
  * @see {@link GetResourcePolicyCommand}
349
349
  */
350
- getResourcePolicy(args: GetResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetResourcePolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
350
+ getResourcePolicy(args: GetResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetResourcePolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
351
351
  /**
352
352
  * @see {@link GetTokenVaultCommand}
353
353
  */
354
- getTokenVault(args: GetTokenVaultCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTokenVaultCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
354
+ getTokenVault(args: GetTokenVaultCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetTokenVaultCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
355
355
  /**
356
356
  * @see {@link GetWorkloadIdentityCommand}
357
357
  */
358
- getWorkloadIdentity(args: GetWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetWorkloadIdentityCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
358
+ getWorkloadIdentity(args: GetWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetWorkloadIdentityCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
359
359
  /**
360
360
  * @see {@link ListAgentRuntimeEndpointsCommand}
361
361
  */
362
- listAgentRuntimeEndpoints(args: ListAgentRuntimeEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAgentRuntimeEndpointsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
363
- listAgentRuntimeEndpointsStream(args: ListAgentRuntimeEndpointsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimeEndpointsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
362
+ listAgentRuntimeEndpoints(args: ListAgentRuntimeEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAgentRuntimeEndpointsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
363
+ listAgentRuntimeEndpointsStream(args: ListAgentRuntimeEndpointsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimeEndpointsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
364
364
  /**
365
365
  * @see {@link ListAgentRuntimeVersionsCommand}
366
366
  */
367
- listAgentRuntimeVersions(args: ListAgentRuntimeVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAgentRuntimeVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
368
- listAgentRuntimeVersionsStream(args: ListAgentRuntimeVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimeVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
367
+ listAgentRuntimeVersions(args: ListAgentRuntimeVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAgentRuntimeVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
368
+ listAgentRuntimeVersionsStream(args: ListAgentRuntimeVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimeVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
369
369
  /**
370
370
  * @see {@link ListAgentRuntimesCommand}
371
371
  */
372
- listAgentRuntimes(args: ListAgentRuntimesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAgentRuntimesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
373
- listAgentRuntimesStream(args: ListAgentRuntimesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
372
+ listAgentRuntimes(args: ListAgentRuntimesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAgentRuntimesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
373
+ listAgentRuntimesStream(args: ListAgentRuntimesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
374
374
  /**
375
375
  * @see {@link ListApiKeyCredentialProvidersCommand}
376
376
  */
377
- listApiKeyCredentialProviders(args: ListApiKeyCredentialProvidersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListApiKeyCredentialProvidersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
378
- listApiKeyCredentialProvidersStream(args: ListApiKeyCredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListApiKeyCredentialProvidersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
377
+ listApiKeyCredentialProviders(args: ListApiKeyCredentialProvidersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListApiKeyCredentialProvidersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
378
+ listApiKeyCredentialProvidersStream(args: ListApiKeyCredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListApiKeyCredentialProvidersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
379
379
  /**
380
380
  * @see {@link ListBrowserProfilesCommand}
381
381
  */
382
- listBrowserProfiles(args: ListBrowserProfilesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListBrowserProfilesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
383
- listBrowserProfilesStream(args: ListBrowserProfilesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListBrowserProfilesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
382
+ listBrowserProfiles(args: ListBrowserProfilesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListBrowserProfilesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
383
+ listBrowserProfilesStream(args: ListBrowserProfilesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListBrowserProfilesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
384
384
  /**
385
385
  * @see {@link ListBrowsersCommand}
386
386
  */
387
- listBrowsers(args: ListBrowsersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListBrowsersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
388
- listBrowsersStream(args: ListBrowsersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListBrowsersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
387
+ listBrowsers(args: ListBrowsersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListBrowsersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
388
+ listBrowsersStream(args: ListBrowsersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListBrowsersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
389
389
  /**
390
390
  * @see {@link ListCodeInterpretersCommand}
391
391
  */
392
- listCodeInterpreters(args: ListCodeInterpretersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCodeInterpretersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
393
- listCodeInterpretersStream(args: ListCodeInterpretersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListCodeInterpretersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
392
+ listCodeInterpreters(args: ListCodeInterpretersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCodeInterpretersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
393
+ listCodeInterpretersStream(args: ListCodeInterpretersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListCodeInterpretersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
394
394
  /**
395
395
  * @see {@link ListConfigurationBundleVersionsCommand}
396
396
  */
397
- listConfigurationBundleVersions(args: ListConfigurationBundleVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationBundleVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
398
- listConfigurationBundleVersionsStream(args: ListConfigurationBundleVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListConfigurationBundleVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
397
+ listConfigurationBundleVersions(args: ListConfigurationBundleVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationBundleVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
398
+ listConfigurationBundleVersionsStream(args: ListConfigurationBundleVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListConfigurationBundleVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
399
399
  /**
400
400
  * @see {@link ListConfigurationBundlesCommand}
401
401
  */
402
- listConfigurationBundles(args: ListConfigurationBundlesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationBundlesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
403
- listConfigurationBundlesStream(args: ListConfigurationBundlesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListConfigurationBundlesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
402
+ listConfigurationBundles(args: ListConfigurationBundlesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListConfigurationBundlesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
403
+ listConfigurationBundlesStream(args: ListConfigurationBundlesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListConfigurationBundlesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
404
404
  /**
405
405
  * @see {@link ListDatasetExamplesCommand}
406
406
  */
407
- listDatasetExamples(args: ListDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatasetExamplesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
408
- listDatasetExamplesStream(args: ListDatasetExamplesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetExamplesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
407
+ listDatasetExamples(args: ListDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatasetExamplesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
408
+ listDatasetExamplesStream(args: ListDatasetExamplesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetExamplesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
409
409
  /**
410
410
  * @see {@link ListDatasetVersionsCommand}
411
411
  */
412
- listDatasetVersions(args: ListDatasetVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatasetVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
413
- listDatasetVersionsStream(args: ListDatasetVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
412
+ listDatasetVersions(args: ListDatasetVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatasetVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
413
+ listDatasetVersionsStream(args: ListDatasetVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
414
414
  /**
415
415
  * @see {@link ListDatasetsCommand}
416
416
  */
417
- listDatasets(args: ListDatasetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatasetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
418
- listDatasetsStream(args: ListDatasetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
417
+ listDatasets(args: ListDatasetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDatasetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
418
+ listDatasetsStream(args: ListDatasetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
419
419
  /**
420
420
  * @see {@link ListEvaluatorsCommand}
421
421
  */
422
- listEvaluators(args: ListEvaluatorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEvaluatorsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
423
- listEvaluatorsStream(args: ListEvaluatorsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListEvaluatorsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
422
+ listEvaluators(args: ListEvaluatorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEvaluatorsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
423
+ listEvaluatorsStream(args: ListEvaluatorsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListEvaluatorsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
424
424
  /**
425
425
  * @see {@link ListGatewayRulesCommand}
426
426
  */
427
- listGatewayRules(args: ListGatewayRulesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGatewayRulesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
428
- listGatewayRulesStream(args: ListGatewayRulesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewayRulesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
427
+ listGatewayRules(args: ListGatewayRulesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGatewayRulesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
428
+ listGatewayRulesStream(args: ListGatewayRulesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewayRulesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
429
429
  /**
430
430
  * @see {@link ListGatewayTargetsCommand}
431
431
  */
432
- listGatewayTargets(args: ListGatewayTargetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGatewayTargetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
433
- listGatewayTargetsStream(args: ListGatewayTargetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewayTargetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
432
+ listGatewayTargets(args: ListGatewayTargetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGatewayTargetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
433
+ listGatewayTargetsStream(args: ListGatewayTargetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewayTargetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
434
434
  /**
435
435
  * @see {@link ListGatewaysCommand}
436
436
  */
437
- listGateways(args: ListGatewaysCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGatewaysCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
438
- listGatewaysStream(args: ListGatewaysCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewaysCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
437
+ listGateways(args: ListGatewaysCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGatewaysCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
438
+ listGatewaysStream(args: ListGatewaysCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewaysCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
439
439
  /**
440
440
  * @see {@link ListHarnessEndpointsCommand}
441
441
  */
442
- listHarnessEndpoints(args: ListHarnessEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHarnessEndpointsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
443
- listHarnessEndpointsStream(args: ListHarnessEndpointsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessEndpointsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
442
+ listHarnessEndpoints(args: ListHarnessEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHarnessEndpointsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
443
+ listHarnessEndpointsStream(args: ListHarnessEndpointsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessEndpointsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
444
444
  /**
445
445
  * @see {@link ListHarnessVersionsCommand}
446
446
  */
447
- listHarnessVersions(args: ListHarnessVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHarnessVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
448
- listHarnessVersionsStream(args: ListHarnessVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessVersionsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
447
+ listHarnessVersions(args: ListHarnessVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHarnessVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
448
+ listHarnessVersionsStream(args: ListHarnessVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessVersionsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
449
449
  /**
450
450
  * @see {@link ListHarnessesCommand}
451
451
  */
452
- listHarnesses(args: ListHarnessesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHarnessesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
453
- listHarnessesStream(args: ListHarnessesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
452
+ listHarnesses(args: ListHarnessesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListHarnessesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
453
+ listHarnessesStream(args: ListHarnessesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
454
454
  /**
455
455
  * @see {@link ListMemoriesCommand}
456
456
  */
457
- listMemories(args: ListMemoriesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMemoriesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
458
- listMemoriesStream(args: ListMemoriesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListMemoriesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
457
+ listMemories(args: ListMemoriesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMemoriesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
458
+ listMemoriesStream(args: ListMemoriesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListMemoriesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ResourceNotFoundError | ServiceError | ThrottledError | ValidationError>;
459
459
  /**
460
460
  * @see {@link ListOauth2CredentialProvidersCommand}
461
461
  */
462
- listOauth2CredentialProviders(args: ListOauth2CredentialProvidersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOauth2CredentialProvidersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
463
- listOauth2CredentialProvidersStream(args: ListOauth2CredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListOauth2CredentialProvidersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
462
+ listOauth2CredentialProviders(args: ListOauth2CredentialProvidersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOauth2CredentialProvidersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
463
+ listOauth2CredentialProvidersStream(args: ListOauth2CredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListOauth2CredentialProvidersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
464
464
  /**
465
465
  * @see {@link ListOnlineEvaluationConfigsCommand}
466
466
  */
467
- listOnlineEvaluationConfigs(args: ListOnlineEvaluationConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOnlineEvaluationConfigsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
468
- listOnlineEvaluationConfigsStream(args: ListOnlineEvaluationConfigsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListOnlineEvaluationConfigsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
467
+ listOnlineEvaluationConfigs(args: ListOnlineEvaluationConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListOnlineEvaluationConfigsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
468
+ listOnlineEvaluationConfigsStream(args: ListOnlineEvaluationConfigsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListOnlineEvaluationConfigsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
469
469
  /**
470
470
  * @see {@link ListPaymentConnectorsCommand}
471
471
  */
472
- listPaymentConnectors(args: ListPaymentConnectorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPaymentConnectorsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
473
- listPaymentConnectorsStream(args: ListPaymentConnectorsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentConnectorsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
472
+ listPaymentConnectors(args: ListPaymentConnectorsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPaymentConnectorsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
473
+ listPaymentConnectorsStream(args: ListPaymentConnectorsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentConnectorsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
474
474
  /**
475
475
  * @see {@link ListPaymentCredentialProvidersCommand}
476
476
  */
477
- listPaymentCredentialProviders(args: ListPaymentCredentialProvidersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPaymentCredentialProvidersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
478
- listPaymentCredentialProvidersStream(args: ListPaymentCredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentCredentialProvidersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
477
+ listPaymentCredentialProviders(args: ListPaymentCredentialProvidersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPaymentCredentialProvidersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
478
+ listPaymentCredentialProvidersStream(args: ListPaymentCredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentCredentialProvidersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
479
479
  /**
480
480
  * @see {@link ListPaymentManagersCommand}
481
481
  */
482
- listPaymentManagers(args: ListPaymentManagersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPaymentManagersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
483
- listPaymentManagersStream(args: ListPaymentManagersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentManagersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
482
+ listPaymentManagers(args: ListPaymentManagersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPaymentManagersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
483
+ listPaymentManagersStream(args: ListPaymentManagersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentManagersCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
484
484
  /**
485
485
  * @see {@link ListPoliciesCommand}
486
486
  */
487
- listPolicies(args: ListPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPoliciesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
488
- listPoliciesStream(args: ListPoliciesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPoliciesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
487
+ listPolicies(args: ListPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPoliciesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
488
+ listPoliciesStream(args: ListPoliciesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPoliciesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
489
489
  /**
490
490
  * @see {@link ListPolicyEngineSummariesCommand}
491
491
  */
492
- listPolicyEngineSummaries(args: ListPolicyEngineSummariesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyEngineSummariesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
493
- listPolicyEngineSummariesStream(args: ListPolicyEngineSummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyEngineSummariesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
492
+ listPolicyEngineSummaries(args: ListPolicyEngineSummariesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyEngineSummariesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
493
+ listPolicyEngineSummariesStream(args: ListPolicyEngineSummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyEngineSummariesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
494
494
  /**
495
495
  * @see {@link ListPolicyEnginesCommand}
496
496
  */
497
- listPolicyEngines(args: ListPolicyEnginesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyEnginesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
498
- listPolicyEnginesStream(args: ListPolicyEnginesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyEnginesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
497
+ listPolicyEngines(args: ListPolicyEnginesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyEnginesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
498
+ listPolicyEnginesStream(args: ListPolicyEnginesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyEnginesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
499
499
  /**
500
500
  * @see {@link ListPolicyGenerationAssetsCommand}
501
501
  */
502
- listPolicyGenerationAssets(args: ListPolicyGenerationAssetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyGenerationAssetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
503
- listPolicyGenerationAssetsStream(args: ListPolicyGenerationAssetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationAssetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
502
+ listPolicyGenerationAssets(args: ListPolicyGenerationAssetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyGenerationAssetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
503
+ listPolicyGenerationAssetsStream(args: ListPolicyGenerationAssetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationAssetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
504
504
  /**
505
505
  * @see {@link ListPolicyGenerationSummariesCommand}
506
506
  */
507
- listPolicyGenerationSummaries(args: ListPolicyGenerationSummariesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyGenerationSummariesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
508
- listPolicyGenerationSummariesStream(args: ListPolicyGenerationSummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationSummariesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
507
+ listPolicyGenerationSummaries(args: ListPolicyGenerationSummariesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyGenerationSummariesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
508
+ listPolicyGenerationSummariesStream(args: ListPolicyGenerationSummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationSummariesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
509
509
  /**
510
510
  * @see {@link ListPolicyGenerationsCommand}
511
511
  */
512
- listPolicyGenerations(args: ListPolicyGenerationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyGenerationsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
513
- listPolicyGenerationsStream(args: ListPolicyGenerationsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
512
+ listPolicyGenerations(args: ListPolicyGenerationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicyGenerationsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
513
+ listPolicyGenerationsStream(args: ListPolicyGenerationsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
514
514
  /**
515
515
  * @see {@link ListPolicySummariesCommand}
516
516
  */
517
- listPolicySummaries(args: ListPolicySummariesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicySummariesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
518
- listPolicySummariesStream(args: ListPolicySummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicySummariesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
517
+ listPolicySummaries(args: ListPolicySummariesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPolicySummariesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
518
+ listPolicySummariesStream(args: ListPolicySummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicySummariesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
519
519
  /**
520
520
  * @see {@link ListRegistriesCommand}
521
521
  */
522
- listRegistries(args: ListRegistriesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListRegistriesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
523
- listRegistriesStream(args: ListRegistriesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListRegistriesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
522
+ listRegistries(args: ListRegistriesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListRegistriesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
523
+ listRegistriesStream(args: ListRegistriesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListRegistriesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
524
524
  /**
525
525
  * @see {@link ListRegistryRecordsCommand}
526
526
  */
527
- listRegistryRecords(args: ListRegistryRecordsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListRegistryRecordsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
528
- listRegistryRecordsStream(args: ListRegistryRecordsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListRegistryRecordsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
527
+ listRegistryRecords(args: ListRegistryRecordsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListRegistryRecordsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
528
+ listRegistryRecordsStream(args: ListRegistryRecordsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListRegistryRecordsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
529
529
  /**
530
530
  * @see {@link ListTagsForResourceCommand}
531
531
  */
532
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
532
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
533
533
  /**
534
534
  * @see {@link ListWorkloadIdentitiesCommand}
535
535
  */
536
- listWorkloadIdentities(args: ListWorkloadIdentitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListWorkloadIdentitiesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
537
- listWorkloadIdentitiesStream(args: ListWorkloadIdentitiesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListWorkloadIdentitiesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
536
+ listWorkloadIdentities(args: ListWorkloadIdentitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListWorkloadIdentitiesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
537
+ listWorkloadIdentitiesStream(args: ListWorkloadIdentitiesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListWorkloadIdentitiesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
538
538
  /**
539
539
  * @see {@link PutResourcePolicyCommand}
540
540
  */
541
- putResourcePolicy(args: PutResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutResourcePolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
541
+ putResourcePolicy(args: PutResourcePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutResourcePolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
542
542
  /**
543
543
  * @see {@link SetTokenVaultCMKCommand}
544
544
  */
545
- setTokenVaultCMK(args: SetTokenVaultCMKCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTokenVaultCMKCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConcurrentModificationError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
545
+ setTokenVaultCMK(args: SetTokenVaultCMKCommandInput, options?: HttpHandlerOptions): Effect.Effect<SetTokenVaultCMKCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConcurrentModificationError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
546
546
  /**
547
547
  * @see {@link StartPolicyGenerationCommand}
548
548
  */
549
- startPolicyGeneration(args: StartPolicyGenerationCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartPolicyGenerationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
549
+ startPolicyGeneration(args: StartPolicyGenerationCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartPolicyGenerationCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
550
550
  /**
551
551
  * @see {@link SubmitRegistryRecordForApprovalCommand}
552
552
  */
553
- submitRegistryRecordForApproval(args: SubmitRegistryRecordForApprovalCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubmitRegistryRecordForApprovalCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
553
+ submitRegistryRecordForApproval(args: SubmitRegistryRecordForApprovalCommandInput, options?: HttpHandlerOptions): Effect.Effect<SubmitRegistryRecordForApprovalCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
554
554
  /**
555
555
  * @see {@link SynchronizeGatewayTargetsCommand}
556
556
  */
557
- synchronizeGatewayTargets(args: SynchronizeGatewayTargetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<SynchronizeGatewayTargetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
557
+ synchronizeGatewayTargets(args: SynchronizeGatewayTargetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<SynchronizeGatewayTargetsCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
558
558
  /**
559
559
  * @see {@link TagResourceCommand}
560
560
  */
561
- tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
561
+ tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
562
562
  /**
563
563
  * @see {@link UntagResourceCommand}
564
564
  */
565
- untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
565
+ untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
566
566
  /**
567
567
  * @see {@link UpdateAgentRuntimeCommand}
568
568
  */
569
- updateAgentRuntime(args: UpdateAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAgentRuntimeCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
569
+ updateAgentRuntime(args: UpdateAgentRuntimeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAgentRuntimeCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
570
570
  /**
571
571
  * @see {@link UpdateAgentRuntimeEndpointCommand}
572
572
  */
573
- updateAgentRuntimeEndpoint(args: UpdateAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAgentRuntimeEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
573
+ updateAgentRuntimeEndpoint(args: UpdateAgentRuntimeEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAgentRuntimeEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
574
574
  /**
575
575
  * @see {@link UpdateApiKeyCredentialProviderCommand}
576
576
  */
577
- updateApiKeyCredentialProvider(args: UpdateApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateApiKeyCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
577
+ updateApiKeyCredentialProvider(args: UpdateApiKeyCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateApiKeyCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
578
578
  /**
579
579
  * @see {@link UpdateConfigurationBundleCommand}
580
580
  */
581
- updateConfigurationBundle(args: UpdateConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationBundleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
581
+ updateConfigurationBundle(args: UpdateConfigurationBundleCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateConfigurationBundleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
582
582
  /**
583
583
  * @see {@link UpdateDatasetCommand}
584
584
  */
585
- updateDataset(args: UpdateDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDatasetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
585
+ updateDataset(args: UpdateDatasetCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDatasetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
586
586
  /**
587
587
  * @see {@link UpdateDatasetExamplesCommand}
588
588
  */
589
- updateDatasetExamples(args: UpdateDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDatasetExamplesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
589
+ updateDatasetExamples(args: UpdateDatasetExamplesCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDatasetExamplesCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
590
590
  /**
591
591
  * @see {@link UpdateEvaluatorCommand}
592
592
  */
593
- updateEvaluator(args: UpdateEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateEvaluatorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
593
+ updateEvaluator(args: UpdateEvaluatorCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateEvaluatorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
594
594
  /**
595
595
  * @see {@link UpdateGatewayCommand}
596
596
  */
597
- updateGateway(args: UpdateGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGatewayCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
597
+ updateGateway(args: UpdateGatewayCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGatewayCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
598
598
  /**
599
599
  * @see {@link UpdateGatewayRuleCommand}
600
600
  */
601
- updateGatewayRule(args: UpdateGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGatewayRuleCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
601
+ updateGatewayRule(args: UpdateGatewayRuleCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGatewayRuleCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
602
602
  /**
603
603
  * @see {@link UpdateGatewayTargetCommand}
604
604
  */
605
- updateGatewayTarget(args: UpdateGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGatewayTargetCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
605
+ updateGatewayTarget(args: UpdateGatewayTargetCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGatewayTargetCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
606
606
  /**
607
607
  * @see {@link UpdateHarnessCommand}
608
608
  */
609
- updateHarness(args: UpdateHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateHarnessCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
609
+ updateHarness(args: UpdateHarnessCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateHarnessCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
610
610
  /**
611
611
  * @see {@link UpdateHarnessEndpointCommand}
612
612
  */
613
- updateHarnessEndpoint(args: UpdateHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateHarnessEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
613
+ updateHarnessEndpoint(args: UpdateHarnessEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateHarnessEndpointCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
614
614
  /**
615
615
  * @see {@link UpdateMemoryCommand}
616
616
  */
617
- updateMemory(args: UpdateMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMemoryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceError | ServiceQuotaExceededError | ThrottledError | ValidationError>;
617
+ updateMemory(args: UpdateMemoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMemoryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | ResourceNotFoundError | ServiceError | ServiceQuotaExceededError | ThrottledError | ValidationError>;
618
618
  /**
619
619
  * @see {@link UpdateOauth2CredentialProviderCommand}
620
620
  */
621
- updateOauth2CredentialProvider(args: UpdateOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateOauth2CredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
621
+ updateOauth2CredentialProvider(args: UpdateOauth2CredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateOauth2CredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
622
622
  /**
623
623
  * @see {@link UpdateOnlineEvaluationConfigCommand}
624
624
  */
625
- updateOnlineEvaluationConfig(args: UpdateOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateOnlineEvaluationConfigCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
625
+ updateOnlineEvaluationConfig(args: UpdateOnlineEvaluationConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateOnlineEvaluationConfigCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
626
626
  /**
627
627
  * @see {@link UpdatePaymentConnectorCommand}
628
628
  */
629
- updatePaymentConnector(args: UpdatePaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePaymentConnectorCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
629
+ updatePaymentConnector(args: UpdatePaymentConnectorCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePaymentConnectorCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
630
630
  /**
631
631
  * @see {@link UpdatePaymentCredentialProviderCommand}
632
632
  */
633
- updatePaymentCredentialProvider(args: UpdatePaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePaymentCredentialProviderCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
633
+ updatePaymentCredentialProvider(args: UpdatePaymentCredentialProviderCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePaymentCredentialProviderCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | DecryptionError | EncryptionError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | UnauthorizedError | ValidationError>;
634
634
  /**
635
635
  * @see {@link UpdatePaymentManagerCommand}
636
636
  */
637
- updatePaymentManager(args: UpdatePaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePaymentManagerCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
637
+ updatePaymentManager(args: UpdatePaymentManagerCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePaymentManagerCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
638
638
  /**
639
639
  * @see {@link UpdatePolicyCommand}
640
640
  */
641
- updatePolicy(args: UpdatePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
641
+ updatePolicy(args: UpdatePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePolicyCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
642
642
  /**
643
643
  * @see {@link UpdatePolicyEngineCommand}
644
644
  */
645
- updatePolicyEngine(args: UpdatePolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePolicyEngineCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
645
+ updatePolicyEngine(args: UpdatePolicyEngineCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePolicyEngineCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
646
646
  /**
647
647
  * @see {@link UpdateRegistryCommand}
648
648
  */
649
- updateRegistry(args: UpdateRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRegistryCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
649
+ updateRegistry(args: UpdateRegistryCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRegistryCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
650
650
  /**
651
651
  * @see {@link UpdateRegistryRecordCommand}
652
652
  */
653
- updateRegistryRecord(args: UpdateRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRegistryRecordCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
653
+ updateRegistryRecord(args: UpdateRegistryRecordCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRegistryRecordCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
654
654
  /**
655
655
  * @see {@link UpdateRegistryRecordStatusCommand}
656
656
  */
657
- updateRegistryRecordStatus(args: UpdateRegistryRecordStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRegistryRecordStatusCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
657
+ updateRegistryRecordStatus(args: UpdateRegistryRecordStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateRegistryRecordStatusCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
658
658
  /**
659
659
  * @see {@link UpdateWorkloadIdentityCommand}
660
660
  */
661
- updateWorkloadIdentity(args: UpdateWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateWorkloadIdentityCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
661
+ updateWorkloadIdentity(args: UpdateWorkloadIdentityCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateWorkloadIdentityCommandOutput, Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | UnauthorizedError | ValidationError>;
662
662
  }
663
663
  /**
664
664
  * @since 1.0.0
665
665
  * @category constructors
666
666
  */
667
667
  export declare const makeBedrockAgentCoreControlService: Effect.Effect<BedrockAgentCoreControlService$, never, Instance.BedrockAgentCoreControlClientInstance>;
668
- declare const BedrockAgentCoreControlService_base: import("effect/Context").TagClass<BedrockAgentCoreControlService, "@effect-aws/client-bedrock-agentcore-control/BedrockAgentCoreControlService", BedrockAgentCoreControlService$> & Effect.Tag.Proxy<BedrockAgentCoreControlService, BedrockAgentCoreControlService$> & {
669
- use: <X>(body: (_: BedrockAgentCoreControlService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, BedrockAgentCoreControlService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, BedrockAgentCoreControlService> : Effect.Effect<X, never, BedrockAgentCoreControlService>;
670
- };
668
+ declare const BedrockAgentCoreControlService_base: Context.ServiceClass<BedrockAgentCoreControlService, "@effect-aws/client-bedrock-agentcore-control/BedrockAgentCoreControlService", BedrockAgentCoreControlService$>;
671
669
  /**
672
670
  * @since 1.0.0
673
671
  * @category models