@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,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { BedrockDataAutomationClient } from "../BedrockDataAutomationClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface BedrockDataAutomationPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: BedrockDataAutomationClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "../commands/ListBlueprintsCommand";
|
|
3
|
+
import { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBlueprints: (config: BedrockDataAutomationPaginationConfiguration, input: ListBlueprintsCommandInput, ...rest: any[]) => Paginator<ListBlueprintsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataAutomationProjectsCommandInput, ListDataAutomationProjectsCommandOutput } from "../commands/ListDataAutomationProjectsCommand";
|
|
3
|
+
import { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataAutomationProjects: (config: BedrockDataAutomationPaginationConfiguration, input: ListDataAutomationProjectsCommandInput, ...rest: any[]) => Paginator<ListDataAutomationProjectsCommandOutput>;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateBlueprintCommandInput, CreateBlueprintCommandOutput } from "../commands/CreateBlueprintCommand";
|
|
4
|
+
import { CreateBlueprintVersionCommandInput, CreateBlueprintVersionCommandOutput } from "../commands/CreateBlueprintVersionCommand";
|
|
5
|
+
import { CreateDataAutomationProjectCommandInput, CreateDataAutomationProjectCommandOutput } from "../commands/CreateDataAutomationProjectCommand";
|
|
6
|
+
import { DeleteBlueprintCommandInput, DeleteBlueprintCommandOutput } from "../commands/DeleteBlueprintCommand";
|
|
7
|
+
import { DeleteDataAutomationProjectCommandInput, DeleteDataAutomationProjectCommandOutput } from "../commands/DeleteDataAutomationProjectCommand";
|
|
8
|
+
import { GetBlueprintCommandInput, GetBlueprintCommandOutput } from "../commands/GetBlueprintCommand";
|
|
9
|
+
import { GetDataAutomationProjectCommandInput, GetDataAutomationProjectCommandOutput } from "../commands/GetDataAutomationProjectCommand";
|
|
10
|
+
import { ListBlueprintsCommandInput, ListBlueprintsCommandOutput } from "../commands/ListBlueprintsCommand";
|
|
11
|
+
import { ListDataAutomationProjectsCommandInput, ListDataAutomationProjectsCommandOutput } from "../commands/ListDataAutomationProjectsCommand";
|
|
12
|
+
import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "../commands/UpdateBlueprintCommand";
|
|
13
|
+
import { UpdateDataAutomationProjectCommandInput, UpdateDataAutomationProjectCommandOutput } from "../commands/UpdateDataAutomationProjectCommand";
|
|
14
|
+
/**
|
|
15
|
+
* serializeAws_restJson1CreateBlueprintCommand
|
|
16
|
+
*/
|
|
17
|
+
export declare const se_CreateBlueprintCommand: (input: CreateBlueprintCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
/**
|
|
19
|
+
* serializeAws_restJson1CreateBlueprintVersionCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const se_CreateBlueprintVersionCommand: (input: CreateBlueprintVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
/**
|
|
23
|
+
* serializeAws_restJson1CreateDataAutomationProjectCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const se_CreateDataAutomationProjectCommand: (input: CreateDataAutomationProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
/**
|
|
27
|
+
* serializeAws_restJson1DeleteBlueprintCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const se_DeleteBlueprintCommand: (input: DeleteBlueprintCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_restJson1DeleteDataAutomationProjectCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_DeleteDataAutomationProjectCommand: (input: DeleteDataAutomationProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_restJson1GetBlueprintCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_GetBlueprintCommand: (input: GetBlueprintCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_restJson1GetDataAutomationProjectCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_GetDataAutomationProjectCommand: (input: GetDataAutomationProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_restJson1ListBlueprintsCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_ListBlueprintsCommand: (input: ListBlueprintsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_restJson1ListDataAutomationProjectsCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_ListDataAutomationProjectsCommand: (input: ListDataAutomationProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_restJson1UpdateBlueprintCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_UpdateBlueprintCommand: (input: UpdateBlueprintCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1UpdateDataAutomationProjectCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_UpdateDataAutomationProjectCommand: (input: UpdateDataAutomationProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* deserializeAws_restJson1CreateBlueprintCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const de_CreateBlueprintCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBlueprintCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* deserializeAws_restJson1CreateBlueprintVersionCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const de_CreateBlueprintVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBlueprintVersionCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* deserializeAws_restJson1CreateDataAutomationProjectCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const de_CreateDataAutomationProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataAutomationProjectCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* deserializeAws_restJson1DeleteBlueprintCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const de_DeleteBlueprintCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBlueprintCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* deserializeAws_restJson1DeleteDataAutomationProjectCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const de_DeleteDataAutomationProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataAutomationProjectCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* deserializeAws_restJson1GetBlueprintCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const de_GetBlueprintCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBlueprintCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* deserializeAws_restJson1GetDataAutomationProjectCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const de_GetDataAutomationProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataAutomationProjectCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* deserializeAws_restJson1ListBlueprintsCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const de_ListBlueprintsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBlueprintsCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* deserializeAws_restJson1ListDataAutomationProjectsCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const de_ListDataAutomationProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataAutomationProjectsCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* deserializeAws_restJson1UpdateBlueprintCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const de_UpdateBlueprintCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateBlueprintCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* deserializeAws_restJson1UpdateDataAutomationProjectCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const de_UpdateDataAutomationProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataAutomationProjectCommandOutput>;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: BedrockDataAutomationClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
22
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
27
|
+
disableHostPrefix: boolean;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
logger: import("@smithy/types").Logger;
|
|
30
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
37
|
+
}) => import("@smithy/types").EndpointV2;
|
|
38
|
+
tls?: boolean | undefined;
|
|
39
|
+
serviceConfiguredEndpoint?: undefined;
|
|
40
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
|
|
42
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
43
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
44
|
+
signingEscapePath?: boolean | undefined;
|
|
45
|
+
systemClockOffset?: number | undefined;
|
|
46
|
+
signingRegion?: string | undefined;
|
|
47
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
48
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: BedrockDataAutomationClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
26
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
27
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
28
|
+
disableHostPrefix: boolean;
|
|
29
|
+
serviceId: string;
|
|
30
|
+
logger: import("@smithy/types").Logger;
|
|
31
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
37
|
+
}) => import("@smithy/types").EndpointV2;
|
|
38
|
+
tls?: boolean | undefined;
|
|
39
|
+
serviceConfiguredEndpoint?: undefined;
|
|
40
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
|
|
42
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
43
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
44
|
+
signingEscapePath?: boolean | undefined;
|
|
45
|
+
systemClockOffset?: number | undefined;
|
|
46
|
+
signingRegion?: string | undefined;
|
|
47
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
48
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: BedrockDataAutomationClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
11
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
12
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
14
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
15
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
18
|
+
disableHostPrefix: boolean;
|
|
19
|
+
serviceId: string;
|
|
20
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
24
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
|
+
logger: import("@smithy/types").Logger;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
32
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
33
|
+
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
36
|
+
}) => import("@smithy/types").EndpointV2;
|
|
37
|
+
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
39
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
|
|
41
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
42
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
43
|
+
signingEscapePath?: boolean | undefined;
|
|
44
|
+
systemClockOffset?: number | undefined;
|
|
45
|
+
signingRegion?: string | undefined;
|
|
46
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
47
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: BedrockDataAutomationClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BedrockDataAutomationHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BedrockDataAutomationExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: BedrockDataAutomationExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { BedrockDataAutomationClient } from "./BedrockDataAutomationClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateBlueprintCommandInput,
|
|
5
|
+
CreateBlueprintCommandOutput,
|
|
6
|
+
} from "./commands/CreateBlueprintCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateBlueprintVersionCommandInput,
|
|
9
|
+
CreateBlueprintVersionCommandOutput,
|
|
10
|
+
} from "./commands/CreateBlueprintVersionCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateDataAutomationProjectCommandInput,
|
|
13
|
+
CreateDataAutomationProjectCommandOutput,
|
|
14
|
+
} from "./commands/CreateDataAutomationProjectCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteBlueprintCommandInput,
|
|
17
|
+
DeleteBlueprintCommandOutput,
|
|
18
|
+
} from "./commands/DeleteBlueprintCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteDataAutomationProjectCommandInput,
|
|
21
|
+
DeleteDataAutomationProjectCommandOutput,
|
|
22
|
+
} from "./commands/DeleteDataAutomationProjectCommand";
|
|
23
|
+
import {
|
|
24
|
+
GetBlueprintCommandInput,
|
|
25
|
+
GetBlueprintCommandOutput,
|
|
26
|
+
} from "./commands/GetBlueprintCommand";
|
|
27
|
+
import {
|
|
28
|
+
GetDataAutomationProjectCommandInput,
|
|
29
|
+
GetDataAutomationProjectCommandOutput,
|
|
30
|
+
} from "./commands/GetDataAutomationProjectCommand";
|
|
31
|
+
import {
|
|
32
|
+
ListBlueprintsCommandInput,
|
|
33
|
+
ListBlueprintsCommandOutput,
|
|
34
|
+
} from "./commands/ListBlueprintsCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListDataAutomationProjectsCommandInput,
|
|
37
|
+
ListDataAutomationProjectsCommandOutput,
|
|
38
|
+
} from "./commands/ListDataAutomationProjectsCommand";
|
|
39
|
+
import {
|
|
40
|
+
UpdateBlueprintCommandInput,
|
|
41
|
+
UpdateBlueprintCommandOutput,
|
|
42
|
+
} from "./commands/UpdateBlueprintCommand";
|
|
43
|
+
import {
|
|
44
|
+
UpdateDataAutomationProjectCommandInput,
|
|
45
|
+
UpdateDataAutomationProjectCommandOutput,
|
|
46
|
+
} from "./commands/UpdateDataAutomationProjectCommand";
|
|
47
|
+
export interface BedrockDataAutomation {
|
|
48
|
+
createBlueprint(
|
|
49
|
+
args: CreateBlueprintCommandInput,
|
|
50
|
+
options?: __HttpHandlerOptions
|
|
51
|
+
): Promise<CreateBlueprintCommandOutput>;
|
|
52
|
+
createBlueprint(
|
|
53
|
+
args: CreateBlueprintCommandInput,
|
|
54
|
+
cb: (err: any, data?: CreateBlueprintCommandOutput) => void
|
|
55
|
+
): void;
|
|
56
|
+
createBlueprint(
|
|
57
|
+
args: CreateBlueprintCommandInput,
|
|
58
|
+
options: __HttpHandlerOptions,
|
|
59
|
+
cb: (err: any, data?: CreateBlueprintCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
createBlueprintVersion(
|
|
62
|
+
args: CreateBlueprintVersionCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<CreateBlueprintVersionCommandOutput>;
|
|
65
|
+
createBlueprintVersion(
|
|
66
|
+
args: CreateBlueprintVersionCommandInput,
|
|
67
|
+
cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
createBlueprintVersion(
|
|
70
|
+
args: CreateBlueprintVersionCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: CreateBlueprintVersionCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
createDataAutomationProject(
|
|
75
|
+
args: CreateDataAutomationProjectCommandInput,
|
|
76
|
+
options?: __HttpHandlerOptions
|
|
77
|
+
): Promise<CreateDataAutomationProjectCommandOutput>;
|
|
78
|
+
createDataAutomationProject(
|
|
79
|
+
args: CreateDataAutomationProjectCommandInput,
|
|
80
|
+
cb: (err: any, data?: CreateDataAutomationProjectCommandOutput) => void
|
|
81
|
+
): void;
|
|
82
|
+
createDataAutomationProject(
|
|
83
|
+
args: CreateDataAutomationProjectCommandInput,
|
|
84
|
+
options: __HttpHandlerOptions,
|
|
85
|
+
cb: (err: any, data?: CreateDataAutomationProjectCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
deleteBlueprint(
|
|
88
|
+
args: DeleteBlueprintCommandInput,
|
|
89
|
+
options?: __HttpHandlerOptions
|
|
90
|
+
): Promise<DeleteBlueprintCommandOutput>;
|
|
91
|
+
deleteBlueprint(
|
|
92
|
+
args: DeleteBlueprintCommandInput,
|
|
93
|
+
cb: (err: any, data?: DeleteBlueprintCommandOutput) => void
|
|
94
|
+
): void;
|
|
95
|
+
deleteBlueprint(
|
|
96
|
+
args: DeleteBlueprintCommandInput,
|
|
97
|
+
options: __HttpHandlerOptions,
|
|
98
|
+
cb: (err: any, data?: DeleteBlueprintCommandOutput) => void
|
|
99
|
+
): void;
|
|
100
|
+
deleteDataAutomationProject(
|
|
101
|
+
args: DeleteDataAutomationProjectCommandInput,
|
|
102
|
+
options?: __HttpHandlerOptions
|
|
103
|
+
): Promise<DeleteDataAutomationProjectCommandOutput>;
|
|
104
|
+
deleteDataAutomationProject(
|
|
105
|
+
args: DeleteDataAutomationProjectCommandInput,
|
|
106
|
+
cb: (err: any, data?: DeleteDataAutomationProjectCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
deleteDataAutomationProject(
|
|
109
|
+
args: DeleteDataAutomationProjectCommandInput,
|
|
110
|
+
options: __HttpHandlerOptions,
|
|
111
|
+
cb: (err: any, data?: DeleteDataAutomationProjectCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
getBlueprint(
|
|
114
|
+
args: GetBlueprintCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<GetBlueprintCommandOutput>;
|
|
117
|
+
getBlueprint(
|
|
118
|
+
args: GetBlueprintCommandInput,
|
|
119
|
+
cb: (err: any, data?: GetBlueprintCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
getBlueprint(
|
|
122
|
+
args: GetBlueprintCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: GetBlueprintCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
getDataAutomationProject(
|
|
127
|
+
args: GetDataAutomationProjectCommandInput,
|
|
128
|
+
options?: __HttpHandlerOptions
|
|
129
|
+
): Promise<GetDataAutomationProjectCommandOutput>;
|
|
130
|
+
getDataAutomationProject(
|
|
131
|
+
args: GetDataAutomationProjectCommandInput,
|
|
132
|
+
cb: (err: any, data?: GetDataAutomationProjectCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
getDataAutomationProject(
|
|
135
|
+
args: GetDataAutomationProjectCommandInput,
|
|
136
|
+
options: __HttpHandlerOptions,
|
|
137
|
+
cb: (err: any, data?: GetDataAutomationProjectCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
listBlueprints(): Promise<ListBlueprintsCommandOutput>;
|
|
140
|
+
listBlueprints(
|
|
141
|
+
args: ListBlueprintsCommandInput,
|
|
142
|
+
options?: __HttpHandlerOptions
|
|
143
|
+
): Promise<ListBlueprintsCommandOutput>;
|
|
144
|
+
listBlueprints(
|
|
145
|
+
args: ListBlueprintsCommandInput,
|
|
146
|
+
cb: (err: any, data?: ListBlueprintsCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
listBlueprints(
|
|
149
|
+
args: ListBlueprintsCommandInput,
|
|
150
|
+
options: __HttpHandlerOptions,
|
|
151
|
+
cb: (err: any, data?: ListBlueprintsCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
listDataAutomationProjects(): Promise<ListDataAutomationProjectsCommandOutput>;
|
|
154
|
+
listDataAutomationProjects(
|
|
155
|
+
args: ListDataAutomationProjectsCommandInput,
|
|
156
|
+
options?: __HttpHandlerOptions
|
|
157
|
+
): Promise<ListDataAutomationProjectsCommandOutput>;
|
|
158
|
+
listDataAutomationProjects(
|
|
159
|
+
args: ListDataAutomationProjectsCommandInput,
|
|
160
|
+
cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
listDataAutomationProjects(
|
|
163
|
+
args: ListDataAutomationProjectsCommandInput,
|
|
164
|
+
options: __HttpHandlerOptions,
|
|
165
|
+
cb: (err: any, data?: ListDataAutomationProjectsCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
updateBlueprint(
|
|
168
|
+
args: UpdateBlueprintCommandInput,
|
|
169
|
+
options?: __HttpHandlerOptions
|
|
170
|
+
): Promise<UpdateBlueprintCommandOutput>;
|
|
171
|
+
updateBlueprint(
|
|
172
|
+
args: UpdateBlueprintCommandInput,
|
|
173
|
+
cb: (err: any, data?: UpdateBlueprintCommandOutput) => void
|
|
174
|
+
): void;
|
|
175
|
+
updateBlueprint(
|
|
176
|
+
args: UpdateBlueprintCommandInput,
|
|
177
|
+
options: __HttpHandlerOptions,
|
|
178
|
+
cb: (err: any, data?: UpdateBlueprintCommandOutput) => void
|
|
179
|
+
): void;
|
|
180
|
+
updateDataAutomationProject(
|
|
181
|
+
args: UpdateDataAutomationProjectCommandInput,
|
|
182
|
+
options?: __HttpHandlerOptions
|
|
183
|
+
): Promise<UpdateDataAutomationProjectCommandOutput>;
|
|
184
|
+
updateDataAutomationProject(
|
|
185
|
+
args: UpdateDataAutomationProjectCommandInput,
|
|
186
|
+
cb: (err: any, data?: UpdateDataAutomationProjectCommandOutput) => void
|
|
187
|
+
): void;
|
|
188
|
+
updateDataAutomationProject(
|
|
189
|
+
args: UpdateDataAutomationProjectCommandInput,
|
|
190
|
+
options: __HttpHandlerOptions,
|
|
191
|
+
cb: (err: any, data?: UpdateDataAutomationProjectCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
}
|
|
194
|
+
export declare class BedrockDataAutomation
|
|
195
|
+
extends BedrockDataAutomationClient
|
|
196
|
+
implements BedrockDataAutomation {}
|