@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,463 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BedrockDataAutomationServiceException as __BaseException } from "./BedrockDataAutomationServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
export declare const BlueprintStage: {
|
|
16
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
17
|
+
readonly LIVE: "LIVE";
|
|
18
|
+
};
|
|
19
|
+
export type BlueprintStage =
|
|
20
|
+
(typeof BlueprintStage)[keyof typeof BlueprintStage];
|
|
21
|
+
export interface EncryptionConfiguration {
|
|
22
|
+
kmsKeyId: string | undefined;
|
|
23
|
+
kmsEncryptionContext?: Record<string, string> | undefined;
|
|
24
|
+
}
|
|
25
|
+
export declare const Type: {
|
|
26
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
27
|
+
readonly IMAGE: "IMAGE";
|
|
28
|
+
};
|
|
29
|
+
export type Type = (typeof Type)[keyof typeof Type];
|
|
30
|
+
export interface CreateBlueprintRequest {
|
|
31
|
+
blueprintName: string | undefined;
|
|
32
|
+
type: Type | undefined;
|
|
33
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
34
|
+
schema: string | undefined;
|
|
35
|
+
clientToken?: string | undefined;
|
|
36
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
37
|
+
}
|
|
38
|
+
export interface Blueprint {
|
|
39
|
+
blueprintArn: string | undefined;
|
|
40
|
+
schema: string | undefined;
|
|
41
|
+
type: Type | undefined;
|
|
42
|
+
creationTime: Date | undefined;
|
|
43
|
+
lastModifiedTime: Date | undefined;
|
|
44
|
+
blueprintName: string | undefined;
|
|
45
|
+
blueprintVersion?: string | undefined;
|
|
46
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
47
|
+
kmsKeyId?: string | undefined;
|
|
48
|
+
kmsEncryptionContext?: Record<string, string> | undefined;
|
|
49
|
+
}
|
|
50
|
+
export interface CreateBlueprintResponse {
|
|
51
|
+
blueprint: Blueprint | undefined;
|
|
52
|
+
}
|
|
53
|
+
export declare class InternalServerException extends __BaseException {
|
|
54
|
+
readonly name: "InternalServerException";
|
|
55
|
+
readonly $fault: "server";
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
61
|
+
readonly name: "ServiceQuotaExceededException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
export declare class ThrottlingException extends __BaseException {
|
|
68
|
+
readonly name: "ThrottlingException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
constructor(
|
|
71
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
export interface ValidationExceptionField {
|
|
75
|
+
name: string | undefined;
|
|
76
|
+
message: string | undefined;
|
|
77
|
+
}
|
|
78
|
+
export declare class ValidationException extends __BaseException {
|
|
79
|
+
readonly name: "ValidationException";
|
|
80
|
+
readonly $fault: "client";
|
|
81
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
export interface DeleteBlueprintRequest {
|
|
87
|
+
blueprintArn: string | undefined;
|
|
88
|
+
blueprintVersion?: string | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface DeleteBlueprintResponse {}
|
|
91
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
92
|
+
readonly name: "ResourceNotFoundException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
constructor(
|
|
95
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
export interface GetBlueprintRequest {
|
|
99
|
+
blueprintArn: string | undefined;
|
|
100
|
+
blueprintVersion?: string | undefined;
|
|
101
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface GetBlueprintResponse {
|
|
104
|
+
blueprint: Blueprint | undefined;
|
|
105
|
+
}
|
|
106
|
+
export declare const BlueprintStageFilter: {
|
|
107
|
+
readonly ALL: "ALL";
|
|
108
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
109
|
+
readonly LIVE: "LIVE";
|
|
110
|
+
};
|
|
111
|
+
export type BlueprintStageFilter =
|
|
112
|
+
(typeof BlueprintStageFilter)[keyof typeof BlueprintStageFilter];
|
|
113
|
+
export declare const DataAutomationProjectStage: {
|
|
114
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
115
|
+
readonly LIVE: "LIVE";
|
|
116
|
+
};
|
|
117
|
+
export type DataAutomationProjectStage =
|
|
118
|
+
(typeof DataAutomationProjectStage)[keyof typeof DataAutomationProjectStage];
|
|
119
|
+
export interface DataAutomationProjectFilter {
|
|
120
|
+
projectArn: string | undefined;
|
|
121
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
122
|
+
}
|
|
123
|
+
export declare const ResourceOwner: {
|
|
124
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
125
|
+
readonly SERVICE: "SERVICE";
|
|
126
|
+
};
|
|
127
|
+
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
128
|
+
export interface ListBlueprintsRequest {
|
|
129
|
+
blueprintArn?: string | undefined;
|
|
130
|
+
resourceOwner?: ResourceOwner | undefined;
|
|
131
|
+
blueprintStageFilter?: BlueprintStageFilter | undefined;
|
|
132
|
+
maxResults?: number | undefined;
|
|
133
|
+
nextToken?: string | undefined;
|
|
134
|
+
projectFilter?: DataAutomationProjectFilter | undefined;
|
|
135
|
+
}
|
|
136
|
+
export interface BlueprintSummary {
|
|
137
|
+
blueprintArn: string | undefined;
|
|
138
|
+
blueprintVersion?: string | undefined;
|
|
139
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
140
|
+
blueprintName?: string | undefined;
|
|
141
|
+
creationTime: Date | undefined;
|
|
142
|
+
lastModifiedTime?: Date | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface ListBlueprintsResponse {
|
|
145
|
+
blueprints: BlueprintSummary[] | undefined;
|
|
146
|
+
nextToken?: string | undefined;
|
|
147
|
+
}
|
|
148
|
+
export interface UpdateBlueprintRequest {
|
|
149
|
+
blueprintArn: string | undefined;
|
|
150
|
+
schema: string | undefined;
|
|
151
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface UpdateBlueprintResponse {
|
|
154
|
+
blueprint: Blueprint | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface CreateBlueprintVersionRequest {
|
|
157
|
+
blueprintArn: string | undefined;
|
|
158
|
+
clientToken?: string | undefined;
|
|
159
|
+
}
|
|
160
|
+
export interface CreateBlueprintVersionResponse {
|
|
161
|
+
blueprint: Blueprint | undefined;
|
|
162
|
+
}
|
|
163
|
+
export interface BlueprintItem {
|
|
164
|
+
blueprintArn: string | undefined;
|
|
165
|
+
blueprintVersion?: string | undefined;
|
|
166
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
167
|
+
}
|
|
168
|
+
export interface CustomOutputConfiguration {
|
|
169
|
+
blueprints?: BlueprintItem[] | undefined;
|
|
170
|
+
}
|
|
171
|
+
export declare const State: {
|
|
172
|
+
readonly DISABLED: "DISABLED";
|
|
173
|
+
readonly ENABLED: "ENABLED";
|
|
174
|
+
};
|
|
175
|
+
export type State = (typeof State)[keyof typeof State];
|
|
176
|
+
export interface SplitterConfiguration {
|
|
177
|
+
state?: State | undefined;
|
|
178
|
+
}
|
|
179
|
+
export interface DocumentOverrideConfiguration {
|
|
180
|
+
splitter?: SplitterConfiguration | undefined;
|
|
181
|
+
}
|
|
182
|
+
export interface OverrideConfiguration {
|
|
183
|
+
document?: DocumentOverrideConfiguration | undefined;
|
|
184
|
+
}
|
|
185
|
+
export declare const AudioExtractionCategoryType: {
|
|
186
|
+
readonly AUDIO_CONTENT_MODERATION: "AUDIO_CONTENT_MODERATION";
|
|
187
|
+
readonly CHAPTER_CONTENT_MODERATION: "CHAPTER_CONTENT_MODERATION";
|
|
188
|
+
readonly TRANSCRIPT: "TRANSCRIPT";
|
|
189
|
+
};
|
|
190
|
+
export type AudioExtractionCategoryType =
|
|
191
|
+
(typeof AudioExtractionCategoryType)[keyof typeof AudioExtractionCategoryType];
|
|
192
|
+
export interface AudioExtractionCategory {
|
|
193
|
+
state: State | undefined;
|
|
194
|
+
types?: AudioExtractionCategoryType[] | undefined;
|
|
195
|
+
}
|
|
196
|
+
export interface AudioStandardExtraction {
|
|
197
|
+
category: AudioExtractionCategory | undefined;
|
|
198
|
+
}
|
|
199
|
+
export declare const AudioStandardGenerativeFieldType: {
|
|
200
|
+
readonly AUDIO_SUMMARY: "AUDIO_SUMMARY";
|
|
201
|
+
readonly CHAPTER_SUMMARY: "CHAPTER_SUMMARY";
|
|
202
|
+
readonly IAB: "IAB";
|
|
203
|
+
};
|
|
204
|
+
export type AudioStandardGenerativeFieldType =
|
|
205
|
+
(typeof AudioStandardGenerativeFieldType)[keyof typeof AudioStandardGenerativeFieldType];
|
|
206
|
+
export interface AudioStandardGenerativeField {
|
|
207
|
+
state: State | undefined;
|
|
208
|
+
types?: AudioStandardGenerativeFieldType[] | undefined;
|
|
209
|
+
}
|
|
210
|
+
export interface AudioStandardOutputConfiguration {
|
|
211
|
+
extraction?: AudioStandardExtraction | undefined;
|
|
212
|
+
generativeField?: AudioStandardGenerativeField | undefined;
|
|
213
|
+
}
|
|
214
|
+
export interface DocumentBoundingBox {
|
|
215
|
+
state: State | undefined;
|
|
216
|
+
}
|
|
217
|
+
export declare const DocumentExtractionGranularityType: {
|
|
218
|
+
readonly DOCUMENT: "DOCUMENT";
|
|
219
|
+
readonly ELEMENT: "ELEMENT";
|
|
220
|
+
readonly LINE: "LINE";
|
|
221
|
+
readonly PAGE: "PAGE";
|
|
222
|
+
readonly WORD: "WORD";
|
|
223
|
+
};
|
|
224
|
+
export type DocumentExtractionGranularityType =
|
|
225
|
+
(typeof DocumentExtractionGranularityType)[keyof typeof DocumentExtractionGranularityType];
|
|
226
|
+
export interface DocumentExtractionGranularity {
|
|
227
|
+
types?: DocumentExtractionGranularityType[] | undefined;
|
|
228
|
+
}
|
|
229
|
+
export interface DocumentStandardExtraction {
|
|
230
|
+
granularity: DocumentExtractionGranularity | undefined;
|
|
231
|
+
boundingBox: DocumentBoundingBox | undefined;
|
|
232
|
+
}
|
|
233
|
+
export interface DocumentStandardGenerativeField {
|
|
234
|
+
state: State | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface DocumentOutputAdditionalFileFormat {
|
|
237
|
+
state: State | undefined;
|
|
238
|
+
}
|
|
239
|
+
export declare const DocumentOutputTextFormatType: {
|
|
240
|
+
readonly CSV: "CSV";
|
|
241
|
+
readonly HTML: "HTML";
|
|
242
|
+
readonly MARKDOWN: "MARKDOWN";
|
|
243
|
+
readonly PLAIN_TEXT: "PLAIN_TEXT";
|
|
244
|
+
};
|
|
245
|
+
export type DocumentOutputTextFormatType =
|
|
246
|
+
(typeof DocumentOutputTextFormatType)[keyof typeof DocumentOutputTextFormatType];
|
|
247
|
+
export interface DocumentOutputTextFormat {
|
|
248
|
+
types?: DocumentOutputTextFormatType[] | undefined;
|
|
249
|
+
}
|
|
250
|
+
export interface DocumentOutputFormat {
|
|
251
|
+
textFormat: DocumentOutputTextFormat | undefined;
|
|
252
|
+
additionalFileFormat: DocumentOutputAdditionalFileFormat | undefined;
|
|
253
|
+
}
|
|
254
|
+
export interface DocumentStandardOutputConfiguration {
|
|
255
|
+
extraction?: DocumentStandardExtraction | undefined;
|
|
256
|
+
generativeField?: DocumentStandardGenerativeField | undefined;
|
|
257
|
+
outputFormat?: DocumentOutputFormat | undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface ImageBoundingBox {
|
|
260
|
+
state: State | undefined;
|
|
261
|
+
}
|
|
262
|
+
export declare const ImageExtractionCategoryType: {
|
|
263
|
+
readonly CONTENT_MODERATION: "CONTENT_MODERATION";
|
|
264
|
+
readonly TEXT_DETECTION: "TEXT_DETECTION";
|
|
265
|
+
};
|
|
266
|
+
export type ImageExtractionCategoryType =
|
|
267
|
+
(typeof ImageExtractionCategoryType)[keyof typeof ImageExtractionCategoryType];
|
|
268
|
+
export interface ImageExtractionCategory {
|
|
269
|
+
state: State | undefined;
|
|
270
|
+
types?: ImageExtractionCategoryType[] | undefined;
|
|
271
|
+
}
|
|
272
|
+
export interface ImageStandardExtraction {
|
|
273
|
+
category: ImageExtractionCategory | undefined;
|
|
274
|
+
boundingBox: ImageBoundingBox | undefined;
|
|
275
|
+
}
|
|
276
|
+
export declare const ImageStandardGenerativeFieldType: {
|
|
277
|
+
readonly IAB: "IAB";
|
|
278
|
+
readonly IMAGE_SUMMARY: "IMAGE_SUMMARY";
|
|
279
|
+
};
|
|
280
|
+
export type ImageStandardGenerativeFieldType =
|
|
281
|
+
(typeof ImageStandardGenerativeFieldType)[keyof typeof ImageStandardGenerativeFieldType];
|
|
282
|
+
export interface ImageStandardGenerativeField {
|
|
283
|
+
state: State | undefined;
|
|
284
|
+
types?: ImageStandardGenerativeFieldType[] | undefined;
|
|
285
|
+
}
|
|
286
|
+
export interface ImageStandardOutputConfiguration {
|
|
287
|
+
extraction?: ImageStandardExtraction | undefined;
|
|
288
|
+
generativeField?: ImageStandardGenerativeField | undefined;
|
|
289
|
+
}
|
|
290
|
+
export interface VideoBoundingBox {
|
|
291
|
+
state: State | undefined;
|
|
292
|
+
}
|
|
293
|
+
export declare const VideoExtractionCategoryType: {
|
|
294
|
+
readonly CONTENT_MODERATION: "CONTENT_MODERATION";
|
|
295
|
+
readonly TEXT_DETECTION: "TEXT_DETECTION";
|
|
296
|
+
readonly TRANSCRIPT: "TRANSCRIPT";
|
|
297
|
+
};
|
|
298
|
+
export type VideoExtractionCategoryType =
|
|
299
|
+
(typeof VideoExtractionCategoryType)[keyof typeof VideoExtractionCategoryType];
|
|
300
|
+
export interface VideoExtractionCategory {
|
|
301
|
+
state: State | undefined;
|
|
302
|
+
types?: VideoExtractionCategoryType[] | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface VideoStandardExtraction {
|
|
305
|
+
category: VideoExtractionCategory | undefined;
|
|
306
|
+
boundingBox: VideoBoundingBox | undefined;
|
|
307
|
+
}
|
|
308
|
+
export declare const VideoStandardGenerativeFieldType: {
|
|
309
|
+
readonly IAB: "IAB";
|
|
310
|
+
readonly SCENE_SUMMARY: "SCENE_SUMMARY";
|
|
311
|
+
readonly VIDEO_SUMMARY: "VIDEO_SUMMARY";
|
|
312
|
+
};
|
|
313
|
+
export type VideoStandardGenerativeFieldType =
|
|
314
|
+
(typeof VideoStandardGenerativeFieldType)[keyof typeof VideoStandardGenerativeFieldType];
|
|
315
|
+
export interface VideoStandardGenerativeField {
|
|
316
|
+
state: State | undefined;
|
|
317
|
+
types?: VideoStandardGenerativeFieldType[] | undefined;
|
|
318
|
+
}
|
|
319
|
+
export interface VideoStandardOutputConfiguration {
|
|
320
|
+
extraction?: VideoStandardExtraction | undefined;
|
|
321
|
+
generativeField?: VideoStandardGenerativeField | undefined;
|
|
322
|
+
}
|
|
323
|
+
export interface StandardOutputConfiguration {
|
|
324
|
+
document?: DocumentStandardOutputConfiguration | undefined;
|
|
325
|
+
image?: ImageStandardOutputConfiguration | undefined;
|
|
326
|
+
video?: VideoStandardOutputConfiguration | undefined;
|
|
327
|
+
audio?: AudioStandardOutputConfiguration | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface CreateDataAutomationProjectRequest {
|
|
330
|
+
projectName: string | undefined;
|
|
331
|
+
projectDescription?: string | undefined;
|
|
332
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
333
|
+
standardOutputConfiguration: StandardOutputConfiguration | undefined;
|
|
334
|
+
customOutputConfiguration?: CustomOutputConfiguration | undefined;
|
|
335
|
+
overrideConfiguration?: OverrideConfiguration | undefined;
|
|
336
|
+
clientToken?: string | undefined;
|
|
337
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
338
|
+
}
|
|
339
|
+
export declare const DataAutomationProjectStatus: {
|
|
340
|
+
readonly COMPLETED: "COMPLETED";
|
|
341
|
+
readonly FAILED: "FAILED";
|
|
342
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
343
|
+
};
|
|
344
|
+
export type DataAutomationProjectStatus =
|
|
345
|
+
(typeof DataAutomationProjectStatus)[keyof typeof DataAutomationProjectStatus];
|
|
346
|
+
export interface CreateDataAutomationProjectResponse {
|
|
347
|
+
projectArn: string | undefined;
|
|
348
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
349
|
+
status?: DataAutomationProjectStatus | undefined;
|
|
350
|
+
}
|
|
351
|
+
export interface DeleteDataAutomationProjectRequest {
|
|
352
|
+
projectArn: string | undefined;
|
|
353
|
+
}
|
|
354
|
+
export interface DeleteDataAutomationProjectResponse {
|
|
355
|
+
projectArn: string | undefined;
|
|
356
|
+
status?: DataAutomationProjectStatus | undefined;
|
|
357
|
+
}
|
|
358
|
+
export interface GetDataAutomationProjectRequest {
|
|
359
|
+
projectArn: string | undefined;
|
|
360
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
361
|
+
}
|
|
362
|
+
export interface DataAutomationProject {
|
|
363
|
+
projectArn: string | undefined;
|
|
364
|
+
creationTime: Date | undefined;
|
|
365
|
+
lastModifiedTime: Date | undefined;
|
|
366
|
+
projectName: string | undefined;
|
|
367
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
368
|
+
projectDescription?: string | undefined;
|
|
369
|
+
standardOutputConfiguration?: StandardOutputConfiguration | undefined;
|
|
370
|
+
customOutputConfiguration?: CustomOutputConfiguration | undefined;
|
|
371
|
+
overrideConfiguration?: OverrideConfiguration | undefined;
|
|
372
|
+
status: DataAutomationProjectStatus | undefined;
|
|
373
|
+
kmsKeyId?: string | undefined;
|
|
374
|
+
kmsEncryptionContext?: Record<string, string> | undefined;
|
|
375
|
+
}
|
|
376
|
+
export interface GetDataAutomationProjectResponse {
|
|
377
|
+
project: DataAutomationProject | undefined;
|
|
378
|
+
}
|
|
379
|
+
export interface BlueprintFilter {
|
|
380
|
+
blueprintArn: string | undefined;
|
|
381
|
+
blueprintVersion?: string | undefined;
|
|
382
|
+
blueprintStage?: BlueprintStage | undefined;
|
|
383
|
+
}
|
|
384
|
+
export declare const DataAutomationProjectStageFilter: {
|
|
385
|
+
readonly ALL: "ALL";
|
|
386
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
387
|
+
readonly LIVE: "LIVE";
|
|
388
|
+
};
|
|
389
|
+
export type DataAutomationProjectStageFilter =
|
|
390
|
+
(typeof DataAutomationProjectStageFilter)[keyof typeof DataAutomationProjectStageFilter];
|
|
391
|
+
export interface ListDataAutomationProjectsRequest {
|
|
392
|
+
maxResults?: number | undefined;
|
|
393
|
+
nextToken?: string | undefined;
|
|
394
|
+
projectStageFilter?: DataAutomationProjectStageFilter | undefined;
|
|
395
|
+
blueprintFilter?: BlueprintFilter | undefined;
|
|
396
|
+
resourceOwner?: ResourceOwner | undefined;
|
|
397
|
+
}
|
|
398
|
+
export interface DataAutomationProjectSummary {
|
|
399
|
+
projectArn: string | undefined;
|
|
400
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
401
|
+
projectName?: string | undefined;
|
|
402
|
+
creationTime: Date | undefined;
|
|
403
|
+
}
|
|
404
|
+
export interface ListDataAutomationProjectsResponse {
|
|
405
|
+
projects: DataAutomationProjectSummary[] | undefined;
|
|
406
|
+
nextToken?: string | undefined;
|
|
407
|
+
}
|
|
408
|
+
export interface UpdateDataAutomationProjectRequest {
|
|
409
|
+
projectArn: string | undefined;
|
|
410
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
411
|
+
projectDescription?: string | undefined;
|
|
412
|
+
standardOutputConfiguration: StandardOutputConfiguration | undefined;
|
|
413
|
+
customOutputConfiguration?: CustomOutputConfiguration | undefined;
|
|
414
|
+
overrideConfiguration?: OverrideConfiguration | undefined;
|
|
415
|
+
}
|
|
416
|
+
export interface UpdateDataAutomationProjectResponse {
|
|
417
|
+
projectArn: string | undefined;
|
|
418
|
+
projectStage?: DataAutomationProjectStage | undefined;
|
|
419
|
+
status?: DataAutomationProjectStatus | undefined;
|
|
420
|
+
}
|
|
421
|
+
export declare const CreateBlueprintRequestFilterSensitiveLog: (
|
|
422
|
+
obj: CreateBlueprintRequest
|
|
423
|
+
) => any;
|
|
424
|
+
export declare const BlueprintFilterSensitiveLog: (obj: Blueprint) => any;
|
|
425
|
+
export declare const CreateBlueprintResponseFilterSensitiveLog: (
|
|
426
|
+
obj: CreateBlueprintResponse
|
|
427
|
+
) => any;
|
|
428
|
+
export declare const GetBlueprintResponseFilterSensitiveLog: (
|
|
429
|
+
obj: GetBlueprintResponse
|
|
430
|
+
) => any;
|
|
431
|
+
export declare const BlueprintSummaryFilterSensitiveLog: (
|
|
432
|
+
obj: BlueprintSummary
|
|
433
|
+
) => any;
|
|
434
|
+
export declare const ListBlueprintsResponseFilterSensitiveLog: (
|
|
435
|
+
obj: ListBlueprintsResponse
|
|
436
|
+
) => any;
|
|
437
|
+
export declare const UpdateBlueprintRequestFilterSensitiveLog: (
|
|
438
|
+
obj: UpdateBlueprintRequest
|
|
439
|
+
) => any;
|
|
440
|
+
export declare const UpdateBlueprintResponseFilterSensitiveLog: (
|
|
441
|
+
obj: UpdateBlueprintResponse
|
|
442
|
+
) => any;
|
|
443
|
+
export declare const CreateBlueprintVersionResponseFilterSensitiveLog: (
|
|
444
|
+
obj: CreateBlueprintVersionResponse
|
|
445
|
+
) => any;
|
|
446
|
+
export declare const CreateDataAutomationProjectRequestFilterSensitiveLog: (
|
|
447
|
+
obj: CreateDataAutomationProjectRequest
|
|
448
|
+
) => any;
|
|
449
|
+
export declare const DataAutomationProjectFilterSensitiveLog: (
|
|
450
|
+
obj: DataAutomationProject
|
|
451
|
+
) => any;
|
|
452
|
+
export declare const GetDataAutomationProjectResponseFilterSensitiveLog: (
|
|
453
|
+
obj: GetDataAutomationProjectResponse
|
|
454
|
+
) => any;
|
|
455
|
+
export declare const DataAutomationProjectSummaryFilterSensitiveLog: (
|
|
456
|
+
obj: DataAutomationProjectSummary
|
|
457
|
+
) => any;
|
|
458
|
+
export declare const ListDataAutomationProjectsResponseFilterSensitiveLog: (
|
|
459
|
+
obj: ListDataAutomationProjectsResponse
|
|
460
|
+
) => any;
|
|
461
|
+
export declare const UpdateDataAutomationProjectRequestFilterSensitiveLog: (
|
|
462
|
+
obj: UpdateDataAutomationProjectRequest
|
|
463
|
+
) => any;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { BedrockDataAutomationClient } from "../BedrockDataAutomationClient";
|
|
3
|
+
export interface BedrockDataAutomationPaginationConfiguration
|
|
4
|
+
extends PaginationConfiguration {
|
|
5
|
+
client: BedrockDataAutomationClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListBlueprintsCommandInput,
|
|
4
|
+
ListBlueprintsCommandOutput,
|
|
5
|
+
} from "../commands/ListBlueprintsCommand";
|
|
6
|
+
import { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListBlueprints: (
|
|
8
|
+
config: BedrockDataAutomationPaginationConfiguration,
|
|
9
|
+
input: ListBlueprintsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListBlueprintsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDataAutomationProjectsCommandInput,
|
|
4
|
+
ListDataAutomationProjectsCommandOutput,
|
|
5
|
+
} from "../commands/ListDataAutomationProjectsCommand";
|
|
6
|
+
import { BedrockDataAutomationPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDataAutomationProjects: (
|
|
8
|
+
config: BedrockDataAutomationPaginationConfiguration,
|
|
9
|
+
input: ListDataAutomationProjectsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataAutomationProjectsCommandOutput>;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateBlueprintCommandInput,
|
|
8
|
+
CreateBlueprintCommandOutput,
|
|
9
|
+
} from "../commands/CreateBlueprintCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateBlueprintVersionCommandInput,
|
|
12
|
+
CreateBlueprintVersionCommandOutput,
|
|
13
|
+
} from "../commands/CreateBlueprintVersionCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateDataAutomationProjectCommandInput,
|
|
16
|
+
CreateDataAutomationProjectCommandOutput,
|
|
17
|
+
} from "../commands/CreateDataAutomationProjectCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteBlueprintCommandInput,
|
|
20
|
+
DeleteBlueprintCommandOutput,
|
|
21
|
+
} from "../commands/DeleteBlueprintCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteDataAutomationProjectCommandInput,
|
|
24
|
+
DeleteDataAutomationProjectCommandOutput,
|
|
25
|
+
} from "../commands/DeleteDataAutomationProjectCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetBlueprintCommandInput,
|
|
28
|
+
GetBlueprintCommandOutput,
|
|
29
|
+
} from "../commands/GetBlueprintCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetDataAutomationProjectCommandInput,
|
|
32
|
+
GetDataAutomationProjectCommandOutput,
|
|
33
|
+
} from "../commands/GetDataAutomationProjectCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListBlueprintsCommandInput,
|
|
36
|
+
ListBlueprintsCommandOutput,
|
|
37
|
+
} from "../commands/ListBlueprintsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListDataAutomationProjectsCommandInput,
|
|
40
|
+
ListDataAutomationProjectsCommandOutput,
|
|
41
|
+
} from "../commands/ListDataAutomationProjectsCommand";
|
|
42
|
+
import {
|
|
43
|
+
UpdateBlueprintCommandInput,
|
|
44
|
+
UpdateBlueprintCommandOutput,
|
|
45
|
+
} from "../commands/UpdateBlueprintCommand";
|
|
46
|
+
import {
|
|
47
|
+
UpdateDataAutomationProjectCommandInput,
|
|
48
|
+
UpdateDataAutomationProjectCommandOutput,
|
|
49
|
+
} from "../commands/UpdateDataAutomationProjectCommand";
|
|
50
|
+
export declare const se_CreateBlueprintCommand: (
|
|
51
|
+
input: CreateBlueprintCommandInput,
|
|
52
|
+
context: __SerdeContext
|
|
53
|
+
) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const se_CreateBlueprintVersionCommand: (
|
|
55
|
+
input: CreateBlueprintVersionCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const se_CreateDataAutomationProjectCommand: (
|
|
59
|
+
input: CreateDataAutomationProjectCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const se_DeleteBlueprintCommand: (
|
|
63
|
+
input: DeleteBlueprintCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const se_DeleteDataAutomationProjectCommand: (
|
|
67
|
+
input: DeleteDataAutomationProjectCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_GetBlueprintCommand: (
|
|
71
|
+
input: GetBlueprintCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_GetDataAutomationProjectCommand: (
|
|
75
|
+
input: GetDataAutomationProjectCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_ListBlueprintsCommand: (
|
|
79
|
+
input: ListBlueprintsCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_ListDataAutomationProjectsCommand: (
|
|
83
|
+
input: ListDataAutomationProjectsCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_UpdateBlueprintCommand: (
|
|
87
|
+
input: UpdateBlueprintCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_UpdateDataAutomationProjectCommand: (
|
|
91
|
+
input: UpdateDataAutomationProjectCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const de_CreateBlueprintCommand: (
|
|
95
|
+
output: __HttpResponse,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<CreateBlueprintCommandOutput>;
|
|
98
|
+
export declare const de_CreateBlueprintVersionCommand: (
|
|
99
|
+
output: __HttpResponse,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<CreateBlueprintVersionCommandOutput>;
|
|
102
|
+
export declare const de_CreateDataAutomationProjectCommand: (
|
|
103
|
+
output: __HttpResponse,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<CreateDataAutomationProjectCommandOutput>;
|
|
106
|
+
export declare const de_DeleteBlueprintCommand: (
|
|
107
|
+
output: __HttpResponse,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<DeleteBlueprintCommandOutput>;
|
|
110
|
+
export declare const de_DeleteDataAutomationProjectCommand: (
|
|
111
|
+
output: __HttpResponse,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<DeleteDataAutomationProjectCommandOutput>;
|
|
114
|
+
export declare const de_GetBlueprintCommand: (
|
|
115
|
+
output: __HttpResponse,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<GetBlueprintCommandOutput>;
|
|
118
|
+
export declare const de_GetDataAutomationProjectCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<GetDataAutomationProjectCommandOutput>;
|
|
122
|
+
export declare const de_ListBlueprintsCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<ListBlueprintsCommandOutput>;
|
|
126
|
+
export declare const de_ListDataAutomationProjectsCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<ListDataAutomationProjectsCommandOutput>;
|
|
130
|
+
export declare const de_UpdateBlueprintCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<UpdateBlueprintCommandOutput>;
|
|
134
|
+
export declare const de_UpdateDataAutomationProjectCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<UpdateDataAutomationProjectCommandOutput>;
|