@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,252 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateDataAutomationProjectRequestFilterSensitiveLog = exports.ListDataAutomationProjectsResponseFilterSensitiveLog = exports.DataAutomationProjectSummaryFilterSensitiveLog = exports.GetDataAutomationProjectResponseFilterSensitiveLog = exports.DataAutomationProjectFilterSensitiveLog = exports.CreateDataAutomationProjectRequestFilterSensitiveLog = exports.CreateBlueprintVersionResponseFilterSensitiveLog = exports.UpdateBlueprintResponseFilterSensitiveLog = exports.UpdateBlueprintRequestFilterSensitiveLog = exports.ListBlueprintsResponseFilterSensitiveLog = exports.BlueprintSummaryFilterSensitiveLog = exports.GetBlueprintResponseFilterSensitiveLog = exports.CreateBlueprintResponseFilterSensitiveLog = exports.BlueprintFilterSensitiveLog = exports.CreateBlueprintRequestFilterSensitiveLog = exports.DataAutomationProjectStageFilter = exports.DataAutomationProjectStatus = exports.VideoStandardGenerativeFieldType = exports.VideoExtractionCategoryType = exports.ImageStandardGenerativeFieldType = exports.ImageExtractionCategoryType = exports.DocumentOutputTextFormatType = exports.DocumentExtractionGranularityType = exports.AudioStandardGenerativeFieldType = exports.AudioExtractionCategoryType = exports.State = exports.ResourceOwner = exports.DataAutomationProjectStage = exports.BlueprintStageFilter = exports.ResourceNotFoundException = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.Type = exports.BlueprintStage = exports.ConflictException = exports.AccessDeniedException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
const BedrockDataAutomationServiceException_1 = require("./BedrockDataAutomationServiceException");
|
|
6
|
+
class AccessDeniedException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
7
|
+
constructor(opts) {
|
|
8
|
+
super({
|
|
9
|
+
name: "AccessDeniedException",
|
|
10
|
+
$fault: "client",
|
|
11
|
+
...opts,
|
|
12
|
+
});
|
|
13
|
+
this.name = "AccessDeniedException";
|
|
14
|
+
this.$fault = "client";
|
|
15
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
+
class ConflictException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "ConflictException",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
this.name = "ConflictException";
|
|
27
|
+
this.$fault = "client";
|
|
28
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
exports.ConflictException = ConflictException;
|
|
32
|
+
exports.BlueprintStage = {
|
|
33
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
34
|
+
LIVE: "LIVE",
|
|
35
|
+
};
|
|
36
|
+
exports.Type = {
|
|
37
|
+
DOCUMENT: "DOCUMENT",
|
|
38
|
+
IMAGE: "IMAGE",
|
|
39
|
+
};
|
|
40
|
+
class InternalServerException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "InternalServerException",
|
|
44
|
+
$fault: "server",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
this.name = "InternalServerException";
|
|
48
|
+
this.$fault = "server";
|
|
49
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
exports.InternalServerException = InternalServerException;
|
|
53
|
+
class ServiceQuotaExceededException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
54
|
+
constructor(opts) {
|
|
55
|
+
super({
|
|
56
|
+
name: "ServiceQuotaExceededException",
|
|
57
|
+
$fault: "client",
|
|
58
|
+
...opts,
|
|
59
|
+
});
|
|
60
|
+
this.name = "ServiceQuotaExceededException";
|
|
61
|
+
this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
66
|
+
class ThrottlingException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
67
|
+
constructor(opts) {
|
|
68
|
+
super({
|
|
69
|
+
name: "ThrottlingException",
|
|
70
|
+
$fault: "client",
|
|
71
|
+
...opts,
|
|
72
|
+
});
|
|
73
|
+
this.name = "ThrottlingException";
|
|
74
|
+
this.$fault = "client";
|
|
75
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
exports.ThrottlingException = ThrottlingException;
|
|
79
|
+
class ValidationException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
80
|
+
constructor(opts) {
|
|
81
|
+
super({
|
|
82
|
+
name: "ValidationException",
|
|
83
|
+
$fault: "client",
|
|
84
|
+
...opts,
|
|
85
|
+
});
|
|
86
|
+
this.name = "ValidationException";
|
|
87
|
+
this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
89
|
+
this.fieldList = opts.fieldList;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
exports.ValidationException = ValidationException;
|
|
93
|
+
class ResourceNotFoundException extends BedrockDataAutomationServiceException_1.BedrockDataAutomationServiceException {
|
|
94
|
+
constructor(opts) {
|
|
95
|
+
super({
|
|
96
|
+
name: "ResourceNotFoundException",
|
|
97
|
+
$fault: "client",
|
|
98
|
+
...opts,
|
|
99
|
+
});
|
|
100
|
+
this.name = "ResourceNotFoundException";
|
|
101
|
+
this.$fault = "client";
|
|
102
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
106
|
+
exports.BlueprintStageFilter = {
|
|
107
|
+
ALL: "ALL",
|
|
108
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
109
|
+
LIVE: "LIVE",
|
|
110
|
+
};
|
|
111
|
+
exports.DataAutomationProjectStage = {
|
|
112
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
113
|
+
LIVE: "LIVE",
|
|
114
|
+
};
|
|
115
|
+
exports.ResourceOwner = {
|
|
116
|
+
ACCOUNT: "ACCOUNT",
|
|
117
|
+
SERVICE: "SERVICE",
|
|
118
|
+
};
|
|
119
|
+
exports.State = {
|
|
120
|
+
DISABLED: "DISABLED",
|
|
121
|
+
ENABLED: "ENABLED",
|
|
122
|
+
};
|
|
123
|
+
exports.AudioExtractionCategoryType = {
|
|
124
|
+
AUDIO_CONTENT_MODERATION: "AUDIO_CONTENT_MODERATION",
|
|
125
|
+
CHAPTER_CONTENT_MODERATION: "CHAPTER_CONTENT_MODERATION",
|
|
126
|
+
TRANSCRIPT: "TRANSCRIPT",
|
|
127
|
+
};
|
|
128
|
+
exports.AudioStandardGenerativeFieldType = {
|
|
129
|
+
AUDIO_SUMMARY: "AUDIO_SUMMARY",
|
|
130
|
+
CHAPTER_SUMMARY: "CHAPTER_SUMMARY",
|
|
131
|
+
IAB: "IAB",
|
|
132
|
+
};
|
|
133
|
+
exports.DocumentExtractionGranularityType = {
|
|
134
|
+
DOCUMENT: "DOCUMENT",
|
|
135
|
+
ELEMENT: "ELEMENT",
|
|
136
|
+
LINE: "LINE",
|
|
137
|
+
PAGE: "PAGE",
|
|
138
|
+
WORD: "WORD",
|
|
139
|
+
};
|
|
140
|
+
exports.DocumentOutputTextFormatType = {
|
|
141
|
+
CSV: "CSV",
|
|
142
|
+
HTML: "HTML",
|
|
143
|
+
MARKDOWN: "MARKDOWN",
|
|
144
|
+
PLAIN_TEXT: "PLAIN_TEXT",
|
|
145
|
+
};
|
|
146
|
+
exports.ImageExtractionCategoryType = {
|
|
147
|
+
CONTENT_MODERATION: "CONTENT_MODERATION",
|
|
148
|
+
TEXT_DETECTION: "TEXT_DETECTION",
|
|
149
|
+
};
|
|
150
|
+
exports.ImageStandardGenerativeFieldType = {
|
|
151
|
+
IAB: "IAB",
|
|
152
|
+
IMAGE_SUMMARY: "IMAGE_SUMMARY",
|
|
153
|
+
};
|
|
154
|
+
exports.VideoExtractionCategoryType = {
|
|
155
|
+
CONTENT_MODERATION: "CONTENT_MODERATION",
|
|
156
|
+
TEXT_DETECTION: "TEXT_DETECTION",
|
|
157
|
+
TRANSCRIPT: "TRANSCRIPT",
|
|
158
|
+
};
|
|
159
|
+
exports.VideoStandardGenerativeFieldType = {
|
|
160
|
+
IAB: "IAB",
|
|
161
|
+
SCENE_SUMMARY: "SCENE_SUMMARY",
|
|
162
|
+
VIDEO_SUMMARY: "VIDEO_SUMMARY",
|
|
163
|
+
};
|
|
164
|
+
exports.DataAutomationProjectStatus = {
|
|
165
|
+
COMPLETED: "COMPLETED",
|
|
166
|
+
FAILED: "FAILED",
|
|
167
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
168
|
+
};
|
|
169
|
+
exports.DataAutomationProjectStageFilter = {
|
|
170
|
+
ALL: "ALL",
|
|
171
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
172
|
+
LIVE: "LIVE",
|
|
173
|
+
};
|
|
174
|
+
const CreateBlueprintRequestFilterSensitiveLog = (obj) => ({
|
|
175
|
+
...obj,
|
|
176
|
+
...(obj.blueprintName && { blueprintName: smithy_client_1.SENSITIVE_STRING }),
|
|
177
|
+
...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
|
|
178
|
+
});
|
|
179
|
+
exports.CreateBlueprintRequestFilterSensitiveLog = CreateBlueprintRequestFilterSensitiveLog;
|
|
180
|
+
const BlueprintFilterSensitiveLog = (obj) => ({
|
|
181
|
+
...obj,
|
|
182
|
+
...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
|
|
183
|
+
...(obj.blueprintName && { blueprintName: smithy_client_1.SENSITIVE_STRING }),
|
|
184
|
+
});
|
|
185
|
+
exports.BlueprintFilterSensitiveLog = BlueprintFilterSensitiveLog;
|
|
186
|
+
const CreateBlueprintResponseFilterSensitiveLog = (obj) => ({
|
|
187
|
+
...obj,
|
|
188
|
+
...(obj.blueprint && { blueprint: (0, exports.BlueprintFilterSensitiveLog)(obj.blueprint) }),
|
|
189
|
+
});
|
|
190
|
+
exports.CreateBlueprintResponseFilterSensitiveLog = CreateBlueprintResponseFilterSensitiveLog;
|
|
191
|
+
const GetBlueprintResponseFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
...(obj.blueprint && { blueprint: (0, exports.BlueprintFilterSensitiveLog)(obj.blueprint) }),
|
|
194
|
+
});
|
|
195
|
+
exports.GetBlueprintResponseFilterSensitiveLog = GetBlueprintResponseFilterSensitiveLog;
|
|
196
|
+
const BlueprintSummaryFilterSensitiveLog = (obj) => ({
|
|
197
|
+
...obj,
|
|
198
|
+
...(obj.blueprintName && { blueprintName: smithy_client_1.SENSITIVE_STRING }),
|
|
199
|
+
});
|
|
200
|
+
exports.BlueprintSummaryFilterSensitiveLog = BlueprintSummaryFilterSensitiveLog;
|
|
201
|
+
const ListBlueprintsResponseFilterSensitiveLog = (obj) => ({
|
|
202
|
+
...obj,
|
|
203
|
+
...(obj.blueprints && { blueprints: obj.blueprints.map((item) => (0, exports.BlueprintSummaryFilterSensitiveLog)(item)) }),
|
|
204
|
+
});
|
|
205
|
+
exports.ListBlueprintsResponseFilterSensitiveLog = ListBlueprintsResponseFilterSensitiveLog;
|
|
206
|
+
const UpdateBlueprintRequestFilterSensitiveLog = (obj) => ({
|
|
207
|
+
...obj,
|
|
208
|
+
...(obj.schema && { schema: smithy_client_1.SENSITIVE_STRING }),
|
|
209
|
+
});
|
|
210
|
+
exports.UpdateBlueprintRequestFilterSensitiveLog = UpdateBlueprintRequestFilterSensitiveLog;
|
|
211
|
+
const UpdateBlueprintResponseFilterSensitiveLog = (obj) => ({
|
|
212
|
+
...obj,
|
|
213
|
+
...(obj.blueprint && { blueprint: (0, exports.BlueprintFilterSensitiveLog)(obj.blueprint) }),
|
|
214
|
+
});
|
|
215
|
+
exports.UpdateBlueprintResponseFilterSensitiveLog = UpdateBlueprintResponseFilterSensitiveLog;
|
|
216
|
+
const CreateBlueprintVersionResponseFilterSensitiveLog = (obj) => ({
|
|
217
|
+
...obj,
|
|
218
|
+
...(obj.blueprint && { blueprint: (0, exports.BlueprintFilterSensitiveLog)(obj.blueprint) }),
|
|
219
|
+
});
|
|
220
|
+
exports.CreateBlueprintVersionResponseFilterSensitiveLog = CreateBlueprintVersionResponseFilterSensitiveLog;
|
|
221
|
+
const CreateDataAutomationProjectRequestFilterSensitiveLog = (obj) => ({
|
|
222
|
+
...obj,
|
|
223
|
+
...(obj.projectName && { projectName: smithy_client_1.SENSITIVE_STRING }),
|
|
224
|
+
...(obj.projectDescription && { projectDescription: smithy_client_1.SENSITIVE_STRING }),
|
|
225
|
+
});
|
|
226
|
+
exports.CreateDataAutomationProjectRequestFilterSensitiveLog = CreateDataAutomationProjectRequestFilterSensitiveLog;
|
|
227
|
+
const DataAutomationProjectFilterSensitiveLog = (obj) => ({
|
|
228
|
+
...obj,
|
|
229
|
+
...(obj.projectName && { projectName: smithy_client_1.SENSITIVE_STRING }),
|
|
230
|
+
...(obj.projectDescription && { projectDescription: smithy_client_1.SENSITIVE_STRING }),
|
|
231
|
+
});
|
|
232
|
+
exports.DataAutomationProjectFilterSensitiveLog = DataAutomationProjectFilterSensitiveLog;
|
|
233
|
+
const GetDataAutomationProjectResponseFilterSensitiveLog = (obj) => ({
|
|
234
|
+
...obj,
|
|
235
|
+
...(obj.project && { project: (0, exports.DataAutomationProjectFilterSensitiveLog)(obj.project) }),
|
|
236
|
+
});
|
|
237
|
+
exports.GetDataAutomationProjectResponseFilterSensitiveLog = GetDataAutomationProjectResponseFilterSensitiveLog;
|
|
238
|
+
const DataAutomationProjectSummaryFilterSensitiveLog = (obj) => ({
|
|
239
|
+
...obj,
|
|
240
|
+
...(obj.projectName && { projectName: smithy_client_1.SENSITIVE_STRING }),
|
|
241
|
+
});
|
|
242
|
+
exports.DataAutomationProjectSummaryFilterSensitiveLog = DataAutomationProjectSummaryFilterSensitiveLog;
|
|
243
|
+
const ListDataAutomationProjectsResponseFilterSensitiveLog = (obj) => ({
|
|
244
|
+
...obj,
|
|
245
|
+
...(obj.projects && { projects: obj.projects.map((item) => (0, exports.DataAutomationProjectSummaryFilterSensitiveLog)(item)) }),
|
|
246
|
+
});
|
|
247
|
+
exports.ListDataAutomationProjectsResponseFilterSensitiveLog = ListDataAutomationProjectsResponseFilterSensitiveLog;
|
|
248
|
+
const UpdateDataAutomationProjectRequestFilterSensitiveLog = (obj) => ({
|
|
249
|
+
...obj,
|
|
250
|
+
...(obj.projectDescription && { projectDescription: smithy_client_1.SENSITIVE_STRING }),
|
|
251
|
+
});
|
|
252
|
+
exports.UpdateDataAutomationProjectRequestFilterSensitiveLog = UpdateDataAutomationProjectRequestFilterSensitiveLog;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListBlueprints = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const BedrockDataAutomationClient_1 = require("../BedrockDataAutomationClient");
|
|
6
|
+
const ListBlueprintsCommand_1 = require("../commands/ListBlueprintsCommand");
|
|
7
|
+
exports.paginateListBlueprints = (0, core_1.createPaginator)(BedrockDataAutomationClient_1.BedrockDataAutomationClient, ListBlueprintsCommand_1.ListBlueprintsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.paginateListDataAutomationProjects = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
5
|
+
const BedrockDataAutomationClient_1 = require("../BedrockDataAutomationClient");
|
|
6
|
+
const ListDataAutomationProjectsCommand_1 = require("../commands/ListDataAutomationProjectsCommand");
|
|
7
|
+
exports.paginateListDataAutomationProjects = (0, core_1.createPaginator)(BedrockDataAutomationClient_1.BedrockDataAutomationClient, ListDataAutomationProjectsCommand_1.ListDataAutomationProjectsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./ListBlueprintsPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./ListDataAutomationProjectsPaginator"), exports);
|