@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,187 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CreateBlueprintCommandInput,
|
|
50
|
+
CreateBlueprintCommandOutput,
|
|
51
|
+
} from "./commands/CreateBlueprintCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateBlueprintVersionCommandInput,
|
|
54
|
+
CreateBlueprintVersionCommandOutput,
|
|
55
|
+
} from "./commands/CreateBlueprintVersionCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateDataAutomationProjectCommandInput,
|
|
58
|
+
CreateDataAutomationProjectCommandOutput,
|
|
59
|
+
} from "./commands/CreateDataAutomationProjectCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeleteBlueprintCommandInput,
|
|
62
|
+
DeleteBlueprintCommandOutput,
|
|
63
|
+
} from "./commands/DeleteBlueprintCommand";
|
|
64
|
+
import {
|
|
65
|
+
DeleteDataAutomationProjectCommandInput,
|
|
66
|
+
DeleteDataAutomationProjectCommandOutput,
|
|
67
|
+
} from "./commands/DeleteDataAutomationProjectCommand";
|
|
68
|
+
import {
|
|
69
|
+
GetBlueprintCommandInput,
|
|
70
|
+
GetBlueprintCommandOutput,
|
|
71
|
+
} from "./commands/GetBlueprintCommand";
|
|
72
|
+
import {
|
|
73
|
+
GetDataAutomationProjectCommandInput,
|
|
74
|
+
GetDataAutomationProjectCommandOutput,
|
|
75
|
+
} from "./commands/GetDataAutomationProjectCommand";
|
|
76
|
+
import {
|
|
77
|
+
ListBlueprintsCommandInput,
|
|
78
|
+
ListBlueprintsCommandOutput,
|
|
79
|
+
} from "./commands/ListBlueprintsCommand";
|
|
80
|
+
import {
|
|
81
|
+
ListDataAutomationProjectsCommandInput,
|
|
82
|
+
ListDataAutomationProjectsCommandOutput,
|
|
83
|
+
} from "./commands/ListDataAutomationProjectsCommand";
|
|
84
|
+
import {
|
|
85
|
+
UpdateBlueprintCommandInput,
|
|
86
|
+
UpdateBlueprintCommandOutput,
|
|
87
|
+
} from "./commands/UpdateBlueprintCommand";
|
|
88
|
+
import {
|
|
89
|
+
UpdateDataAutomationProjectCommandInput,
|
|
90
|
+
UpdateDataAutomationProjectCommandOutput,
|
|
91
|
+
} from "./commands/UpdateDataAutomationProjectCommand";
|
|
92
|
+
import {
|
|
93
|
+
ClientInputEndpointParameters,
|
|
94
|
+
ClientResolvedEndpointParameters,
|
|
95
|
+
EndpointParameters,
|
|
96
|
+
} from "./endpoint/EndpointParameters";
|
|
97
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
98
|
+
export { __Client };
|
|
99
|
+
export type ServiceInputTypes =
|
|
100
|
+
| CreateBlueprintCommandInput
|
|
101
|
+
| CreateBlueprintVersionCommandInput
|
|
102
|
+
| CreateDataAutomationProjectCommandInput
|
|
103
|
+
| DeleteBlueprintCommandInput
|
|
104
|
+
| DeleteDataAutomationProjectCommandInput
|
|
105
|
+
| GetBlueprintCommandInput
|
|
106
|
+
| GetDataAutomationProjectCommandInput
|
|
107
|
+
| ListBlueprintsCommandInput
|
|
108
|
+
| ListDataAutomationProjectsCommandInput
|
|
109
|
+
| UpdateBlueprintCommandInput
|
|
110
|
+
| UpdateDataAutomationProjectCommandInput;
|
|
111
|
+
export type ServiceOutputTypes =
|
|
112
|
+
| CreateBlueprintCommandOutput
|
|
113
|
+
| CreateBlueprintVersionCommandOutput
|
|
114
|
+
| CreateDataAutomationProjectCommandOutput
|
|
115
|
+
| DeleteBlueprintCommandOutput
|
|
116
|
+
| DeleteDataAutomationProjectCommandOutput
|
|
117
|
+
| GetBlueprintCommandOutput
|
|
118
|
+
| GetDataAutomationProjectCommandOutput
|
|
119
|
+
| ListBlueprintsCommandOutput
|
|
120
|
+
| ListDataAutomationProjectsCommandOutput
|
|
121
|
+
| UpdateBlueprintCommandOutput
|
|
122
|
+
| UpdateDataAutomationProjectCommandOutput;
|
|
123
|
+
export interface ClientDefaults
|
|
124
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
125
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
126
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
127
|
+
urlParser?: __UrlParser;
|
|
128
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
129
|
+
streamCollector?: __StreamCollector;
|
|
130
|
+
base64Decoder?: __Decoder;
|
|
131
|
+
base64Encoder?: __Encoder;
|
|
132
|
+
utf8Decoder?: __Decoder;
|
|
133
|
+
utf8Encoder?: __Encoder;
|
|
134
|
+
runtime?: string;
|
|
135
|
+
disableHostPrefix?: boolean;
|
|
136
|
+
serviceId?: string;
|
|
137
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
138
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
139
|
+
region?: string | __Provider<string>;
|
|
140
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
141
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
142
|
+
maxAttempts?: number | __Provider<number>;
|
|
143
|
+
retryMode?: string | __Provider<string>;
|
|
144
|
+
logger?: __Logger;
|
|
145
|
+
extensions?: RuntimeExtension[];
|
|
146
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
147
|
+
}
|
|
148
|
+
export type BedrockDataAutomationClientConfigType = Partial<
|
|
149
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
150
|
+
> &
|
|
151
|
+
ClientDefaults &
|
|
152
|
+
UserAgentInputConfig &
|
|
153
|
+
RetryInputConfig &
|
|
154
|
+
RegionInputConfig &
|
|
155
|
+
HostHeaderInputConfig &
|
|
156
|
+
EndpointInputConfig<EndpointParameters> &
|
|
157
|
+
HttpAuthSchemeInputConfig &
|
|
158
|
+
ClientInputEndpointParameters;
|
|
159
|
+
export interface BedrockDataAutomationClientConfig
|
|
160
|
+
extends BedrockDataAutomationClientConfigType {}
|
|
161
|
+
export type BedrockDataAutomationClientResolvedConfigType =
|
|
162
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
163
|
+
Required<ClientDefaults> &
|
|
164
|
+
RuntimeExtensionsConfig &
|
|
165
|
+
UserAgentResolvedConfig &
|
|
166
|
+
RetryResolvedConfig &
|
|
167
|
+
RegionResolvedConfig &
|
|
168
|
+
HostHeaderResolvedConfig &
|
|
169
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
170
|
+
HttpAuthSchemeResolvedConfig &
|
|
171
|
+
ClientResolvedEndpointParameters;
|
|
172
|
+
export interface BedrockDataAutomationClientResolvedConfig
|
|
173
|
+
extends BedrockDataAutomationClientResolvedConfigType {}
|
|
174
|
+
export declare class BedrockDataAutomationClient extends __Client<
|
|
175
|
+
__HttpHandlerOptions,
|
|
176
|
+
ServiceInputTypes,
|
|
177
|
+
ServiceOutputTypes,
|
|
178
|
+
BedrockDataAutomationClientResolvedConfig
|
|
179
|
+
> {
|
|
180
|
+
readonly config: BedrockDataAutomationClientResolvedConfig;
|
|
181
|
+
constructor(
|
|
182
|
+
...[
|
|
183
|
+
configuration,
|
|
184
|
+
]: __CheckOptionalClientConfig<BedrockDataAutomationClientConfig>
|
|
185
|
+
);
|
|
186
|
+
destroy(): void;
|
|
187
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { BedrockDataAutomationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): BedrockDataAutomationHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
} from "@smithy/types";
|
|
13
|
+
import { BedrockDataAutomationClientResolvedConfig } from "../BedrockDataAutomationClient";
|
|
14
|
+
export interface BedrockDataAutomationHttpAuthSchemeParameters
|
|
15
|
+
extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface BedrockDataAutomationHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
BedrockDataAutomationHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultBedrockDataAutomationHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: BedrockDataAutomationClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<BedrockDataAutomationHttpAuthSchemeParameters>;
|
|
30
|
+
export interface BedrockDataAutomationHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<BedrockDataAutomationHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultBedrockDataAutomationHttpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
35
|
+
httpAuthSchemeProvider?: BedrockDataAutomationHttpAuthSchemeProvider;
|
|
36
|
+
}
|
|
37
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
38
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
39
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
40
|
+
readonly httpAuthSchemeProvider: BedrockDataAutomationHttpAuthSchemeProvider;
|
|
41
|
+
}
|
|
42
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
43
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
44
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateBlueprintRequest,
|
|
10
|
+
CreateBlueprintResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateBlueprintCommandInput extends CreateBlueprintRequest {}
|
|
15
|
+
export interface CreateBlueprintCommandOutput
|
|
16
|
+
extends CreateBlueprintResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateBlueprintCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateBlueprintCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateBlueprintCommandInput,
|
|
23
|
+
CreateBlueprintCommandOutput,
|
|
24
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateBlueprintCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateBlueprintCommandInput,
|
|
32
|
+
CreateBlueprintCommandOutput,
|
|
33
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateBlueprintCommand extends CreateBlueprintCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateBlueprintRequest;
|
|
43
|
+
output: CreateBlueprintResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateBlueprintCommandInput;
|
|
47
|
+
output: CreateBlueprintCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateBlueprintVersionRequest,
|
|
10
|
+
CreateBlueprintVersionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateBlueprintVersionCommandInput
|
|
15
|
+
extends CreateBlueprintVersionRequest {}
|
|
16
|
+
export interface CreateBlueprintVersionCommandOutput
|
|
17
|
+
extends CreateBlueprintVersionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateBlueprintVersionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateBlueprintVersionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateBlueprintVersionCommandInput,
|
|
24
|
+
CreateBlueprintVersionCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateBlueprintVersionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateBlueprintVersionCommandInput,
|
|
33
|
+
CreateBlueprintVersionCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateBlueprintVersionCommand extends CreateBlueprintVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateBlueprintVersionRequest;
|
|
44
|
+
output: CreateBlueprintVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateBlueprintVersionCommandInput;
|
|
48
|
+
output: CreateBlueprintVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateDataAutomationProjectRequest,
|
|
10
|
+
CreateDataAutomationProjectResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDataAutomationProjectCommandInput
|
|
15
|
+
extends CreateDataAutomationProjectRequest {}
|
|
16
|
+
export interface CreateDataAutomationProjectCommandOutput
|
|
17
|
+
extends CreateDataAutomationProjectResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDataAutomationProjectCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDataAutomationProjectCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDataAutomationProjectCommandInput,
|
|
24
|
+
CreateDataAutomationProjectCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateDataAutomationProjectCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDataAutomationProjectCommandInput,
|
|
33
|
+
CreateDataAutomationProjectCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDataAutomationProjectCommand extends CreateDataAutomationProjectCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDataAutomationProjectRequest;
|
|
44
|
+
output: CreateDataAutomationProjectResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDataAutomationProjectCommandInput;
|
|
48
|
+
output: CreateDataAutomationProjectCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteBlueprintRequest,
|
|
10
|
+
DeleteBlueprintResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteBlueprintCommandInput extends DeleteBlueprintRequest {}
|
|
15
|
+
export interface DeleteBlueprintCommandOutput
|
|
16
|
+
extends DeleteBlueprintResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteBlueprintCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteBlueprintCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteBlueprintCommandInput,
|
|
23
|
+
DeleteBlueprintCommandOutput,
|
|
24
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteBlueprintCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteBlueprintCommandInput,
|
|
32
|
+
DeleteBlueprintCommandOutput,
|
|
33
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteBlueprintCommand extends DeleteBlueprintCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteBlueprintRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteBlueprintCommandInput;
|
|
47
|
+
output: DeleteBlueprintCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteDataAutomationProjectRequest,
|
|
10
|
+
DeleteDataAutomationProjectResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataAutomationProjectCommandInput
|
|
15
|
+
extends DeleteDataAutomationProjectRequest {}
|
|
16
|
+
export interface DeleteDataAutomationProjectCommandOutput
|
|
17
|
+
extends DeleteDataAutomationProjectResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataAutomationProjectCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataAutomationProjectCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataAutomationProjectCommandInput,
|
|
24
|
+
DeleteDataAutomationProjectCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteDataAutomationProjectCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataAutomationProjectCommandInput,
|
|
33
|
+
DeleteDataAutomationProjectCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataAutomationProjectCommand extends DeleteDataAutomationProjectCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataAutomationProjectRequest;
|
|
44
|
+
output: DeleteDataAutomationProjectResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataAutomationProjectCommandInput;
|
|
48
|
+
output: DeleteDataAutomationProjectCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import { GetBlueprintRequest, GetBlueprintResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetBlueprintCommandInput extends GetBlueprintRequest {}
|
|
12
|
+
export interface GetBlueprintCommandOutput
|
|
13
|
+
extends GetBlueprintResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetBlueprintCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetBlueprintCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetBlueprintCommandInput,
|
|
20
|
+
GetBlueprintCommandOutput,
|
|
21
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetBlueprintCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetBlueprintCommandInput,
|
|
29
|
+
GetBlueprintCommandOutput,
|
|
30
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetBlueprintCommand extends GetBlueprintCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetBlueprintRequest;
|
|
40
|
+
output: GetBlueprintResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetBlueprintCommandInput;
|
|
44
|
+
output: GetBlueprintCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
GetDataAutomationProjectRequest,
|
|
10
|
+
GetDataAutomationProjectResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataAutomationProjectCommandInput
|
|
15
|
+
extends GetDataAutomationProjectRequest {}
|
|
16
|
+
export interface GetDataAutomationProjectCommandOutput
|
|
17
|
+
extends GetDataAutomationProjectResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataAutomationProjectCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataAutomationProjectCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataAutomationProjectCommandInput,
|
|
24
|
+
GetDataAutomationProjectCommandOutput,
|
|
25
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetDataAutomationProjectCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataAutomationProjectCommandInput,
|
|
33
|
+
GetDataAutomationProjectCommandOutput,
|
|
34
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataAutomationProjectCommand extends GetDataAutomationProjectCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataAutomationProjectRequest;
|
|
44
|
+
output: GetDataAutomationProjectResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataAutomationProjectCommandInput;
|
|
48
|
+
output: GetDataAutomationProjectCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockDataAutomationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListBlueprintsRequest,
|
|
10
|
+
ListBlueprintsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListBlueprintsCommandInput extends ListBlueprintsRequest {}
|
|
15
|
+
export interface ListBlueprintsCommandOutput
|
|
16
|
+
extends ListBlueprintsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListBlueprintsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListBlueprintsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListBlueprintsCommandInput,
|
|
23
|
+
ListBlueprintsCommandOutput,
|
|
24
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListBlueprintsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListBlueprintsCommandInput,
|
|
32
|
+
ListBlueprintsCommandOutput,
|
|
33
|
+
BedrockDataAutomationClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListBlueprintsCommand extends ListBlueprintsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListBlueprintsRequest;
|
|
43
|
+
output: ListBlueprintsResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListBlueprintsCommandInput;
|
|
47
|
+
output: ListBlueprintsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|