@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.
- package/README.md +3 -3
- package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts +1 -1
- package/dist/dts/BedrockAgentCoreControlClientInstance.d.ts.map +1 -1
- package/dist/dts/BedrockAgentCoreControlService.d.ts +191 -193
- package/dist/dts/BedrockAgentCoreControlService.d.ts.map +1 -1
- package/dist/dts/BedrockAgentCoreControlServiceConfig.d.ts.map +1 -1
- package/dist/esm/BedrockAgentCoreControlClientInstance.js +2 -2
- package/dist/esm/BedrockAgentCoreControlClientInstance.js.map +1 -1
- package/dist/esm/BedrockAgentCoreControlService.js +2 -1
- package/dist/esm/BedrockAgentCoreControlService.js.map +1 -1
- package/dist/esm/BedrockAgentCoreControlServiceConfig.js +5 -6
- package/dist/esm/BedrockAgentCoreControlServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/BedrockAgentCoreControlClientInstance.ts +6 -4
- package/src/BedrockAgentCoreControlService.ts +194 -197
- package/src/BedrockAgentCoreControlServiceConfig.ts +6 -7
- package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts +0 -26
- package/dist/cjs/BedrockAgentCoreControlClientInstance.d.ts.map +0 -1
- package/dist/cjs/BedrockAgentCoreControlClientInstance.js +0 -52
- package/dist/cjs/BedrockAgentCoreControlClientInstance.js.map +0 -1
- package/dist/cjs/BedrockAgentCoreControlService.d.ts +0 -696
- package/dist/cjs/BedrockAgentCoreControlService.d.ts.map +0 -1
- package/dist/cjs/BedrockAgentCoreControlService.js +0 -250
- package/dist/cjs/BedrockAgentCoreControlService.js.map +0 -1
- package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts +0 -26
- package/dist/cjs/BedrockAgentCoreControlServiceConfig.d.ts.map +0 -1
- package/dist/cjs/BedrockAgentCoreControlServiceConfig.js +0 -60
- package/dist/cjs/BedrockAgentCoreControlServiceConfig.js.map +0 -1
- package/dist/cjs/Errors.d.ts +0 -21
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -20
- package/dist/cjs/Errors.js.map +0 -1
- package/dist/cjs/index.d.ts +0 -44
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -56
- 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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
363
|
-
listAgentRuntimeEndpointsStream(args: ListAgentRuntimeEndpointsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimeEndpointsCommandOutput, Cause.
|
|
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.
|
|
368
|
-
listAgentRuntimeVersionsStream(args: ListAgentRuntimeVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimeVersionsCommandOutput, Cause.
|
|
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.
|
|
373
|
-
listAgentRuntimesStream(args: ListAgentRuntimesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListAgentRuntimesCommandOutput, Cause.
|
|
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.
|
|
378
|
-
listApiKeyCredentialProvidersStream(args: ListApiKeyCredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListApiKeyCredentialProvidersCommandOutput, Cause.
|
|
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.
|
|
383
|
-
listBrowserProfilesStream(args: ListBrowserProfilesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListBrowserProfilesCommandOutput, Cause.
|
|
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.
|
|
388
|
-
listBrowsersStream(args: ListBrowsersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListBrowsersCommandOutput, Cause.
|
|
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.
|
|
393
|
-
listCodeInterpretersStream(args: ListCodeInterpretersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListCodeInterpretersCommandOutput, Cause.
|
|
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.
|
|
398
|
-
listConfigurationBundleVersionsStream(args: ListConfigurationBundleVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListConfigurationBundleVersionsCommandOutput, Cause.
|
|
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.
|
|
403
|
-
listConfigurationBundlesStream(args: ListConfigurationBundlesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListConfigurationBundlesCommandOutput, Cause.
|
|
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.
|
|
408
|
-
listDatasetExamplesStream(args: ListDatasetExamplesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetExamplesCommandOutput, Cause.
|
|
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.
|
|
413
|
-
listDatasetVersionsStream(args: ListDatasetVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetVersionsCommandOutput, Cause.
|
|
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.
|
|
418
|
-
listDatasetsStream(args: ListDatasetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListDatasetsCommandOutput, Cause.
|
|
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.
|
|
423
|
-
listEvaluatorsStream(args: ListEvaluatorsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListEvaluatorsCommandOutput, Cause.
|
|
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.
|
|
428
|
-
listGatewayRulesStream(args: ListGatewayRulesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewayRulesCommandOutput, Cause.
|
|
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.
|
|
433
|
-
listGatewayTargetsStream(args: ListGatewayTargetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewayTargetsCommandOutput, Cause.
|
|
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.
|
|
438
|
-
listGatewaysStream(args: ListGatewaysCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListGatewaysCommandOutput, Cause.
|
|
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.
|
|
443
|
-
listHarnessEndpointsStream(args: ListHarnessEndpointsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessEndpointsCommandOutput, Cause.
|
|
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.
|
|
448
|
-
listHarnessVersionsStream(args: ListHarnessVersionsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessVersionsCommandOutput, Cause.
|
|
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.
|
|
453
|
-
listHarnessesStream(args: ListHarnessesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListHarnessesCommandOutput, Cause.
|
|
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.
|
|
458
|
-
listMemoriesStream(args: ListMemoriesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListMemoriesCommandOutput, Cause.
|
|
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.
|
|
463
|
-
listOauth2CredentialProvidersStream(args: ListOauth2CredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListOauth2CredentialProvidersCommandOutput, Cause.
|
|
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.
|
|
468
|
-
listOnlineEvaluationConfigsStream(args: ListOnlineEvaluationConfigsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListOnlineEvaluationConfigsCommandOutput, Cause.
|
|
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.
|
|
473
|
-
listPaymentConnectorsStream(args: ListPaymentConnectorsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentConnectorsCommandOutput, Cause.
|
|
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.
|
|
478
|
-
listPaymentCredentialProvidersStream(args: ListPaymentCredentialProvidersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentCredentialProvidersCommandOutput, Cause.
|
|
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.
|
|
483
|
-
listPaymentManagersStream(args: ListPaymentManagersCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPaymentManagersCommandOutput, Cause.
|
|
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.
|
|
488
|
-
listPoliciesStream(args: ListPoliciesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPoliciesCommandOutput, Cause.
|
|
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.
|
|
493
|
-
listPolicyEngineSummariesStream(args: ListPolicyEngineSummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyEngineSummariesCommandOutput, Cause.
|
|
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.
|
|
498
|
-
listPolicyEnginesStream(args: ListPolicyEnginesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyEnginesCommandOutput, Cause.
|
|
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.
|
|
503
|
-
listPolicyGenerationAssetsStream(args: ListPolicyGenerationAssetsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationAssetsCommandOutput, Cause.
|
|
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.
|
|
508
|
-
listPolicyGenerationSummariesStream(args: ListPolicyGenerationSummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationSummariesCommandOutput, Cause.
|
|
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.
|
|
513
|
-
listPolicyGenerationsStream(args: ListPolicyGenerationsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicyGenerationsCommandOutput, Cause.
|
|
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.
|
|
518
|
-
listPolicySummariesStream(args: ListPolicySummariesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListPolicySummariesCommandOutput, Cause.
|
|
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.
|
|
523
|
-
listRegistriesStream(args: ListRegistriesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListRegistriesCommandOutput, Cause.
|
|
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.
|
|
528
|
-
listRegistryRecordsStream(args: ListRegistryRecordsCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListRegistryRecordsCommandOutput, Cause.
|
|
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.
|
|
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.
|
|
537
|
-
listWorkloadIdentitiesStream(args: ListWorkloadIdentitiesCommandInput, options?: HttpHandlerOptions): Stream.Stream<ListWorkloadIdentitiesCommandOutput, Cause.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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:
|
|
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
|