@aws-sdk/client-bedrock-data-automation 3.706.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 +201 -0
- package/README.md +293 -0
- package/dist-cjs/BedrockDataAutomation.js +33 -0
- package/dist-cjs/BedrockDataAutomationClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateBlueprintCommand.js +27 -0
- package/dist-cjs/commands/CreateBlueprintVersionCommand.js +27 -0
- package/dist-cjs/commands/CreateDataAutomationProjectCommand.js +27 -0
- package/dist-cjs/commands/DeleteBlueprintCommand.js +26 -0
- package/dist-cjs/commands/DeleteDataAutomationProjectCommand.js +26 -0
- package/dist-cjs/commands/GetBlueprintCommand.js +27 -0
- package/dist-cjs/commands/GetDataAutomationProjectCommand.js +27 -0
- package/dist-cjs/commands/ListBlueprintsCommand.js +27 -0
- package/dist-cjs/commands/ListDataAutomationProjectsCommand.js +27 -0
- package/dist-cjs/commands/UpdateBlueprintCommand.js +27 -0
- package/dist-cjs/commands/UpdateDataAutomationProjectCommand.js +27 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/BedrockDataAutomationServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +252 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListBlueprintsPaginator.js +7 -0
- package/dist-cjs/pagination/ListDataAutomationProjectsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +560 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/BedrockDataAutomation.js +29 -0
- package/dist-es/BedrockDataAutomationClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateBlueprintCommand.js +23 -0
- package/dist-es/commands/CreateBlueprintVersionCommand.js +23 -0
- package/dist-es/commands/CreateDataAutomationProjectCommand.js +23 -0
- package/dist-es/commands/DeleteBlueprintCommand.js +22 -0
- package/dist-es/commands/DeleteDataAutomationProjectCommand.js +22 -0
- package/dist-es/commands/GetBlueprintCommand.js +23 -0
- package/dist-es/commands/GetDataAutomationProjectCommand.js +23 -0
- package/dist-es/commands/ListBlueprintsCommand.js +23 -0
- package/dist-es/commands/ListDataAutomationProjectsCommand.js +23 -0
- package/dist-es/commands/UpdateBlueprintCommand.js +23 -0
- package/dist-es/commands/UpdateDataAutomationProjectCommand.js +23 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/BedrockDataAutomationServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +227 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListBlueprintsPaginator.js +4 -0
- package/dist-es/pagination/ListDataAutomationProjectsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +535 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/BedrockDataAutomation.d.ts +89 -0
- package/dist-types/BedrockDataAutomationClient.d.ts +180 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateBlueprintCommand.d.ts +112 -0
- package/dist-types/commands/CreateBlueprintVersionCommand.d.ts +103 -0
- package/dist-types/commands/CreateDataAutomationProjectCommand.d.ts +197 -0
- package/dist-types/commands/DeleteBlueprintCommand.d.ts +85 -0
- package/dist-types/commands/DeleteDataAutomationProjectCommand.d.ts +87 -0
- package/dist-types/commands/GetBlueprintCommand.d.ts +101 -0
- package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +196 -0
- package/dist-types/commands/ListBlueprintsCommand.d.ts +104 -0
- package/dist-types/commands/ListDataAutomationProjectsCommand.d.ts +102 -0
- package/dist-types/commands/UpdateBlueprintCommand.d.ts +104 -0
- package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +190 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +14 -0
- package/dist-types/models/BedrockDataAutomationServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1453 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListBlueprintsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataAutomationProjectsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist-types/runtimeConfig.d.ts +48 -0
- package/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/BedrockDataAutomation.d.ts +196 -0
- package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +187 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateBlueprintCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateBlueprintVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDataAutomationProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteBlueprintCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteDataAutomationProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetBlueprintCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetDataAutomationProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDataAutomationProjectsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateDataAutomationProjectCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/BedrockDataAutomationServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +463 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListBlueprintsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataAutomationProjectsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +137 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationClient";
|
|
4
|
+
import { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListBlueprintsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListBlueprintsCommandInput extends ListBlueprintsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListBlueprintsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListBlueprintsCommandOutput extends ListBlueprintsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListBlueprintsCommand_base: {
|
|
25
|
+
new (input: ListBlueprintsCommandInput): import("@smithy/smithy-client").CommandImpl<ListBlueprintsCommandInput, ListBlueprintsCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListBlueprintsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListBlueprintsCommandInput, ListBlueprintsCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Lists all existing Amazon Bedrock Keystone Blueprints
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { BedrockDataAutomationClient, ListBlueprintsCommand } from "@aws-sdk/client-bedrock-data-automation"; // ES Modules import
|
|
35
|
+
* // const { BedrockDataAutomationClient, ListBlueprintsCommand } = require("@aws-sdk/client-bedrock-data-automation"); // CommonJS import
|
|
36
|
+
* const client = new BedrockDataAutomationClient(config);
|
|
37
|
+
* const input = { // ListBlueprintsRequest
|
|
38
|
+
* blueprintArn: "STRING_VALUE",
|
|
39
|
+
* resourceOwner: "SERVICE" || "ACCOUNT",
|
|
40
|
+
* blueprintStageFilter: "DEVELOPMENT" || "LIVE" || "ALL",
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* nextToken: "STRING_VALUE",
|
|
43
|
+
* projectFilter: { // DataAutomationProjectFilter
|
|
44
|
+
* projectArn: "STRING_VALUE", // required
|
|
45
|
+
* projectStage: "DEVELOPMENT" || "LIVE",
|
|
46
|
+
* },
|
|
47
|
+
* };
|
|
48
|
+
* const command = new ListBlueprintsCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // ListBlueprintsResponse
|
|
51
|
+
* // blueprints: [ // Blueprints // required
|
|
52
|
+
* // { // BlueprintSummary
|
|
53
|
+
* // blueprintArn: "STRING_VALUE", // required
|
|
54
|
+
* // blueprintVersion: "STRING_VALUE",
|
|
55
|
+
* // blueprintStage: "DEVELOPMENT" || "LIVE",
|
|
56
|
+
* // blueprintName: "STRING_VALUE",
|
|
57
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // lastModifiedTime: new Date("TIMESTAMP"),
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListBlueprintsCommandInput - {@link ListBlueprintsCommandInput}
|
|
67
|
+
* @returns {@link ListBlueprintsCommandOutput}
|
|
68
|
+
* @see {@link ListBlueprintsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListBlueprintsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link BedrockDataAutomationClientResolvedConfig | config} for BedrockDataAutomationClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* This exception is thrown when a request is denied per access permissions
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* This exception is thrown if there was an unexpected error during processing of request
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* This exception is thrown when a resource referenced by the operation does not exist
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* This exception is thrown when the number of requests exceeds the limit
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* This exception is thrown when the request's input validation fails
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link BedrockDataAutomationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from BedrockDataAutomation service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class ListBlueprintsCommand extends ListBlueprintsCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: ListBlueprintsRequest;
|
|
97
|
+
output: ListBlueprintsResponse;
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: ListBlueprintsCommandInput;
|
|
101
|
+
output: ListBlueprintsCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationClient";
|
|
4
|
+
import { ListDataAutomationProjectsRequest, ListDataAutomationProjectsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListDataAutomationProjectsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListDataAutomationProjectsCommandInput extends ListDataAutomationProjectsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListDataAutomationProjectsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListDataAutomationProjectsCommandOutput extends ListDataAutomationProjectsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListDataAutomationProjectsCommand_base: {
|
|
25
|
+
new (input: ListDataAutomationProjectsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataAutomationProjectsCommandInput, ListDataAutomationProjectsCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListDataAutomationProjectsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDataAutomationProjectsCommandInput, ListDataAutomationProjectsCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Lists all existing Amazon Bedrock Keystone DataAutomationProjects
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { BedrockDataAutomationClient, ListDataAutomationProjectsCommand } from "@aws-sdk/client-bedrock-data-automation"; // ES Modules import
|
|
35
|
+
* // const { BedrockDataAutomationClient, ListDataAutomationProjectsCommand } = require("@aws-sdk/client-bedrock-data-automation"); // CommonJS import
|
|
36
|
+
* const client = new BedrockDataAutomationClient(config);
|
|
37
|
+
* const input = { // ListDataAutomationProjectsRequest
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* nextToken: "STRING_VALUE",
|
|
40
|
+
* projectStageFilter: "DEVELOPMENT" || "LIVE" || "ALL",
|
|
41
|
+
* blueprintFilter: { // BlueprintFilter
|
|
42
|
+
* blueprintArn: "STRING_VALUE", // required
|
|
43
|
+
* blueprintVersion: "STRING_VALUE",
|
|
44
|
+
* blueprintStage: "DEVELOPMENT" || "LIVE",
|
|
45
|
+
* },
|
|
46
|
+
* resourceOwner: "SERVICE" || "ACCOUNT",
|
|
47
|
+
* };
|
|
48
|
+
* const command = new ListDataAutomationProjectsCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // ListDataAutomationProjectsResponse
|
|
51
|
+
* // projects: [ // DataAutomationProjectSummaries // required
|
|
52
|
+
* // { // DataAutomationProjectSummary
|
|
53
|
+
* // projectArn: "STRING_VALUE", // required
|
|
54
|
+
* // projectStage: "DEVELOPMENT" || "LIVE",
|
|
55
|
+
* // projectName: "STRING_VALUE",
|
|
56
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // nextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
62
|
+
* ```
|
|
63
|
+
*
|
|
64
|
+
* @param ListDataAutomationProjectsCommandInput - {@link ListDataAutomationProjectsCommandInput}
|
|
65
|
+
* @returns {@link ListDataAutomationProjectsCommandOutput}
|
|
66
|
+
* @see {@link ListDataAutomationProjectsCommandInput} for command's `input` shape.
|
|
67
|
+
* @see {@link ListDataAutomationProjectsCommandOutput} for command's `response` shape.
|
|
68
|
+
* @see {@link BedrockDataAutomationClientResolvedConfig | config} for BedrockDataAutomationClient's `config` shape.
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
71
|
+
* This exception is thrown when a request is denied per access permissions
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalServerException} (server fault)
|
|
74
|
+
* This exception is thrown if there was an unexpected error during processing of request
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
77
|
+
* This exception is thrown when a resource referenced by the operation does not exist
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
80
|
+
* This exception is thrown when the number of requests exceeds the limit
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ValidationException} (client fault)
|
|
83
|
+
* This exception is thrown when the request's input validation fails
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link BedrockDataAutomationServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from BedrockDataAutomation service.</p>
|
|
87
|
+
*
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export declare class ListDataAutomationProjectsCommand extends ListDataAutomationProjectsCommand_base {
|
|
91
|
+
/** @internal type navigation helper, not in runtime. */
|
|
92
|
+
protected static __types: {
|
|
93
|
+
api: {
|
|
94
|
+
input: ListDataAutomationProjectsRequest;
|
|
95
|
+
output: ListDataAutomationProjectsResponse;
|
|
96
|
+
};
|
|
97
|
+
sdk: {
|
|
98
|
+
input: ListDataAutomationProjectsCommandInput;
|
|
99
|
+
output: ListDataAutomationProjectsCommandOutput;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationClient";
|
|
4
|
+
import { UpdateBlueprintRequest, UpdateBlueprintResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateBlueprintCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateBlueprintCommandInput extends UpdateBlueprintRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateBlueprintCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateBlueprintCommandOutput extends UpdateBlueprintResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateBlueprintCommand_base: {
|
|
25
|
+
new (input: UpdateBlueprintCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateBlueprintCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Updates an existing Amazon Bedrock Blueprint
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { BedrockDataAutomationClient, UpdateBlueprintCommand } from "@aws-sdk/client-bedrock-data-automation"; // ES Modules import
|
|
35
|
+
* // const { BedrockDataAutomationClient, UpdateBlueprintCommand } = require("@aws-sdk/client-bedrock-data-automation"); // CommonJS import
|
|
36
|
+
* const client = new BedrockDataAutomationClient(config);
|
|
37
|
+
* const input = { // UpdateBlueprintRequest
|
|
38
|
+
* blueprintArn: "STRING_VALUE", // required
|
|
39
|
+
* schema: "STRING_VALUE", // required
|
|
40
|
+
* blueprintStage: "DEVELOPMENT" || "LIVE",
|
|
41
|
+
* };
|
|
42
|
+
* const command = new UpdateBlueprintCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // UpdateBlueprintResponse
|
|
45
|
+
* // blueprint: { // Blueprint
|
|
46
|
+
* // blueprintArn: "STRING_VALUE", // required
|
|
47
|
+
* // schema: "STRING_VALUE", // required
|
|
48
|
+
* // type: "DOCUMENT" || "IMAGE", // required
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // lastModifiedTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // blueprintName: "STRING_VALUE", // required
|
|
52
|
+
* // blueprintVersion: "STRING_VALUE",
|
|
53
|
+
* // blueprintStage: "DEVELOPMENT" || "LIVE",
|
|
54
|
+
* // kmsKeyId: "STRING_VALUE",
|
|
55
|
+
* // kmsEncryptionContext: { // KmsEncryptionContext
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* @param UpdateBlueprintCommandInput - {@link UpdateBlueprintCommandInput}
|
|
64
|
+
* @returns {@link UpdateBlueprintCommandOutput}
|
|
65
|
+
* @see {@link UpdateBlueprintCommandInput} for command's `input` shape.
|
|
66
|
+
* @see {@link UpdateBlueprintCommandOutput} for command's `response` shape.
|
|
67
|
+
* @see {@link BedrockDataAutomationClientResolvedConfig | config} for BedrockDataAutomationClient's `config` shape.
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
70
|
+
* This exception is thrown when a request is denied per access permissions
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ConflictException} (client fault)
|
|
73
|
+
* This exception is thrown when there is a conflict performing an operation
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* This exception is thrown if there was an unexpected error during processing of request
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* This exception is thrown when a resource referenced by the operation does not exist
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* This exception is thrown when the number of requests exceeds the limit
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* This exception is thrown when the request's input validation fails
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link BedrockDataAutomationServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from BedrockDataAutomation service.</p>
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class UpdateBlueprintCommand extends UpdateBlueprintCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: UpdateBlueprintRequest;
|
|
97
|
+
output: UpdateBlueprintResponse;
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: UpdateBlueprintCommandInput;
|
|
101
|
+
output: UpdateBlueprintCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockDataAutomationClient";
|
|
4
|
+
import { UpdateDataAutomationProjectRequest, UpdateDataAutomationProjectResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateDataAutomationProjectCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateDataAutomationProjectCommandInput extends UpdateDataAutomationProjectRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateDataAutomationProjectCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateDataAutomationProjectCommandOutput extends UpdateDataAutomationProjectResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateDataAutomationProjectCommand_base: {
|
|
25
|
+
new (input: UpdateDataAutomationProjectCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDataAutomationProjectCommandInput, UpdateDataAutomationProjectCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateDataAutomationProjectCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDataAutomationProjectCommandInput, UpdateDataAutomationProjectCommandOutput, BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Updates an existing Amazon Bedrock DataAutomationProject
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { BedrockDataAutomationClient, UpdateDataAutomationProjectCommand } from "@aws-sdk/client-bedrock-data-automation"; // ES Modules import
|
|
35
|
+
* // const { BedrockDataAutomationClient, UpdateDataAutomationProjectCommand } = require("@aws-sdk/client-bedrock-data-automation"); // CommonJS import
|
|
36
|
+
* const client = new BedrockDataAutomationClient(config);
|
|
37
|
+
* const input = { // UpdateDataAutomationProjectRequest
|
|
38
|
+
* projectArn: "STRING_VALUE", // required
|
|
39
|
+
* projectStage: "DEVELOPMENT" || "LIVE",
|
|
40
|
+
* projectDescription: "STRING_VALUE",
|
|
41
|
+
* standardOutputConfiguration: { // StandardOutputConfiguration
|
|
42
|
+
* document: { // DocumentStandardOutputConfiguration
|
|
43
|
+
* extraction: { // DocumentStandardExtraction
|
|
44
|
+
* granularity: { // DocumentExtractionGranularity
|
|
45
|
+
* types: [ // DocumentExtractionGranularityTypes
|
|
46
|
+
* "DOCUMENT" || "PAGE" || "ELEMENT" || "WORD" || "LINE",
|
|
47
|
+
* ],
|
|
48
|
+
* },
|
|
49
|
+
* boundingBox: { // DocumentBoundingBox
|
|
50
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* generativeField: { // DocumentStandardGenerativeField
|
|
54
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
55
|
+
* },
|
|
56
|
+
* outputFormat: { // DocumentOutputFormat
|
|
57
|
+
* textFormat: { // DocumentOutputTextFormat
|
|
58
|
+
* types: [ // DocumentOutputTextFormatTypes
|
|
59
|
+
* "PLAIN_TEXT" || "MARKDOWN" || "HTML" || "CSV",
|
|
60
|
+
* ],
|
|
61
|
+
* },
|
|
62
|
+
* additionalFileFormat: { // DocumentOutputAdditionalFileFormat
|
|
63
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
64
|
+
* },
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* image: { // ImageStandardOutputConfiguration
|
|
68
|
+
* extraction: { // ImageStandardExtraction
|
|
69
|
+
* category: { // ImageExtractionCategory
|
|
70
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
71
|
+
* types: [ // ImageExtractionCategoryTypes
|
|
72
|
+
* "CONTENT_MODERATION" || "TEXT_DETECTION",
|
|
73
|
+
* ],
|
|
74
|
+
* },
|
|
75
|
+
* boundingBox: { // ImageBoundingBox
|
|
76
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
77
|
+
* },
|
|
78
|
+
* },
|
|
79
|
+
* generativeField: { // ImageStandardGenerativeField
|
|
80
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
81
|
+
* types: [ // ImageStandardGenerativeFieldTypes
|
|
82
|
+
* "IMAGE_SUMMARY" || "IAB",
|
|
83
|
+
* ],
|
|
84
|
+
* },
|
|
85
|
+
* },
|
|
86
|
+
* video: { // VideoStandardOutputConfiguration
|
|
87
|
+
* extraction: { // VideoStandardExtraction
|
|
88
|
+
* category: { // VideoExtractionCategory
|
|
89
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
90
|
+
* types: [ // VideoExtractionCategoryTypes
|
|
91
|
+
* "CONTENT_MODERATION" || "TEXT_DETECTION" || "TRANSCRIPT",
|
|
92
|
+
* ],
|
|
93
|
+
* },
|
|
94
|
+
* boundingBox: { // VideoBoundingBox
|
|
95
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
96
|
+
* },
|
|
97
|
+
* },
|
|
98
|
+
* generativeField: { // VideoStandardGenerativeField
|
|
99
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
100
|
+
* types: [ // VideoStandardGenerativeFieldTypes
|
|
101
|
+
* "VIDEO_SUMMARY" || "SCENE_SUMMARY" || "IAB",
|
|
102
|
+
* ],
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* audio: { // AudioStandardOutputConfiguration
|
|
106
|
+
* extraction: { // AudioStandardExtraction
|
|
107
|
+
* category: { // AudioExtractionCategory
|
|
108
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
109
|
+
* types: [ // AudioExtractionCategoryTypes
|
|
110
|
+
* "AUDIO_CONTENT_MODERATION" || "CHAPTER_CONTENT_MODERATION" || "TRANSCRIPT",
|
|
111
|
+
* ],
|
|
112
|
+
* },
|
|
113
|
+
* },
|
|
114
|
+
* generativeField: { // AudioStandardGenerativeField
|
|
115
|
+
* state: "ENABLED" || "DISABLED", // required
|
|
116
|
+
* types: [ // AudioStandardGenerativeFieldTypes
|
|
117
|
+
* "AUDIO_SUMMARY" || "CHAPTER_SUMMARY" || "IAB",
|
|
118
|
+
* ],
|
|
119
|
+
* },
|
|
120
|
+
* },
|
|
121
|
+
* },
|
|
122
|
+
* customOutputConfiguration: { // CustomOutputConfiguration
|
|
123
|
+
* blueprints: [ // BlueprintItems
|
|
124
|
+
* { // BlueprintItem
|
|
125
|
+
* blueprintArn: "STRING_VALUE", // required
|
|
126
|
+
* blueprintVersion: "STRING_VALUE",
|
|
127
|
+
* blueprintStage: "DEVELOPMENT" || "LIVE",
|
|
128
|
+
* },
|
|
129
|
+
* ],
|
|
130
|
+
* },
|
|
131
|
+
* overrideConfiguration: { // OverrideConfiguration
|
|
132
|
+
* document: { // DocumentOverrideConfiguration
|
|
133
|
+
* splitter: { // SplitterConfiguration
|
|
134
|
+
* state: "ENABLED" || "DISABLED",
|
|
135
|
+
* },
|
|
136
|
+
* },
|
|
137
|
+
* },
|
|
138
|
+
* };
|
|
139
|
+
* const command = new UpdateDataAutomationProjectCommand(input);
|
|
140
|
+
* const response = await client.send(command);
|
|
141
|
+
* // { // UpdateDataAutomationProjectResponse
|
|
142
|
+
* // projectArn: "STRING_VALUE", // required
|
|
143
|
+
* // projectStage: "DEVELOPMENT" || "LIVE",
|
|
144
|
+
* // status: "COMPLETED" || "IN_PROGRESS" || "FAILED",
|
|
145
|
+
* // };
|
|
146
|
+
*
|
|
147
|
+
* ```
|
|
148
|
+
*
|
|
149
|
+
* @param UpdateDataAutomationProjectCommandInput - {@link UpdateDataAutomationProjectCommandInput}
|
|
150
|
+
* @returns {@link UpdateDataAutomationProjectCommandOutput}
|
|
151
|
+
* @see {@link UpdateDataAutomationProjectCommandInput} for command's `input` shape.
|
|
152
|
+
* @see {@link UpdateDataAutomationProjectCommandOutput} for command's `response` shape.
|
|
153
|
+
* @see {@link BedrockDataAutomationClientResolvedConfig | config} for BedrockDataAutomationClient's `config` shape.
|
|
154
|
+
*
|
|
155
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
156
|
+
* This exception is thrown when a request is denied per access permissions
|
|
157
|
+
*
|
|
158
|
+
* @throws {@link ConflictException} (client fault)
|
|
159
|
+
* This exception is thrown when there is a conflict performing an operation
|
|
160
|
+
*
|
|
161
|
+
* @throws {@link InternalServerException} (server fault)
|
|
162
|
+
* This exception is thrown if there was an unexpected error during processing of request
|
|
163
|
+
*
|
|
164
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
165
|
+
* This exception is thrown when a resource referenced by the operation does not exist
|
|
166
|
+
*
|
|
167
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
168
|
+
* This exception is thrown when the number of requests exceeds the limit
|
|
169
|
+
*
|
|
170
|
+
* @throws {@link ValidationException} (client fault)
|
|
171
|
+
* This exception is thrown when the request's input validation fails
|
|
172
|
+
*
|
|
173
|
+
* @throws {@link BedrockDataAutomationServiceException}
|
|
174
|
+
* <p>Base exception class for all service exceptions from BedrockDataAutomation service.</p>
|
|
175
|
+
*
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
export declare class UpdateDataAutomationProjectCommand extends UpdateDataAutomationProjectCommand_base {
|
|
179
|
+
/** @internal type navigation helper, not in runtime. */
|
|
180
|
+
protected static __types: {
|
|
181
|
+
api: {
|
|
182
|
+
input: UpdateDataAutomationProjectRequest;
|
|
183
|
+
output: UpdateDataAutomationProjectResponse;
|
|
184
|
+
};
|
|
185
|
+
sdk: {
|
|
186
|
+
input: UpdateDataAutomationProjectCommandInput;
|
|
187
|
+
output: UpdateDataAutomationProjectCommandOutput;
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./CreateBlueprintCommand";
|
|
2
|
+
export * from "./CreateBlueprintVersionCommand";
|
|
3
|
+
export * from "./CreateDataAutomationProjectCommand";
|
|
4
|
+
export * from "./DeleteBlueprintCommand";
|
|
5
|
+
export * from "./DeleteDataAutomationProjectCommand";
|
|
6
|
+
export * from "./GetBlueprintCommand";
|
|
7
|
+
export * from "./GetDataAutomationProjectCommand";
|
|
8
|
+
export * from "./ListBlueprintsCommand";
|
|
9
|
+
export * from "./ListDataAutomationProjectsCommand";
|
|
10
|
+
export * from "./UpdateBlueprintCommand";
|
|
11
|
+
export * from "./UpdateDataAutomationProjectCommand";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
|
+
}
|
|
11
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
|
+
defaultSigningName: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
36
|
+
Region?: string;
|
|
37
|
+
UseDualStack?: boolean;
|
|
38
|
+
UseFIPS?: boolean;
|
|
39
|
+
Endpoint?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export interface BedrockDataAutomationExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Amazon Bedrock Keystone Build
|
|
3
|
+
*
|
|
4
|
+
* @packageDocumentation
|
|
5
|
+
*/
|
|
6
|
+
export * from "./BedrockDataAutomationClient";
|
|
7
|
+
export * from "./BedrockDataAutomation";
|
|
8
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
|
+
export type { BedrockDataAutomationExtensionConfiguration } from "./extensionConfiguration";
|
|
11
|
+
export * from "./commands";
|
|
12
|
+
export * from "./pagination";
|
|
13
|
+
export * from "./models";
|
|
14
|
+
export { BedrockDataAutomationServiceException } from "./models/BedrockDataAutomationServiceException";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*
|
|
7
|
+
* Base exception class for all service exceptions from BedrockDataAutomation service.
|
|
8
|
+
*/
|
|
9
|
+
export declare class BedrockDataAutomationServiceException extends __ServiceException {
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(options: __ServiceExceptionOptions);
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|