@aws-sdk/client-bedrock 3.529.1 → 3.535.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/dist-types/Bedrock.d.ts +7 -1
- package/dist-types/BedrockClient.d.ts +1 -1
- package/dist-types/commands/CreateModelCustomizationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateProvisionedModelThroughputCommand.d.ts +2 -1
- package/dist-types/commands/DeleteCustomModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteModelInvocationLoggingConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteProvisionedModelThroughputCommand.d.ts +2 -1
- package/dist-types/commands/GetCustomModelCommand.d.ts +2 -1
- package/dist-types/commands/GetFoundationModelCommand.d.ts +2 -1
- package/dist-types/commands/GetModelCustomizationJobCommand.d.ts +2 -1
- package/dist-types/commands/GetModelInvocationLoggingConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetProvisionedModelThroughputCommand.d.ts +2 -1
- package/dist-types/commands/ListCustomModelsCommand.d.ts +2 -1
- package/dist-types/commands/ListFoundationModelsCommand.d.ts +2 -1
- package/dist-types/commands/ListModelCustomizationJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListProvisionedModelThroughputsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutModelInvocationLoggingConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/StopModelCustomizationJobCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateProvisionedModelThroughputCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +221 -221
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/Bedrock.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateModelCustomizationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateProvisionedModelThroughputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteCustomModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteModelInvocationLoggingConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteProvisionedModelThroughputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetCustomModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetFoundationModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetModelCustomizationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetModelInvocationLoggingConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetProvisionedModelThroughputCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListCustomModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListFoundationModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListModelCustomizationJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListProvisionedModelThroughputsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PutModelInvocationLoggingConfigurationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopModelCustomizationJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateProvisionedModelThroughputCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +40 -40
package/dist-types/Bedrock.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ export interface Bedrock {
|
|
|
42
42
|
/**
|
|
43
43
|
* @see {@link DeleteModelInvocationLoggingConfigurationCommand}
|
|
44
44
|
*/
|
|
45
|
+
deleteModelInvocationLoggingConfiguration(): Promise<DeleteModelInvocationLoggingConfigurationCommandOutput>;
|
|
45
46
|
deleteModelInvocationLoggingConfiguration(args: DeleteModelInvocationLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteModelInvocationLoggingConfigurationCommandOutput>;
|
|
46
47
|
deleteModelInvocationLoggingConfiguration(args: DeleteModelInvocationLoggingConfigurationCommandInput, cb: (err: any, data?: DeleteModelInvocationLoggingConfigurationCommandOutput) => void): void;
|
|
47
48
|
deleteModelInvocationLoggingConfiguration(args: DeleteModelInvocationLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteModelInvocationLoggingConfigurationCommandOutput) => void): void;
|
|
@@ -72,6 +73,7 @@ export interface Bedrock {
|
|
|
72
73
|
/**
|
|
73
74
|
* @see {@link GetModelInvocationLoggingConfigurationCommand}
|
|
74
75
|
*/
|
|
76
|
+
getModelInvocationLoggingConfiguration(): Promise<GetModelInvocationLoggingConfigurationCommandOutput>;
|
|
75
77
|
getModelInvocationLoggingConfiguration(args: GetModelInvocationLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetModelInvocationLoggingConfigurationCommandOutput>;
|
|
76
78
|
getModelInvocationLoggingConfiguration(args: GetModelInvocationLoggingConfigurationCommandInput, cb: (err: any, data?: GetModelInvocationLoggingConfigurationCommandOutput) => void): void;
|
|
77
79
|
getModelInvocationLoggingConfiguration(args: GetModelInvocationLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetModelInvocationLoggingConfigurationCommandOutput) => void): void;
|
|
@@ -84,24 +86,28 @@ export interface Bedrock {
|
|
|
84
86
|
/**
|
|
85
87
|
* @see {@link ListCustomModelsCommand}
|
|
86
88
|
*/
|
|
89
|
+
listCustomModels(): Promise<ListCustomModelsCommandOutput>;
|
|
87
90
|
listCustomModels(args: ListCustomModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomModelsCommandOutput>;
|
|
88
91
|
listCustomModels(args: ListCustomModelsCommandInput, cb: (err: any, data?: ListCustomModelsCommandOutput) => void): void;
|
|
89
92
|
listCustomModels(args: ListCustomModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomModelsCommandOutput) => void): void;
|
|
90
93
|
/**
|
|
91
94
|
* @see {@link ListFoundationModelsCommand}
|
|
92
95
|
*/
|
|
96
|
+
listFoundationModels(): Promise<ListFoundationModelsCommandOutput>;
|
|
93
97
|
listFoundationModels(args: ListFoundationModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListFoundationModelsCommandOutput>;
|
|
94
98
|
listFoundationModels(args: ListFoundationModelsCommandInput, cb: (err: any, data?: ListFoundationModelsCommandOutput) => void): void;
|
|
95
99
|
listFoundationModels(args: ListFoundationModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFoundationModelsCommandOutput) => void): void;
|
|
96
100
|
/**
|
|
97
101
|
* @see {@link ListModelCustomizationJobsCommand}
|
|
98
102
|
*/
|
|
103
|
+
listModelCustomizationJobs(): Promise<ListModelCustomizationJobsCommandOutput>;
|
|
99
104
|
listModelCustomizationJobs(args: ListModelCustomizationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListModelCustomizationJobsCommandOutput>;
|
|
100
105
|
listModelCustomizationJobs(args: ListModelCustomizationJobsCommandInput, cb: (err: any, data?: ListModelCustomizationJobsCommandOutput) => void): void;
|
|
101
106
|
listModelCustomizationJobs(args: ListModelCustomizationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListModelCustomizationJobsCommandOutput) => void): void;
|
|
102
107
|
/**
|
|
103
108
|
* @see {@link ListProvisionedModelThroughputsCommand}
|
|
104
109
|
*/
|
|
110
|
+
listProvisionedModelThroughputs(): Promise<ListProvisionedModelThroughputsCommandOutput>;
|
|
105
111
|
listProvisionedModelThroughputs(args: ListProvisionedModelThroughputsCommandInput, options?: __HttpHandlerOptions): Promise<ListProvisionedModelThroughputsCommandOutput>;
|
|
106
112
|
listProvisionedModelThroughputs(args: ListProvisionedModelThroughputsCommandInput, cb: (err: any, data?: ListProvisionedModelThroughputsCommandOutput) => void): void;
|
|
107
113
|
listProvisionedModelThroughputs(args: ListProvisionedModelThroughputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProvisionedModelThroughputsCommandOutput) => void): void;
|
|
@@ -143,8 +149,8 @@ export interface Bedrock {
|
|
|
143
149
|
updateProvisionedModelThroughput(args: UpdateProvisionedModelThroughputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProvisionedModelThroughputCommandOutput) => void): void;
|
|
144
150
|
}
|
|
145
151
|
/**
|
|
146
|
-
* @public
|
|
147
152
|
* <p>Describes the API operations for creating and managing Amazon Bedrock models.</p>
|
|
153
|
+
* @public
|
|
148
154
|
*/
|
|
149
155
|
export declare class Bedrock extends BedrockClient implements Bedrock {
|
|
150
156
|
}
|
|
@@ -171,8 +171,8 @@ export type BedrockClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
|
|
|
171
171
|
export interface BedrockClientResolvedConfig extends BedrockClientResolvedConfigType {
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
|
-
* @public
|
|
175
174
|
* <p>Describes the API operations for creating and managing Amazon Bedrock models.</p>
|
|
175
|
+
* @public
|
|
176
176
|
*/
|
|
177
177
|
export declare class BedrockClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, BedrockClientResolvedConfig> {
|
|
178
178
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateModelCustomizationJobCommandOutput extends CreateModelCus
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateModelCustomizationJobCommand_base: {
|
|
24
24
|
new (input: CreateModelCustomizationJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateModelCustomizationJobCommandInput, CreateModelCustomizationJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateModelCustomizationJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateModelCustomizationJobCommandInput, CreateModelCustomizationJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a fine-tuning job to customize a base model.</p>
|
|
30
30
|
* <p>You specify the base foundation model and the location of the training data.
|
|
31
31
|
* After the model-customization job completes successfully, your custom model resource will be ready to use. Training data
|
|
@@ -130,6 +130,7 @@ declare const CreateModelCustomizationJobCommand_base: {
|
|
|
130
130
|
* @throws {@link BedrockServiceException}
|
|
131
131
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
132
132
|
*
|
|
133
|
+
* @public
|
|
133
134
|
*/
|
|
134
135
|
export declare class CreateModelCustomizationJobCommand extends CreateModelCustomizationJobCommand_base {
|
|
135
136
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateProvisionedModelThroughputCommandOutput extends CreatePro
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateProvisionedModelThroughputCommand_base: {
|
|
24
24
|
new (input: CreateProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProvisionedModelThroughputCommandInput, CreateProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProvisionedModelThroughputCommandInput, CreateProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a provisioned throughput with dedicated capacity for a foundation model or a fine-tuned model.</p>
|
|
30
30
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Provisioned throughput</a> in the Bedrock User Guide.</p>
|
|
31
31
|
* @example
|
|
@@ -86,6 +86,7 @@ declare const CreateProvisionedModelThroughputCommand_base: {
|
|
|
86
86
|
* @throws {@link BedrockServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class CreateProvisionedModelThroughputCommand extends CreateProvisionedModelThroughputCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteCustomModelCommandOutput extends DeleteCustomModelRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteCustomModelCommand_base: {
|
|
24
24
|
new (input: DeleteCustomModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCustomModelCommandInput, DeleteCustomModelCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteCustomModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCustomModelCommandInput, DeleteCustomModelCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a custom model that you created earlier. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const DeleteCustomModelCommand_base: {
|
|
|
69
69
|
* @throws {@link BedrockServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteCustomModelCommand extends DeleteCustomModelCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteModelInvocationLoggingConfigurationCommandOutput extends
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteModelInvocationLoggingConfigurationCommand_base: {
|
|
24
24
|
new (input: DeleteModelInvocationLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteModelInvocationLoggingConfigurationCommandInput, DeleteModelInvocationLoggingConfigurationCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DeleteModelInvocationLoggingConfigurationCommandInput]): import("@smithy/smithy-client").CommandImpl<DeleteModelInvocationLoggingConfigurationCommandInput, DeleteModelInvocationLoggingConfigurationCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Delete the invocation logging. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -58,6 +58,7 @@ declare const DeleteModelInvocationLoggingConfigurationCommand_base: {
|
|
|
58
58
|
* @throws {@link BedrockServiceException}
|
|
59
59
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
60
60
|
*
|
|
61
|
+
* @public
|
|
61
62
|
*/
|
|
62
63
|
export declare class DeleteModelInvocationLoggingConfigurationCommand extends DeleteModelInvocationLoggingConfigurationCommand_base {
|
|
63
64
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteProvisionedModelThroughputCommandOutput extends DeletePro
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteProvisionedModelThroughputCommand_base: {
|
|
24
24
|
new (input: DeleteProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProvisionedModelThroughputCommandInput, DeleteProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProvisionedModelThroughputCommandInput, DeleteProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a provisioned throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Provisioned throughput</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const DeleteProvisionedModelThroughputCommand_base: {
|
|
|
69
69
|
* @throws {@link BedrockServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteProvisionedModelThroughputCommand extends DeleteProvisionedModelThroughputCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetCustomModelCommandOutput extends GetCustomModelResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetCustomModelCommand_base: {
|
|
24
24
|
new (input: GetCustomModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetCustomModelCommandInput, GetCustomModelCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetCustomModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetCustomModelCommandInput, GetCustomModelCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get the properties associated with a Amazon Bedrock custom model that you have created.For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -99,6 +99,7 @@ declare const GetCustomModelCommand_base: {
|
|
|
99
99
|
* @throws {@link BedrockServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class GetCustomModelCommand extends GetCustomModelCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetFoundationModelCommandOutput extends GetFoundationModelRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetFoundationModelCommand_base: {
|
|
24
24
|
new (input: GetFoundationModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetFoundationModelCommandInput, GetFoundationModelCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetFoundationModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetFoundationModelCommandInput, GetFoundationModelCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get details about a Amazon Bedrock foundation model.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const GetFoundationModelCommand_base: {
|
|
|
89
89
|
* @throws {@link BedrockServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class GetFoundationModelCommand extends GetFoundationModelCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetModelCustomizationJobCommandOutput extends GetModelCustomiza
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetModelCustomizationJobCommand_base: {
|
|
24
24
|
new (input: GetModelCustomizationJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetModelCustomizationJobCommandInput, GetModelCustomizationJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetModelCustomizationJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetModelCustomizationJobCommandInput, GetModelCustomizationJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the properties associated with a model-customization job, including the status of the job.
|
|
30
30
|
* For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Bedrock User Guide.</p>
|
|
31
31
|
* @example
|
|
@@ -114,6 +114,7 @@ declare const GetModelCustomizationJobCommand_base: {
|
|
|
114
114
|
* @throws {@link BedrockServiceException}
|
|
115
115
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
116
116
|
*
|
|
117
|
+
* @public
|
|
117
118
|
*/
|
|
118
119
|
export declare class GetModelCustomizationJobCommand extends GetModelCustomizationJobCommand_base {
|
|
119
120
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetModelInvocationLoggingConfigurationCommandOutput extends Get
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetModelInvocationLoggingConfigurationCommand_base: {
|
|
24
24
|
new (input: GetModelInvocationLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetModelInvocationLoggingConfigurationCommandInput, GetModelInvocationLoggingConfigurationCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [GetModelInvocationLoggingConfigurationCommandInput]): import("@smithy/smithy-client").CommandImpl<GetModelInvocationLoggingConfigurationCommandInput, GetModelInvocationLoggingConfigurationCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get the current configuration values for model invocation logging.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const GetModelInvocationLoggingConfigurationCommand_base: {
|
|
|
76
76
|
* @throws {@link BedrockServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class GetModelInvocationLoggingConfigurationCommand extends GetModelInvocationLoggingConfigurationCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetProvisionedModelThroughputCommandOutput extends GetProvision
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetProvisionedModelThroughputCommand_base: {
|
|
24
24
|
new (input: GetProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<GetProvisionedModelThroughputCommandInput, GetProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<GetProvisionedModelThroughputCommandInput, GetProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get details for a provisioned throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Provisioned throughput</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const GetProvisionedModelThroughputCommand_base: {
|
|
|
80
80
|
* @throws {@link BedrockServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class GetProvisionedModelThroughputCommand extends GetProvisionedModelThroughputCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListCustomModelsCommandOutput extends ListCustomModelsResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListCustomModelsCommand_base: {
|
|
24
24
|
new (input: ListCustomModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCustomModelsCommandInput, ListCustomModelsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListCustomModelsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListCustomModelsCommandInput, ListCustomModelsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of the custom models that you have created with the <code>CreateModelCustomizationJob</code> operation.</p>
|
|
30
30
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Bedrock User Guide.</p>
|
|
31
31
|
* @example
|
|
@@ -84,6 +84,7 @@ declare const ListCustomModelsCommand_base: {
|
|
|
84
84
|
* @throws {@link BedrockServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class ListCustomModelsCommand extends ListCustomModelsCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListFoundationModelsCommandOutput extends ListFoundationModelsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListFoundationModelsCommand_base: {
|
|
24
24
|
new (input: ListFoundationModelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFoundationModelsCommandInput, ListFoundationModelsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListFoundationModelsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListFoundationModelsCommandInput, ListFoundationModelsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List of Amazon Bedrock foundation models that you can use. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/foundation-models.html">Foundation models</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -91,6 +91,7 @@ declare const ListFoundationModelsCommand_base: {
|
|
|
91
91
|
* @throws {@link BedrockServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class ListFoundationModelsCommand extends ListFoundationModelsCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListModelCustomizationJobsCommandOutput extends ListModelCustom
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListModelCustomizationJobsCommand_base: {
|
|
24
24
|
new (input: ListModelCustomizationJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListModelCustomizationJobsCommandInput, ListModelCustomizationJobsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListModelCustomizationJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListModelCustomizationJobsCommandInput, ListModelCustomizationJobsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of model customization jobs that you have submitted. You can filter the jobs to return based on
|
|
30
30
|
* one or more criteria.</p>
|
|
31
31
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Bedrock User Guide.</p>
|
|
@@ -88,6 +88,7 @@ declare const ListModelCustomizationJobsCommand_base: {
|
|
|
88
88
|
* @throws {@link BedrockServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class ListModelCustomizationJobsCommand extends ListModelCustomizationJobsCommand_base {
|
|
93
94
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListProvisionedModelThroughputsCommandOutput extends ListProvis
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListProvisionedModelThroughputsCommand_base: {
|
|
24
24
|
new (input: ListProvisionedModelThroughputsCommandInput): import("@smithy/smithy-client").CommandImpl<ListProvisionedModelThroughputsCommandInput, ListProvisionedModelThroughputsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListProvisionedModelThroughputsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListProvisionedModelThroughputsCommandInput, ListProvisionedModelThroughputsCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List the provisioned capacities. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Provisioned throughput</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const ListProvisionedModelThroughputsCommand_base: {
|
|
|
89
89
|
* @throws {@link BedrockServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class ListProvisionedModelThroughputsCommand extends ListProvisionedModelThroughputsCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>List the tags associated with the specified resource.</p>
|
|
30
30
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Tagging resources</a> in the Bedrock User Guide.</p>
|
|
31
31
|
* @example
|
|
@@ -74,6 +74,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link BedrockServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
76
76
|
*
|
|
77
|
+
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
79
80
|
}
|
|
@@ -22,10 +22,10 @@ export interface PutModelInvocationLoggingConfigurationCommandOutput extends Put
|
|
|
22
22
|
}
|
|
23
23
|
declare const PutModelInvocationLoggingConfigurationCommand_base: {
|
|
24
24
|
new (input: PutModelInvocationLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutModelInvocationLoggingConfigurationCommandInput, PutModelInvocationLoggingConfigurationCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PutModelInvocationLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<PutModelInvocationLoggingConfigurationCommandInput, PutModelInvocationLoggingConfigurationCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Set the configuration values for model invocation logging.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const PutModelInvocationLoggingConfigurationCommand_base: {
|
|
|
79
79
|
* @throws {@link BedrockServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class PutModelInvocationLoggingConfigurationCommand extends PutModelInvocationLoggingConfigurationCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopModelCustomizationJobCommandOutput extends StopModelCustomi
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopModelCustomizationJobCommand_base: {
|
|
24
24
|
new (input: StopModelCustomizationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopModelCustomizationJobCommandInput, StopModelCustomizationJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopModelCustomizationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopModelCustomizationJobCommandInput, StopModelCustomizationJobCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Stops an active model customization job. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/custom-models.html">Custom models</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const StopModelCustomizationJobCommand_base: {
|
|
|
69
69
|
* @throws {@link BedrockServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class StopModelCustomizationJobCommand extends StopModelCustomizationJobCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Associate tags with a resource. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Tagging resources</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -76,6 +76,7 @@ declare const TagResourceCommand_base: {
|
|
|
76
76
|
* @throws {@link BedrockServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Remove one or more tags from a resource. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Tagging resources</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link BedrockServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateProvisionedModelThroughputCommandOutput extends UpdatePro
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateProvisionedModelThroughputCommand_base: {
|
|
24
24
|
new (input: UpdateProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProvisionedModelThroughputCommandInput, UpdateProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateProvisionedModelThroughputCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProvisionedModelThroughputCommandInput, UpdateProvisionedModelThroughputCommandOutput, BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Update a provisioned throughput. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/what-is-service.html">Provisioned throughput</a> in the Bedrock User Guide.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,6 +68,7 @@ declare const UpdateProvisionedModelThroughputCommand_base: {
|
|
|
68
68
|
* @throws {@link BedrockServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from Bedrock service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class UpdateProvisionedModelThroughputCommand extends UpdateProvisionedModelThroughputCommand_base {
|
|
73
74
|
}
|