@effect-aws/client-bedrock 1.10.8 → 2.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +3 -3
- package/dist/dts/BedrockClientInstance.d.ts +2 -2
- package/dist/dts/BedrockClientInstance.d.ts.map +1 -1
- package/dist/dts/BedrockService.d.ts +100 -102
- package/dist/dts/BedrockService.d.ts.map +1 -1
- package/dist/dts/BedrockServiceConfig.d.ts.map +1 -1
- package/dist/esm/BedrockClientInstance.js +3 -3
- package/dist/esm/BedrockClientInstance.js.map +1 -1
- package/dist/esm/BedrockService.js +2 -2
- package/dist/esm/BedrockService.js.map +1 -1
- package/dist/esm/BedrockServiceConfig.js +5 -6
- package/dist/esm/BedrockServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/BedrockClientInstance.ts +4 -4
- package/src/BedrockService.ts +101 -106
- package/src/BedrockServiceConfig.ts +6 -7
- package/dist/cjs/BedrockClientInstance.d.ts +0 -24
- package/dist/cjs/BedrockClientInstance.d.ts.map +0 -1
- package/dist/cjs/BedrockClientInstance.js +0 -50
- package/dist/cjs/BedrockClientInstance.js.map +0 -1
- package/dist/cjs/BedrockService.d.ts +0 -438
- package/dist/cjs/BedrockService.d.ts.map +0 -1
- package/dist/cjs/BedrockService.js +0 -157
- package/dist/cjs/BedrockService.js.map +0 -1
- package/dist/cjs/BedrockServiceConfig.d.ts +0 -25
- package/dist/cjs/BedrockServiceConfig.d.ts.map +0 -1
- package/dist/cjs/BedrockServiceConfig.js +0 -35
- package/dist/cjs/BedrockServiceConfig.js.map +0 -1
- package/dist/cjs/Errors.d.ts +0 -17
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -16
- 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
|
@@ -3,18 +3,17 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import type { BedrockClientConfig } from "@aws-sdk/client-bedrock";
|
|
5
5
|
import { ServiceLogger } from "@effect-aws/commons";
|
|
6
|
-
import { Effect,
|
|
6
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
7
7
|
import { dual } from "effect/Function";
|
|
8
|
-
import { globalValue } from "effect/GlobalValue";
|
|
9
8
|
import type { BedrockService } from "./BedrockService.js";
|
|
10
9
|
|
|
11
10
|
/**
|
|
12
11
|
* @since 1.0.0
|
|
13
12
|
* @category bedrock service config
|
|
14
13
|
*/
|
|
15
|
-
const currentBedrockServiceConfig =
|
|
14
|
+
const currentBedrockServiceConfig = ServiceMap.Reference<BedrockService.Config>(
|
|
16
15
|
"@effect-aws/client-bedrock/currentBedrockServiceConfig",
|
|
17
|
-
() =>
|
|
16
|
+
{ defaultValue: () => ({}) },
|
|
18
17
|
);
|
|
19
18
|
|
|
20
19
|
/**
|
|
@@ -27,7 +26,7 @@ export const withBedrockServiceConfig: {
|
|
|
27
26
|
} = dual(
|
|
28
27
|
2,
|
|
29
28
|
<A, E, R>(effect: Effect.Effect<A, E, R>, config: BedrockService.Config): Effect.Effect<A, E, R> =>
|
|
30
|
-
Effect.
|
|
29
|
+
Effect.provideService(effect, currentBedrockServiceConfig, config),
|
|
31
30
|
);
|
|
32
31
|
|
|
33
32
|
/**
|
|
@@ -35,14 +34,14 @@ export const withBedrockServiceConfig: {
|
|
|
35
34
|
* @category bedrock service config
|
|
36
35
|
*/
|
|
37
36
|
export const setBedrockServiceConfig = (config: BedrockService.Config) =>
|
|
38
|
-
Layer.
|
|
37
|
+
Layer.succeed(currentBedrockServiceConfig, config);
|
|
39
38
|
|
|
40
39
|
/**
|
|
41
40
|
* @since 1.0.0
|
|
42
41
|
* @category adapters
|
|
43
42
|
*/
|
|
44
43
|
export const toBedrockClientConfig: Effect.Effect<BedrockClientConfig> = Effect.gen(function*() {
|
|
45
|
-
const { logger: serviceLogger, ...config } = yield*
|
|
44
|
+
const { logger: serviceLogger, ...config } = yield* currentBedrockServiceConfig;
|
|
46
45
|
|
|
47
46
|
const logger = serviceLogger === true
|
|
48
47
|
? yield* ServiceLogger.toClientLogger(ServiceLogger.defaultServiceLogger)
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @since 1.0.0
|
|
3
|
-
*/
|
|
4
|
-
import { BedrockClient } from "@aws-sdk/client-bedrock";
|
|
5
|
-
import { Context, Effect, Layer } from "effect";
|
|
6
|
-
declare const BedrockClientInstance_base: Context.TagClass<BedrockClientInstance, "@effect-aws/client-bedrock/BedrockClientInstance", BedrockClient>;
|
|
7
|
-
/**
|
|
8
|
-
* @since 1.0.0
|
|
9
|
-
* @category tags
|
|
10
|
-
*/
|
|
11
|
-
export declare class BedrockClientInstance extends BedrockClientInstance_base {
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* @since 1.0.0
|
|
15
|
-
* @category constructors
|
|
16
|
-
*/
|
|
17
|
-
export declare const make: Effect.Effect<BedrockClient, never, import("effect/Scope").Scope>;
|
|
18
|
-
/**
|
|
19
|
-
* @since 1.0.0
|
|
20
|
-
* @category layers
|
|
21
|
-
*/
|
|
22
|
-
export declare const layer: Layer.Layer<BedrockClientInstance, never, never>;
|
|
23
|
-
export {};
|
|
24
|
-
//# sourceMappingURL=BedrockClientInstance.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BedrockClientInstance.d.ts","sourceRoot":"","sources":["../../src/BedrockClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,qBAAsB,SAAQ,0BAEF;CAAG;AAE5C;;;GAGG;AACH,eAAO,MAAM,IAAI,mEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,kDAA4C,CAAC"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.layer = exports.make = exports.BedrockClientInstance = void 0;
|
|
27
|
-
/**
|
|
28
|
-
* @since 1.0.0
|
|
29
|
-
*/
|
|
30
|
-
const client_bedrock_1 = require("@aws-sdk/client-bedrock");
|
|
31
|
-
const effect_1 = require("effect");
|
|
32
|
-
const BedrockServiceConfig = __importStar(require("./BedrockServiceConfig.js"));
|
|
33
|
-
/**
|
|
34
|
-
* @since 1.0.0
|
|
35
|
-
* @category tags
|
|
36
|
-
*/
|
|
37
|
-
class BedrockClientInstance extends effect_1.Context.Tag("@effect-aws/client-bedrock/BedrockClientInstance")() {
|
|
38
|
-
}
|
|
39
|
-
exports.BedrockClientInstance = BedrockClientInstance;
|
|
40
|
-
/**
|
|
41
|
-
* @since 1.0.0
|
|
42
|
-
* @category constructors
|
|
43
|
-
*/
|
|
44
|
-
exports.make = effect_1.Effect.flatMap(BedrockServiceConfig.toBedrockClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_bedrock_1.BedrockClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
|
|
45
|
-
/**
|
|
46
|
-
* @since 1.0.0
|
|
47
|
-
* @category layers
|
|
48
|
-
*/
|
|
49
|
-
exports.layer = effect_1.Layer.scoped(BedrockClientInstance, exports.make);
|
|
50
|
-
//# sourceMappingURL=BedrockClientInstance.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BedrockClientInstance.js","sourceRoot":"","sources":["../../src/BedrockClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,4DAAwD;AACxD,mCAAgD;AAChD,gFAAkE;AAElE;;;GAGG;AACH,MAAa,qBAAsB,SAAQ,gBAAO,CAAC,GAAG,CACpD,kDAAkD,CACnD,EAAwC;CAAG;AAF5C,sDAE4C;AAE5C;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,oBAAoB,CAAC,qBAAqB,EAC1C,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,8BAAa,CAAC,MAAM,CAAC,CAAC,EAC5C,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,qBAAqB,EAAE,YAAI,CAAC,CAAC"}
|
|
@@ -1,438 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @since 1.0.0
|
|
3
|
-
*/
|
|
4
|
-
import { type BatchDeleteEvaluationJobCommandInput, type BatchDeleteEvaluationJobCommandOutput, type BedrockClient, type BedrockClientConfig, type CancelAutomatedReasoningPolicyBuildWorkflowCommandInput, type CancelAutomatedReasoningPolicyBuildWorkflowCommandOutput, type CreateAutomatedReasoningPolicyCommandInput, type CreateAutomatedReasoningPolicyCommandOutput, type CreateAutomatedReasoningPolicyTestCaseCommandInput, type CreateAutomatedReasoningPolicyTestCaseCommandOutput, type CreateAutomatedReasoningPolicyVersionCommandInput, type CreateAutomatedReasoningPolicyVersionCommandOutput, type CreateCustomModelCommandInput, type CreateCustomModelCommandOutput, type CreateCustomModelDeploymentCommandInput, type CreateCustomModelDeploymentCommandOutput, type CreateEvaluationJobCommandInput, type CreateEvaluationJobCommandOutput, type CreateFoundationModelAgreementCommandInput, type CreateFoundationModelAgreementCommandOutput, type CreateGuardrailCommandInput, type CreateGuardrailCommandOutput, type CreateGuardrailVersionCommandInput, type CreateGuardrailVersionCommandOutput, type CreateInferenceProfileCommandInput, type CreateInferenceProfileCommandOutput, type CreateMarketplaceModelEndpointCommandInput, type CreateMarketplaceModelEndpointCommandOutput, type CreateModelCopyJobCommandInput, type CreateModelCopyJobCommandOutput, type CreateModelCustomizationJobCommandInput, type CreateModelCustomizationJobCommandOutput, type CreateModelImportJobCommandInput, type CreateModelImportJobCommandOutput, type CreateModelInvocationJobCommandInput, type CreateModelInvocationJobCommandOutput, type CreatePromptRouterCommandInput, type CreatePromptRouterCommandOutput, type CreateProvisionedModelThroughputCommandInput, type CreateProvisionedModelThroughputCommandOutput, type DeleteAutomatedReasoningPolicyBuildWorkflowCommandInput, type DeleteAutomatedReasoningPolicyBuildWorkflowCommandOutput, type DeleteAutomatedReasoningPolicyCommandInput, type DeleteAutomatedReasoningPolicyCommandOutput, type DeleteAutomatedReasoningPolicyTestCaseCommandInput, type DeleteAutomatedReasoningPolicyTestCaseCommandOutput, type DeleteCustomModelCommandInput, type DeleteCustomModelCommandOutput, type DeleteCustomModelDeploymentCommandInput, type DeleteCustomModelDeploymentCommandOutput, type DeleteEnforcedGuardrailConfigurationCommandInput, type DeleteEnforcedGuardrailConfigurationCommandOutput, type DeleteFoundationModelAgreementCommandInput, type DeleteFoundationModelAgreementCommandOutput, type DeleteGuardrailCommandInput, type DeleteGuardrailCommandOutput, type DeleteImportedModelCommandInput, type DeleteImportedModelCommandOutput, type DeleteInferenceProfileCommandInput, type DeleteInferenceProfileCommandOutput, type DeleteMarketplaceModelEndpointCommandInput, type DeleteMarketplaceModelEndpointCommandOutput, type DeleteModelInvocationLoggingConfigurationCommandInput, type DeleteModelInvocationLoggingConfigurationCommandOutput, type DeletePromptRouterCommandInput, type DeletePromptRouterCommandOutput, type DeleteProvisionedModelThroughputCommandInput, type DeleteProvisionedModelThroughputCommandOutput, type DeregisterMarketplaceModelEndpointCommandInput, type DeregisterMarketplaceModelEndpointCommandOutput, type ExportAutomatedReasoningPolicyVersionCommandInput, type ExportAutomatedReasoningPolicyVersionCommandOutput, type GetAutomatedReasoningPolicyAnnotationsCommandInput, type GetAutomatedReasoningPolicyAnnotationsCommandOutput, type GetAutomatedReasoningPolicyBuildWorkflowCommandInput, type GetAutomatedReasoningPolicyBuildWorkflowCommandOutput, type GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandInput, type GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandOutput, type GetAutomatedReasoningPolicyCommandInput, type GetAutomatedReasoningPolicyCommandOutput, type GetAutomatedReasoningPolicyNextScenarioCommandInput, type GetAutomatedReasoningPolicyNextScenarioCommandOutput, type GetAutomatedReasoningPolicyTestCaseCommandInput, type GetAutomatedReasoningPolicyTestCaseCommandOutput, type GetAutomatedReasoningPolicyTestResultCommandInput, type GetAutomatedReasoningPolicyTestResultCommandOutput, type GetCustomModelCommandInput, type GetCustomModelCommandOutput, type GetCustomModelDeploymentCommandInput, type GetCustomModelDeploymentCommandOutput, type GetEvaluationJobCommandInput, type GetEvaluationJobCommandOutput, type GetFoundationModelAvailabilityCommandInput, type GetFoundationModelAvailabilityCommandOutput, type GetFoundationModelCommandInput, type GetFoundationModelCommandOutput, type GetGuardrailCommandInput, type GetGuardrailCommandOutput, type GetImportedModelCommandInput, type GetImportedModelCommandOutput, type GetInferenceProfileCommandInput, type GetInferenceProfileCommandOutput, type GetMarketplaceModelEndpointCommandInput, type GetMarketplaceModelEndpointCommandOutput, type GetModelCopyJobCommandInput, type GetModelCopyJobCommandOutput, type GetModelCustomizationJobCommandInput, type GetModelCustomizationJobCommandOutput, type GetModelImportJobCommandInput, type GetModelImportJobCommandOutput, type GetModelInvocationJobCommandInput, type GetModelInvocationJobCommandOutput, type GetModelInvocationLoggingConfigurationCommandInput, type GetModelInvocationLoggingConfigurationCommandOutput, type GetPromptRouterCommandInput, type GetPromptRouterCommandOutput, type GetProvisionedModelThroughputCommandInput, type GetProvisionedModelThroughputCommandOutput, type GetUseCaseForModelAccessCommandInput, type GetUseCaseForModelAccessCommandOutput, type ListAutomatedReasoningPoliciesCommandInput, type ListAutomatedReasoningPoliciesCommandOutput, type ListAutomatedReasoningPolicyBuildWorkflowsCommandInput, type ListAutomatedReasoningPolicyBuildWorkflowsCommandOutput, type ListAutomatedReasoningPolicyTestCasesCommandInput, type ListAutomatedReasoningPolicyTestCasesCommandOutput, type ListAutomatedReasoningPolicyTestResultsCommandInput, type ListAutomatedReasoningPolicyTestResultsCommandOutput, type ListCustomModelDeploymentsCommandInput, type ListCustomModelDeploymentsCommandOutput, type ListCustomModelsCommandInput, type ListCustomModelsCommandOutput, type ListEnforcedGuardrailsConfigurationCommandInput, type ListEnforcedGuardrailsConfigurationCommandOutput, type ListEvaluationJobsCommandInput, type ListEvaluationJobsCommandOutput, type ListFoundationModelAgreementOffersCommandInput, type ListFoundationModelAgreementOffersCommandOutput, type ListFoundationModelsCommandInput, type ListFoundationModelsCommandOutput, type ListGuardrailsCommandInput, type ListGuardrailsCommandOutput, type ListImportedModelsCommandInput, type ListImportedModelsCommandOutput, type ListInferenceProfilesCommandInput, type ListInferenceProfilesCommandOutput, type ListMarketplaceModelEndpointsCommandInput, type ListMarketplaceModelEndpointsCommandOutput, type ListModelCopyJobsCommandInput, type ListModelCopyJobsCommandOutput, type ListModelCustomizationJobsCommandInput, type ListModelCustomizationJobsCommandOutput, type ListModelImportJobsCommandInput, type ListModelImportJobsCommandOutput, type ListModelInvocationJobsCommandInput, type ListModelInvocationJobsCommandOutput, type ListPromptRoutersCommandInput, type ListPromptRoutersCommandOutput, type ListProvisionedModelThroughputsCommandInput, type ListProvisionedModelThroughputsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type PutEnforcedGuardrailConfigurationCommandInput, type PutEnforcedGuardrailConfigurationCommandOutput, type PutModelInvocationLoggingConfigurationCommandInput, type PutModelInvocationLoggingConfigurationCommandOutput, type PutUseCaseForModelAccessCommandInput, type PutUseCaseForModelAccessCommandOutput, type RegisterMarketplaceModelEndpointCommandInput, type RegisterMarketplaceModelEndpointCommandOutput, type StartAutomatedReasoningPolicyBuildWorkflowCommandInput, type StartAutomatedReasoningPolicyBuildWorkflowCommandOutput, type StartAutomatedReasoningPolicyTestWorkflowCommandInput, type StartAutomatedReasoningPolicyTestWorkflowCommandOutput, type StopEvaluationJobCommandInput, type StopEvaluationJobCommandOutput, type StopModelCustomizationJobCommandInput, type StopModelCustomizationJobCommandOutput, type StopModelInvocationJobCommandInput, type StopModelInvocationJobCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAutomatedReasoningPolicyAnnotationsCommandInput, type UpdateAutomatedReasoningPolicyAnnotationsCommandOutput, type UpdateAutomatedReasoningPolicyCommandInput, type UpdateAutomatedReasoningPolicyCommandOutput, type UpdateAutomatedReasoningPolicyTestCaseCommandInput, type UpdateAutomatedReasoningPolicyTestCaseCommandOutput, type UpdateCustomModelDeploymentCommandInput, type UpdateCustomModelDeploymentCommandOutput, type UpdateGuardrailCommandInput, type UpdateGuardrailCommandOutput, type UpdateMarketplaceModelEndpointCommandInput, type UpdateMarketplaceModelEndpointCommandOutput, type UpdateProvisionedModelThroughputCommandInput, type UpdateProvisionedModelThroughputCommandOutput } from "@aws-sdk/client-bedrock";
|
|
5
|
-
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
-
import type { Cause } from "effect";
|
|
7
|
-
import { Effect, Layer } from "effect";
|
|
8
|
-
import * as Instance from "./BedrockClientInstance.js";
|
|
9
|
-
import type { AccessDeniedError, ConflictError, InternalServerError, ResourceInUseError, ResourceNotFoundError, SdkError, ServiceQuotaExceededError, ServiceUnavailableError, ThrottlingError, TooManyTagsError, ValidationError } from "./Errors.js";
|
|
10
|
-
interface BedrockService$ {
|
|
11
|
-
readonly _: unique symbol;
|
|
12
|
-
/**
|
|
13
|
-
* @see {@link BatchDeleteEvaluationJobCommand}
|
|
14
|
-
*/
|
|
15
|
-
batchDeleteEvaluationJob(args: BatchDeleteEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchDeleteEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
16
|
-
/**
|
|
17
|
-
* @see {@link CancelAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
18
|
-
*/
|
|
19
|
-
cancelAutomatedReasoningPolicyBuildWorkflow(args: CancelAutomatedReasoningPolicyBuildWorkflowCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelAutomatedReasoningPolicyBuildWorkflowCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
20
|
-
/**
|
|
21
|
-
* @see {@link CreateAutomatedReasoningPolicyCommand}
|
|
22
|
-
*/
|
|
23
|
-
createAutomatedReasoningPolicy(args: CreateAutomatedReasoningPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAutomatedReasoningPolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
24
|
-
/**
|
|
25
|
-
* @see {@link CreateAutomatedReasoningPolicyTestCaseCommand}
|
|
26
|
-
*/
|
|
27
|
-
createAutomatedReasoningPolicyTestCase(args: CreateAutomatedReasoningPolicyTestCaseCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAutomatedReasoningPolicyTestCaseCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
28
|
-
/**
|
|
29
|
-
* @see {@link CreateAutomatedReasoningPolicyVersionCommand}
|
|
30
|
-
*/
|
|
31
|
-
createAutomatedReasoningPolicyVersion(args: CreateAutomatedReasoningPolicyVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAutomatedReasoningPolicyVersionCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
32
|
-
/**
|
|
33
|
-
* @see {@link CreateCustomModelCommand}
|
|
34
|
-
*/
|
|
35
|
-
createCustomModel(args: CreateCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCustomModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
36
|
-
/**
|
|
37
|
-
* @see {@link CreateCustomModelDeploymentCommand}
|
|
38
|
-
*/
|
|
39
|
-
createCustomModelDeployment(args: CreateCustomModelDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCustomModelDeploymentCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
40
|
-
/**
|
|
41
|
-
* @see {@link CreateEvaluationJobCommand}
|
|
42
|
-
*/
|
|
43
|
-
createEvaluationJob(args: CreateEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
44
|
-
/**
|
|
45
|
-
* @see {@link CreateFoundationModelAgreementCommand}
|
|
46
|
-
*/
|
|
47
|
-
createFoundationModelAgreement(args: CreateFoundationModelAgreementCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateFoundationModelAgreementCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
48
|
-
/**
|
|
49
|
-
* @see {@link CreateGuardrailCommand}
|
|
50
|
-
*/
|
|
51
|
-
createGuardrail(args: CreateGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
52
|
-
/**
|
|
53
|
-
* @see {@link CreateGuardrailVersionCommand}
|
|
54
|
-
*/
|
|
55
|
-
createGuardrailVersion(args: CreateGuardrailVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateGuardrailVersionCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
56
|
-
/**
|
|
57
|
-
* @see {@link CreateInferenceProfileCommand}
|
|
58
|
-
*/
|
|
59
|
-
createInferenceProfile(args: CreateInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateInferenceProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
60
|
-
/**
|
|
61
|
-
* @see {@link CreateMarketplaceModelEndpointCommand}
|
|
62
|
-
*/
|
|
63
|
-
createMarketplaceModelEndpoint(args: CreateMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
64
|
-
/**
|
|
65
|
-
* @see {@link CreateModelCopyJobCommand}
|
|
66
|
-
*/
|
|
67
|
-
createModelCopyJob(args: CreateModelCopyJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCopyJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | TooManyTagsError>;
|
|
68
|
-
/**
|
|
69
|
-
* @see {@link CreateModelCustomizationJobCommand}
|
|
70
|
-
*/
|
|
71
|
-
createModelCustomizationJob(args: CreateModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelCustomizationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
72
|
-
/**
|
|
73
|
-
* @see {@link CreateModelImportJobCommand}
|
|
74
|
-
*/
|
|
75
|
-
createModelImportJob(args: CreateModelImportJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelImportJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
76
|
-
/**
|
|
77
|
-
* @see {@link CreateModelInvocationJobCommand}
|
|
78
|
-
*/
|
|
79
|
-
createModelInvocationJob(args: CreateModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateModelInvocationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
80
|
-
/**
|
|
81
|
-
* @see {@link CreatePromptRouterCommand}
|
|
82
|
-
*/
|
|
83
|
-
createPromptRouter(args: CreatePromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePromptRouterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
84
|
-
/**
|
|
85
|
-
* @see {@link CreateProvisionedModelThroughputCommand}
|
|
86
|
-
*/
|
|
87
|
-
createProvisionedModelThroughput(args: CreateProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
88
|
-
/**
|
|
89
|
-
* @see {@link DeleteAutomatedReasoningPolicyCommand}
|
|
90
|
-
*/
|
|
91
|
-
deleteAutomatedReasoningPolicy(args: DeleteAutomatedReasoningPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAutomatedReasoningPolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceInUseError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
92
|
-
/**
|
|
93
|
-
* @see {@link DeleteAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
94
|
-
*/
|
|
95
|
-
deleteAutomatedReasoningPolicyBuildWorkflow(args: DeleteAutomatedReasoningPolicyBuildWorkflowCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAutomatedReasoningPolicyBuildWorkflowCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceInUseError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
96
|
-
/**
|
|
97
|
-
* @see {@link DeleteAutomatedReasoningPolicyTestCaseCommand}
|
|
98
|
-
*/
|
|
99
|
-
deleteAutomatedReasoningPolicyTestCase(args: DeleteAutomatedReasoningPolicyTestCaseCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAutomatedReasoningPolicyTestCaseCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceInUseError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
100
|
-
/**
|
|
101
|
-
* @see {@link DeleteCustomModelCommand}
|
|
102
|
-
*/
|
|
103
|
-
deleteCustomModel(args: DeleteCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
104
|
-
/**
|
|
105
|
-
* @see {@link DeleteCustomModelDeploymentCommand}
|
|
106
|
-
*/
|
|
107
|
-
deleteCustomModelDeployment(args: DeleteCustomModelDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCustomModelDeploymentCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
108
|
-
/**
|
|
109
|
-
* @see {@link DeleteEnforcedGuardrailConfigurationCommand}
|
|
110
|
-
*/
|
|
111
|
-
deleteEnforcedGuardrailConfiguration(args: DeleteEnforcedGuardrailConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEnforcedGuardrailConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
112
|
-
/**
|
|
113
|
-
* @see {@link DeleteFoundationModelAgreementCommand}
|
|
114
|
-
*/
|
|
115
|
-
deleteFoundationModelAgreement(args: DeleteFoundationModelAgreementCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteFoundationModelAgreementCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
116
|
-
/**
|
|
117
|
-
* @see {@link DeleteGuardrailCommand}
|
|
118
|
-
*/
|
|
119
|
-
deleteGuardrail(args: DeleteGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
120
|
-
/**
|
|
121
|
-
* @see {@link DeleteImportedModelCommand}
|
|
122
|
-
*/
|
|
123
|
-
deleteImportedModel(args: DeleteImportedModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteImportedModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
124
|
-
/**
|
|
125
|
-
* @see {@link DeleteInferenceProfileCommand}
|
|
126
|
-
*/
|
|
127
|
-
deleteInferenceProfile(args: DeleteInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteInferenceProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
128
|
-
/**
|
|
129
|
-
* @see {@link DeleteMarketplaceModelEndpointCommand}
|
|
130
|
-
*/
|
|
131
|
-
deleteMarketplaceModelEndpoint(args: DeleteMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
132
|
-
/**
|
|
133
|
-
* @see {@link DeleteModelInvocationLoggingConfigurationCommand}
|
|
134
|
-
*/
|
|
135
|
-
deleteModelInvocationLoggingConfiguration(args: DeleteModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteModelInvocationLoggingConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError>;
|
|
136
|
-
/**
|
|
137
|
-
* @see {@link DeletePromptRouterCommand}
|
|
138
|
-
*/
|
|
139
|
-
deletePromptRouter(args: DeletePromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePromptRouterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
140
|
-
/**
|
|
141
|
-
* @see {@link DeleteProvisionedModelThroughputCommand}
|
|
142
|
-
*/
|
|
143
|
-
deleteProvisionedModelThroughput(args: DeleteProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
144
|
-
/**
|
|
145
|
-
* @see {@link DeregisterMarketplaceModelEndpointCommand}
|
|
146
|
-
*/
|
|
147
|
-
deregisterMarketplaceModelEndpoint(args: DeregisterMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeregisterMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError>;
|
|
148
|
-
/**
|
|
149
|
-
* @see {@link ExportAutomatedReasoningPolicyVersionCommand}
|
|
150
|
-
*/
|
|
151
|
-
exportAutomatedReasoningPolicyVersion(args: ExportAutomatedReasoningPolicyVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ExportAutomatedReasoningPolicyVersionCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
152
|
-
/**
|
|
153
|
-
* @see {@link GetAutomatedReasoningPolicyCommand}
|
|
154
|
-
*/
|
|
155
|
-
getAutomatedReasoningPolicy(args: GetAutomatedReasoningPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
156
|
-
/**
|
|
157
|
-
* @see {@link GetAutomatedReasoningPolicyAnnotationsCommand}
|
|
158
|
-
*/
|
|
159
|
-
getAutomatedReasoningPolicyAnnotations(args: GetAutomatedReasoningPolicyAnnotationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyAnnotationsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
160
|
-
/**
|
|
161
|
-
* @see {@link GetAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
162
|
-
*/
|
|
163
|
-
getAutomatedReasoningPolicyBuildWorkflow(args: GetAutomatedReasoningPolicyBuildWorkflowCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyBuildWorkflowCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
164
|
-
/**
|
|
165
|
-
* @see {@link GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand}
|
|
166
|
-
*/
|
|
167
|
-
getAutomatedReasoningPolicyBuildWorkflowResultAssets(args: GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
168
|
-
/**
|
|
169
|
-
* @see {@link GetAutomatedReasoningPolicyNextScenarioCommand}
|
|
170
|
-
*/
|
|
171
|
-
getAutomatedReasoningPolicyNextScenario(args: GetAutomatedReasoningPolicyNextScenarioCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyNextScenarioCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
172
|
-
/**
|
|
173
|
-
* @see {@link GetAutomatedReasoningPolicyTestCaseCommand}
|
|
174
|
-
*/
|
|
175
|
-
getAutomatedReasoningPolicyTestCase(args: GetAutomatedReasoningPolicyTestCaseCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyTestCaseCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
176
|
-
/**
|
|
177
|
-
* @see {@link GetAutomatedReasoningPolicyTestResultCommand}
|
|
178
|
-
*/
|
|
179
|
-
getAutomatedReasoningPolicyTestResult(args: GetAutomatedReasoningPolicyTestResultCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAutomatedReasoningPolicyTestResultCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
180
|
-
/**
|
|
181
|
-
* @see {@link GetCustomModelCommand}
|
|
182
|
-
*/
|
|
183
|
-
getCustomModel(args: GetCustomModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCustomModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
184
|
-
/**
|
|
185
|
-
* @see {@link GetCustomModelDeploymentCommand}
|
|
186
|
-
*/
|
|
187
|
-
getCustomModelDeployment(args: GetCustomModelDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCustomModelDeploymentCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
188
|
-
/**
|
|
189
|
-
* @see {@link GetEvaluationJobCommand}
|
|
190
|
-
*/
|
|
191
|
-
getEvaluationJob(args: GetEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
192
|
-
/**
|
|
193
|
-
* @see {@link GetFoundationModelCommand}
|
|
194
|
-
*/
|
|
195
|
-
getFoundationModel(args: GetFoundationModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFoundationModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
196
|
-
/**
|
|
197
|
-
* @see {@link GetFoundationModelAvailabilityCommand}
|
|
198
|
-
*/
|
|
199
|
-
getFoundationModelAvailability(args: GetFoundationModelAvailabilityCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFoundationModelAvailabilityCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
200
|
-
/**
|
|
201
|
-
* @see {@link GetGuardrailCommand}
|
|
202
|
-
*/
|
|
203
|
-
getGuardrail(args: GetGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
204
|
-
/**
|
|
205
|
-
* @see {@link GetImportedModelCommand}
|
|
206
|
-
*/
|
|
207
|
-
getImportedModel(args: GetImportedModelCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetImportedModelCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
208
|
-
/**
|
|
209
|
-
* @see {@link GetInferenceProfileCommand}
|
|
210
|
-
*/
|
|
211
|
-
getInferenceProfile(args: GetInferenceProfileCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetInferenceProfileCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
212
|
-
/**
|
|
213
|
-
* @see {@link GetMarketplaceModelEndpointCommand}
|
|
214
|
-
*/
|
|
215
|
-
getMarketplaceModelEndpoint(args: GetMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
216
|
-
/**
|
|
217
|
-
* @see {@link GetModelCopyJobCommand}
|
|
218
|
-
*/
|
|
219
|
-
getModelCopyJob(args: GetModelCopyJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCopyJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
220
|
-
/**
|
|
221
|
-
* @see {@link GetModelCustomizationJobCommand}
|
|
222
|
-
*/
|
|
223
|
-
getModelCustomizationJob(args: GetModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelCustomizationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
224
|
-
/**
|
|
225
|
-
* @see {@link GetModelImportJobCommand}
|
|
226
|
-
*/
|
|
227
|
-
getModelImportJob(args: GetModelImportJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelImportJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
228
|
-
/**
|
|
229
|
-
* @see {@link GetModelInvocationJobCommand}
|
|
230
|
-
*/
|
|
231
|
-
getModelInvocationJob(args: GetModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelInvocationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
232
|
-
/**
|
|
233
|
-
* @see {@link GetModelInvocationLoggingConfigurationCommand}
|
|
234
|
-
*/
|
|
235
|
-
getModelInvocationLoggingConfiguration(args: GetModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetModelInvocationLoggingConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError>;
|
|
236
|
-
/**
|
|
237
|
-
* @see {@link GetPromptRouterCommand}
|
|
238
|
-
*/
|
|
239
|
-
getPromptRouter(args: GetPromptRouterCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPromptRouterCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
240
|
-
/**
|
|
241
|
-
* @see {@link GetProvisionedModelThroughputCommand}
|
|
242
|
-
*/
|
|
243
|
-
getProvisionedModelThroughput(args: GetProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
244
|
-
/**
|
|
245
|
-
* @see {@link GetUseCaseForModelAccessCommand}
|
|
246
|
-
*/
|
|
247
|
-
getUseCaseForModelAccess(args: GetUseCaseForModelAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetUseCaseForModelAccessCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
248
|
-
/**
|
|
249
|
-
* @see {@link ListAutomatedReasoningPoliciesCommand}
|
|
250
|
-
*/
|
|
251
|
-
listAutomatedReasoningPolicies(args: ListAutomatedReasoningPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAutomatedReasoningPoliciesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
252
|
-
/**
|
|
253
|
-
* @see {@link ListAutomatedReasoningPolicyBuildWorkflowsCommand}
|
|
254
|
-
*/
|
|
255
|
-
listAutomatedReasoningPolicyBuildWorkflows(args: ListAutomatedReasoningPolicyBuildWorkflowsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAutomatedReasoningPolicyBuildWorkflowsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
256
|
-
/**
|
|
257
|
-
* @see {@link ListAutomatedReasoningPolicyTestCasesCommand}
|
|
258
|
-
*/
|
|
259
|
-
listAutomatedReasoningPolicyTestCases(args: ListAutomatedReasoningPolicyTestCasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAutomatedReasoningPolicyTestCasesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
260
|
-
/**
|
|
261
|
-
* @see {@link ListAutomatedReasoningPolicyTestResultsCommand}
|
|
262
|
-
*/
|
|
263
|
-
listAutomatedReasoningPolicyTestResults(args: ListAutomatedReasoningPolicyTestResultsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAutomatedReasoningPolicyTestResultsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
264
|
-
/**
|
|
265
|
-
* @see {@link ListCustomModelDeploymentsCommand}
|
|
266
|
-
*/
|
|
267
|
-
listCustomModelDeployments(args: ListCustomModelDeploymentsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCustomModelDeploymentsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
268
|
-
/**
|
|
269
|
-
* @see {@link ListCustomModelsCommand}
|
|
270
|
-
*/
|
|
271
|
-
listCustomModels(args: ListCustomModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCustomModelsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
272
|
-
/**
|
|
273
|
-
* @see {@link ListEnforcedGuardrailsConfigurationCommand}
|
|
274
|
-
*/
|
|
275
|
-
listEnforcedGuardrailsConfiguration(args: ListEnforcedGuardrailsConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEnforcedGuardrailsConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
276
|
-
/**
|
|
277
|
-
* @see {@link ListEvaluationJobsCommand}
|
|
278
|
-
*/
|
|
279
|
-
listEvaluationJobs(args: ListEvaluationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEvaluationJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
280
|
-
/**
|
|
281
|
-
* @see {@link ListFoundationModelAgreementOffersCommand}
|
|
282
|
-
*/
|
|
283
|
-
listFoundationModelAgreementOffers(args: ListFoundationModelAgreementOffersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFoundationModelAgreementOffersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
284
|
-
/**
|
|
285
|
-
* @see {@link ListFoundationModelsCommand}
|
|
286
|
-
*/
|
|
287
|
-
listFoundationModels(args: ListFoundationModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFoundationModelsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
288
|
-
/**
|
|
289
|
-
* @see {@link ListGuardrailsCommand}
|
|
290
|
-
*/
|
|
291
|
-
listGuardrails(args: ListGuardrailsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListGuardrailsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
292
|
-
/**
|
|
293
|
-
* @see {@link ListImportedModelsCommand}
|
|
294
|
-
*/
|
|
295
|
-
listImportedModels(args: ListImportedModelsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListImportedModelsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
296
|
-
/**
|
|
297
|
-
* @see {@link ListInferenceProfilesCommand}
|
|
298
|
-
*/
|
|
299
|
-
listInferenceProfiles(args: ListInferenceProfilesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListInferenceProfilesCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
300
|
-
/**
|
|
301
|
-
* @see {@link ListMarketplaceModelEndpointsCommand}
|
|
302
|
-
*/
|
|
303
|
-
listMarketplaceModelEndpoints(args: ListMarketplaceModelEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMarketplaceModelEndpointsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
304
|
-
/**
|
|
305
|
-
* @see {@link ListModelCopyJobsCommand}
|
|
306
|
-
*/
|
|
307
|
-
listModelCopyJobs(args: ListModelCopyJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelCopyJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
308
|
-
/**
|
|
309
|
-
* @see {@link ListModelCustomizationJobsCommand}
|
|
310
|
-
*/
|
|
311
|
-
listModelCustomizationJobs(args: ListModelCustomizationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelCustomizationJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
312
|
-
/**
|
|
313
|
-
* @see {@link ListModelImportJobsCommand}
|
|
314
|
-
*/
|
|
315
|
-
listModelImportJobs(args: ListModelImportJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelImportJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
316
|
-
/**
|
|
317
|
-
* @see {@link ListModelInvocationJobsCommand}
|
|
318
|
-
*/
|
|
319
|
-
listModelInvocationJobs(args: ListModelInvocationJobsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListModelInvocationJobsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
320
|
-
/**
|
|
321
|
-
* @see {@link ListPromptRoutersCommand}
|
|
322
|
-
*/
|
|
323
|
-
listPromptRouters(args: ListPromptRoutersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPromptRoutersCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
324
|
-
/**
|
|
325
|
-
* @see {@link ListProvisionedModelThroughputsCommand}
|
|
326
|
-
*/
|
|
327
|
-
listProvisionedModelThroughputs(args: ListProvisionedModelThroughputsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListProvisionedModelThroughputsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
328
|
-
/**
|
|
329
|
-
* @see {@link ListTagsForResourceCommand}
|
|
330
|
-
*/
|
|
331
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
332
|
-
/**
|
|
333
|
-
* @see {@link PutEnforcedGuardrailConfigurationCommand}
|
|
334
|
-
*/
|
|
335
|
-
putEnforcedGuardrailConfiguration(args: PutEnforcedGuardrailConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutEnforcedGuardrailConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
336
|
-
/**
|
|
337
|
-
* @see {@link PutModelInvocationLoggingConfigurationCommand}
|
|
338
|
-
*/
|
|
339
|
-
putModelInvocationLoggingConfiguration(args: PutModelInvocationLoggingConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutModelInvocationLoggingConfigurationCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
340
|
-
/**
|
|
341
|
-
* @see {@link PutUseCaseForModelAccessCommand}
|
|
342
|
-
*/
|
|
343
|
-
putUseCaseForModelAccess(args: PutUseCaseForModelAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutUseCaseForModelAccessCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError>;
|
|
344
|
-
/**
|
|
345
|
-
* @see {@link RegisterMarketplaceModelEndpointCommand}
|
|
346
|
-
*/
|
|
347
|
-
registerMarketplaceModelEndpoint(args: RegisterMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<RegisterMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ServiceUnavailableError | ThrottlingError | ValidationError>;
|
|
348
|
-
/**
|
|
349
|
-
* @see {@link StartAutomatedReasoningPolicyBuildWorkflowCommand}
|
|
350
|
-
*/
|
|
351
|
-
startAutomatedReasoningPolicyBuildWorkflow(args: StartAutomatedReasoningPolicyBuildWorkflowCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartAutomatedReasoningPolicyBuildWorkflowCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceInUseError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
352
|
-
/**
|
|
353
|
-
* @see {@link StartAutomatedReasoningPolicyTestWorkflowCommand}
|
|
354
|
-
*/
|
|
355
|
-
startAutomatedReasoningPolicyTestWorkflow(args: StartAutomatedReasoningPolicyTestWorkflowCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartAutomatedReasoningPolicyTestWorkflowCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceInUseError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
356
|
-
/**
|
|
357
|
-
* @see {@link StopEvaluationJobCommand}
|
|
358
|
-
*/
|
|
359
|
-
stopEvaluationJob(args: StopEvaluationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopEvaluationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
360
|
-
/**
|
|
361
|
-
* @see {@link StopModelCustomizationJobCommand}
|
|
362
|
-
*/
|
|
363
|
-
stopModelCustomizationJob(args: StopModelCustomizationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopModelCustomizationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
364
|
-
/**
|
|
365
|
-
* @see {@link StopModelInvocationJobCommand}
|
|
366
|
-
*/
|
|
367
|
-
stopModelInvocationJob(args: StopModelInvocationJobCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopModelInvocationJobCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
368
|
-
/**
|
|
369
|
-
* @see {@link TagResourceCommand}
|
|
370
|
-
*/
|
|
371
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
372
|
-
/**
|
|
373
|
-
* @see {@link UntagResourceCommand}
|
|
374
|
-
*/
|
|
375
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
376
|
-
/**
|
|
377
|
-
* @see {@link UpdateAutomatedReasoningPolicyCommand}
|
|
378
|
-
*/
|
|
379
|
-
updateAutomatedReasoningPolicy(args: UpdateAutomatedReasoningPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAutomatedReasoningPolicyCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | TooManyTagsError | ValidationError>;
|
|
380
|
-
/**
|
|
381
|
-
* @see {@link UpdateAutomatedReasoningPolicyAnnotationsCommand}
|
|
382
|
-
*/
|
|
383
|
-
updateAutomatedReasoningPolicyAnnotations(args: UpdateAutomatedReasoningPolicyAnnotationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAutomatedReasoningPolicyAnnotationsCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
384
|
-
/**
|
|
385
|
-
* @see {@link UpdateAutomatedReasoningPolicyTestCaseCommand}
|
|
386
|
-
*/
|
|
387
|
-
updateAutomatedReasoningPolicyTestCase(args: UpdateAutomatedReasoningPolicyTestCaseCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAutomatedReasoningPolicyTestCaseCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceInUseError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
388
|
-
/**
|
|
389
|
-
* @see {@link UpdateCustomModelDeploymentCommand}
|
|
390
|
-
*/
|
|
391
|
-
updateCustomModelDeployment(args: UpdateCustomModelDeploymentCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCustomModelDeploymentCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
392
|
-
/**
|
|
393
|
-
* @see {@link UpdateGuardrailCommand}
|
|
394
|
-
*/
|
|
395
|
-
updateGuardrail(args: UpdateGuardrailCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateGuardrailCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
396
|
-
/**
|
|
397
|
-
* @see {@link UpdateMarketplaceModelEndpointCommand}
|
|
398
|
-
*/
|
|
399
|
-
updateMarketplaceModelEndpoint(args: UpdateMarketplaceModelEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMarketplaceModelEndpointCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ThrottlingError | ValidationError>;
|
|
400
|
-
/**
|
|
401
|
-
* @see {@link UpdateProvisionedModelThroughputCommand}
|
|
402
|
-
*/
|
|
403
|
-
updateProvisionedModelThroughput(args: UpdateProvisionedModelThroughputCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateProvisionedModelThroughputCommandOutput, Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError>;
|
|
404
|
-
}
|
|
405
|
-
/**
|
|
406
|
-
* @since 1.0.0
|
|
407
|
-
* @category constructors
|
|
408
|
-
*/
|
|
409
|
-
export declare const makeBedrockService: Effect.Effect<BedrockService$, never, Instance.BedrockClientInstance>;
|
|
410
|
-
declare const BedrockService_base: import("effect/Context").TagClass<BedrockService, "@effect-aws/client-bedrock/BedrockService", BedrockService$> & Effect.Tag.Proxy<BedrockService, BedrockService$> & {
|
|
411
|
-
use: <X>(body: (_: BedrockService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, BedrockService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, BedrockService> : Effect.Effect<X, never, BedrockService>;
|
|
412
|
-
};
|
|
413
|
-
/**
|
|
414
|
-
* @since 1.0.0
|
|
415
|
-
* @category models
|
|
416
|
-
*/
|
|
417
|
-
export declare class BedrockService extends BedrockService_base {
|
|
418
|
-
static readonly defaultLayer: Layer.Layer<BedrockService, never, never>;
|
|
419
|
-
static readonly layer: (config: BedrockService.Config) => Layer.Layer<BedrockService, never, never>;
|
|
420
|
-
static readonly baseLayer: (evaluate: (defaultConfig: BedrockClientConfig) => BedrockClient) => Layer.Layer<BedrockService, never, never>;
|
|
421
|
-
}
|
|
422
|
-
/**
|
|
423
|
-
* @since 1.0.0
|
|
424
|
-
*/
|
|
425
|
-
export declare namespace BedrockService {
|
|
426
|
-
/**
|
|
427
|
-
* @since 1.0.0
|
|
428
|
-
*/
|
|
429
|
-
interface Config extends Omit<BedrockClientConfig, "logger"> {
|
|
430
|
-
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
431
|
-
}
|
|
432
|
-
/**
|
|
433
|
-
* @since 1.0.0
|
|
434
|
-
*/
|
|
435
|
-
type Type = BedrockService$;
|
|
436
|
-
}
|
|
437
|
-
export {};
|
|
438
|
-
//# sourceMappingURL=BedrockService.d.ts.map
|