@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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/BedrockDataAutomation.js +33 -0
  4. package/dist-cjs/BedrockDataAutomationClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateBlueprintCommand.js +27 -0
  8. package/dist-cjs/commands/CreateBlueprintVersionCommand.js +27 -0
  9. package/dist-cjs/commands/CreateDataAutomationProjectCommand.js +27 -0
  10. package/dist-cjs/commands/DeleteBlueprintCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteDataAutomationProjectCommand.js +26 -0
  12. package/dist-cjs/commands/GetBlueprintCommand.js +27 -0
  13. package/dist-cjs/commands/GetDataAutomationProjectCommand.js +27 -0
  14. package/dist-cjs/commands/ListBlueprintsCommand.js +27 -0
  15. package/dist-cjs/commands/ListDataAutomationProjectsCommand.js +27 -0
  16. package/dist-cjs/commands/UpdateBlueprintCommand.js +27 -0
  17. package/dist-cjs/commands/UpdateDataAutomationProjectCommand.js +27 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +11 -0
  24. package/dist-cjs/models/BedrockDataAutomationServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +252 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListBlueprintsPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListDataAutomationProjectsPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +6 -0
  31. package/dist-cjs/protocols/Aws_restJson1.js +560 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +50 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/BedrockDataAutomation.js +29 -0
  38. package/dist-es/BedrockDataAutomationClient.js +46 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateBlueprintCommand.js +23 -0
  42. package/dist-es/commands/CreateBlueprintVersionCommand.js +23 -0
  43. package/dist-es/commands/CreateDataAutomationProjectCommand.js +23 -0
  44. package/dist-es/commands/DeleteBlueprintCommand.js +22 -0
  45. package/dist-es/commands/DeleteDataAutomationProjectCommand.js +22 -0
  46. package/dist-es/commands/GetBlueprintCommand.js +23 -0
  47. package/dist-es/commands/GetDataAutomationProjectCommand.js +23 -0
  48. package/dist-es/commands/ListBlueprintsCommand.js +23 -0
  49. package/dist-es/commands/ListDataAutomationProjectsCommand.js +23 -0
  50. package/dist-es/commands/UpdateBlueprintCommand.js +23 -0
  51. package/dist-es/commands/UpdateDataAutomationProjectCommand.js +23 -0
  52. package/dist-es/commands/index.js +11 -0
  53. package/dist-es/endpoint/EndpointParameters.js +14 -0
  54. package/dist-es/endpoint/endpointResolver.js +14 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +6 -0
  58. package/dist-es/models/BedrockDataAutomationServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +227 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListBlueprintsPaginator.js +4 -0
  63. package/dist-es/pagination/ListDataAutomationProjectsPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +3 -0
  65. package/dist-es/protocols/Aws_restJson1.js +535 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +45 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/BedrockDataAutomation.d.ts +89 -0
  72. package/dist-types/BedrockDataAutomationClient.d.ts +180 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateBlueprintCommand.d.ts +112 -0
  76. package/dist-types/commands/CreateBlueprintVersionCommand.d.ts +103 -0
  77. package/dist-types/commands/CreateDataAutomationProjectCommand.d.ts +197 -0
  78. package/dist-types/commands/DeleteBlueprintCommand.d.ts +85 -0
  79. package/dist-types/commands/DeleteDataAutomationProjectCommand.d.ts +87 -0
  80. package/dist-types/commands/GetBlueprintCommand.d.ts +101 -0
  81. package/dist-types/commands/GetDataAutomationProjectCommand.d.ts +196 -0
  82. package/dist-types/commands/ListBlueprintsCommand.d.ts +104 -0
  83. package/dist-types/commands/ListDataAutomationProjectsCommand.d.ts +102 -0
  84. package/dist-types/commands/UpdateBlueprintCommand.d.ts +104 -0
  85. package/dist-types/commands/UpdateDataAutomationProjectCommand.d.ts +190 -0
  86. package/dist-types/commands/index.d.ts +11 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +14 -0
  92. package/dist-types/models/BedrockDataAutomationServiceException.d.ts +14 -0
  93. package/dist-types/models/index.d.ts +1 -0
  94. package/dist-types/models/models_0.d.ts +1453 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListBlueprintsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListDataAutomationProjectsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +3 -0
  99. package/dist-types/protocols/Aws_restJson1.d.ts +101 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  101. package/dist-types/runtimeConfig.d.ts +48 -0
  102. package/dist-types/runtimeConfig.native.d.ts +47 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/BedrockDataAutomation.d.ts +196 -0
  106. package/dist-types/ts3.4/BedrockDataAutomationClient.d.ts +187 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateBlueprintCommand.d.ts +50 -0
  110. package/dist-types/ts3.4/commands/CreateBlueprintVersionCommand.d.ts +51 -0
  111. package/dist-types/ts3.4/commands/CreateDataAutomationProjectCommand.d.ts +51 -0
  112. package/dist-types/ts3.4/commands/DeleteBlueprintCommand.d.ts +50 -0
  113. package/dist-types/ts3.4/commands/DeleteDataAutomationProjectCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/GetBlueprintCommand.d.ts +47 -0
  115. package/dist-types/ts3.4/commands/GetDataAutomationProjectCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +50 -0
  117. package/dist-types/ts3.4/commands/ListDataAutomationProjectsCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +50 -0
  119. package/dist-types/ts3.4/commands/UpdateDataAutomationProjectCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  125. package/dist-types/ts3.4/index.d.ts +9 -0
  126. package/dist-types/ts3.4/models/BedrockDataAutomationServiceException.d.ts +9 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +463 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListBlueprintsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListDataAutomationProjectsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  133. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +137 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  139. package/package.json +103 -0
@@ -0,0 +1,1453 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BedrockDataAutomationServiceException as __BaseException } from "./BedrockDataAutomationServiceException";
3
+ /**
4
+ * This exception is thrown when a request is denied per access permissions
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * This exception is thrown when there is a conflict performing an operation
17
+ * @public
18
+ */
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
+ }
27
+ /**
28
+ * @public
29
+ * @enum
30
+ */
31
+ export declare const BlueprintStage: {
32
+ readonly DEVELOPMENT: "DEVELOPMENT";
33
+ readonly LIVE: "LIVE";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type BlueprintStage = (typeof BlueprintStage)[keyof typeof BlueprintStage];
39
+ /**
40
+ * KMS Encryption Configuration
41
+ * @public
42
+ */
43
+ export interface EncryptionConfiguration {
44
+ /**
45
+ * KMS Key Identifier
46
+ * @public
47
+ */
48
+ kmsKeyId: string | undefined;
49
+ /**
50
+ * KMS Encryption Context
51
+ * @public
52
+ */
53
+ kmsEncryptionContext?: Record<string, string> | undefined;
54
+ }
55
+ /**
56
+ * @public
57
+ * @enum
58
+ */
59
+ export declare const Type: {
60
+ readonly DOCUMENT: "DOCUMENT";
61
+ readonly IMAGE: "IMAGE";
62
+ };
63
+ /**
64
+ * @public
65
+ */
66
+ export type Type = (typeof Type)[keyof typeof Type];
67
+ /**
68
+ * Create Blueprint Request
69
+ * @public
70
+ */
71
+ export interface CreateBlueprintRequest {
72
+ /**
73
+ * Name of the Blueprint
74
+ * @public
75
+ */
76
+ blueprintName: string | undefined;
77
+ /**
78
+ * Type
79
+ * @public
80
+ */
81
+ type: Type | undefined;
82
+ /**
83
+ * Stage of the Blueprint
84
+ * @public
85
+ */
86
+ blueprintStage?: BlueprintStage | undefined;
87
+ /**
88
+ * Schema of the blueprint
89
+ * @public
90
+ */
91
+ schema: string | undefined;
92
+ /**
93
+ * Client specified token used for idempotency checks
94
+ * @public
95
+ */
96
+ clientToken?: string | undefined;
97
+ /**
98
+ * KMS Encryption Configuration
99
+ * @public
100
+ */
101
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
102
+ }
103
+ /**
104
+ * Contains the information of a Blueprint.
105
+ * @public
106
+ */
107
+ export interface Blueprint {
108
+ /**
109
+ * ARN of a Blueprint
110
+ * @public
111
+ */
112
+ blueprintArn: string | undefined;
113
+ /**
114
+ * Schema of the blueprint
115
+ * @public
116
+ */
117
+ schema: string | undefined;
118
+ /**
119
+ * Type
120
+ * @public
121
+ */
122
+ type: Type | undefined;
123
+ /**
124
+ * Time Stamp
125
+ * @public
126
+ */
127
+ creationTime: Date | undefined;
128
+ /**
129
+ * Time Stamp
130
+ * @public
131
+ */
132
+ lastModifiedTime: Date | undefined;
133
+ /**
134
+ * Name of the Blueprint
135
+ * @public
136
+ */
137
+ blueprintName: string | undefined;
138
+ /**
139
+ * Blueprint Version
140
+ * @public
141
+ */
142
+ blueprintVersion?: string | undefined;
143
+ /**
144
+ * Stage of the Blueprint
145
+ * @public
146
+ */
147
+ blueprintStage?: BlueprintStage | undefined;
148
+ /**
149
+ * KMS Key Identifier
150
+ * @public
151
+ */
152
+ kmsKeyId?: string | undefined;
153
+ /**
154
+ * KMS Encryption Context
155
+ * @public
156
+ */
157
+ kmsEncryptionContext?: Record<string, string> | undefined;
158
+ }
159
+ /**
160
+ * Create Blueprint Response
161
+ * @public
162
+ */
163
+ export interface CreateBlueprintResponse {
164
+ /**
165
+ * Contains the information of a Blueprint.
166
+ * @public
167
+ */
168
+ blueprint: Blueprint | undefined;
169
+ }
170
+ /**
171
+ * This exception is thrown if there was an unexpected error during processing of request
172
+ * @public
173
+ */
174
+ export declare class InternalServerException extends __BaseException {
175
+ readonly name: "InternalServerException";
176
+ readonly $fault: "server";
177
+ /**
178
+ * @internal
179
+ */
180
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
181
+ }
182
+ /**
183
+ * This exception is thrown when a request is made beyond the service quota
184
+ * @public
185
+ */
186
+ export declare class ServiceQuotaExceededException extends __BaseException {
187
+ readonly name: "ServiceQuotaExceededException";
188
+ readonly $fault: "client";
189
+ /**
190
+ * @internal
191
+ */
192
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
193
+ }
194
+ /**
195
+ * This exception is thrown when the number of requests exceeds the limit
196
+ * @public
197
+ */
198
+ export declare class ThrottlingException extends __BaseException {
199
+ readonly name: "ThrottlingException";
200
+ readonly $fault: "client";
201
+ /**
202
+ * @internal
203
+ */
204
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
205
+ }
206
+ /**
207
+ * Stores information about a field passed inside a request that resulted in an exception
208
+ * @public
209
+ */
210
+ export interface ValidationExceptionField {
211
+ /**
212
+ * Non Blank String
213
+ * @public
214
+ */
215
+ name: string | undefined;
216
+ /**
217
+ * Non Blank String
218
+ * @public
219
+ */
220
+ message: string | undefined;
221
+ }
222
+ /**
223
+ * This exception is thrown when the request's input validation fails
224
+ * @public
225
+ */
226
+ export declare class ValidationException extends __BaseException {
227
+ readonly name: "ValidationException";
228
+ readonly $fault: "client";
229
+ /**
230
+ * list of ValidationExceptionField
231
+ * @public
232
+ */
233
+ fieldList?: ValidationExceptionField[] | undefined;
234
+ /**
235
+ * @internal
236
+ */
237
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
238
+ }
239
+ /**
240
+ * Delete Blueprint Request
241
+ * @public
242
+ */
243
+ export interface DeleteBlueprintRequest {
244
+ /**
245
+ * ARN generated at the server side when a Blueprint is created
246
+ * @public
247
+ */
248
+ blueprintArn: string | undefined;
249
+ /**
250
+ * Optional field to delete a specific Blueprint version
251
+ * @public
252
+ */
253
+ blueprintVersion?: string | undefined;
254
+ }
255
+ /**
256
+ * Delete Blueprint Response
257
+ * @public
258
+ */
259
+ export interface DeleteBlueprintResponse {
260
+ }
261
+ /**
262
+ * This exception is thrown when a resource referenced by the operation does not exist
263
+ * @public
264
+ */
265
+ export declare class ResourceNotFoundException extends __BaseException {
266
+ readonly name: "ResourceNotFoundException";
267
+ readonly $fault: "client";
268
+ /**
269
+ * @internal
270
+ */
271
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
272
+ }
273
+ /**
274
+ * Get Blueprint Request
275
+ * @public
276
+ */
277
+ export interface GetBlueprintRequest {
278
+ /**
279
+ * ARN generated at the server side when a Blueprint is created
280
+ * @public
281
+ */
282
+ blueprintArn: string | undefined;
283
+ /**
284
+ * Optional field to get a specific Blueprint version
285
+ * @public
286
+ */
287
+ blueprintVersion?: string | undefined;
288
+ /**
289
+ * Optional field to get a specific Blueprint stage
290
+ * @public
291
+ */
292
+ blueprintStage?: BlueprintStage | undefined;
293
+ }
294
+ /**
295
+ * Get Blueprint Response
296
+ * @public
297
+ */
298
+ export interface GetBlueprintResponse {
299
+ /**
300
+ * Contains the information of a Blueprint.
301
+ * @public
302
+ */
303
+ blueprint: Blueprint | undefined;
304
+ }
305
+ /**
306
+ * @public
307
+ * @enum
308
+ */
309
+ export declare const BlueprintStageFilter: {
310
+ readonly ALL: "ALL";
311
+ readonly DEVELOPMENT: "DEVELOPMENT";
312
+ readonly LIVE: "LIVE";
313
+ };
314
+ /**
315
+ * @public
316
+ */
317
+ export type BlueprintStageFilter = (typeof BlueprintStageFilter)[keyof typeof BlueprintStageFilter];
318
+ /**
319
+ * @public
320
+ * @enum
321
+ */
322
+ export declare const DataAutomationProjectStage: {
323
+ readonly DEVELOPMENT: "DEVELOPMENT";
324
+ readonly LIVE: "LIVE";
325
+ };
326
+ /**
327
+ * @public
328
+ */
329
+ export type DataAutomationProjectStage = (typeof DataAutomationProjectStage)[keyof typeof DataAutomationProjectStage];
330
+ /**
331
+ * Data Automation Project Filter
332
+ * @public
333
+ */
334
+ export interface DataAutomationProjectFilter {
335
+ /**
336
+ * ARN of a DataAutomationProject
337
+ * @public
338
+ */
339
+ projectArn: string | undefined;
340
+ /**
341
+ * Stage of the Project
342
+ * @public
343
+ */
344
+ projectStage?: DataAutomationProjectStage | undefined;
345
+ }
346
+ /**
347
+ * @public
348
+ * @enum
349
+ */
350
+ export declare const ResourceOwner: {
351
+ readonly ACCOUNT: "ACCOUNT";
352
+ readonly SERVICE: "SERVICE";
353
+ };
354
+ /**
355
+ * @public
356
+ */
357
+ export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
358
+ /**
359
+ * List Blueprint Request
360
+ * @public
361
+ */
362
+ export interface ListBlueprintsRequest {
363
+ /**
364
+ * ARN of a Blueprint
365
+ * @public
366
+ */
367
+ blueprintArn?: string | undefined;
368
+ /**
369
+ * Resource Owner
370
+ * @public
371
+ */
372
+ resourceOwner?: ResourceOwner | undefined;
373
+ /**
374
+ * Blueprint Stage filter
375
+ * @public
376
+ */
377
+ blueprintStageFilter?: BlueprintStageFilter | undefined;
378
+ /**
379
+ * Max Results
380
+ * @public
381
+ */
382
+ maxResults?: number | undefined;
383
+ /**
384
+ * Pagination token
385
+ * @public
386
+ */
387
+ nextToken?: string | undefined;
388
+ /**
389
+ * Data Automation Project Filter
390
+ * @public
391
+ */
392
+ projectFilter?: DataAutomationProjectFilter | undefined;
393
+ }
394
+ /**
395
+ * Summary of a Blueprint
396
+ * @public
397
+ */
398
+ export interface BlueprintSummary {
399
+ /**
400
+ * ARN of a Blueprint
401
+ * @public
402
+ */
403
+ blueprintArn: string | undefined;
404
+ /**
405
+ * Blueprint Version
406
+ * @public
407
+ */
408
+ blueprintVersion?: string | undefined;
409
+ /**
410
+ * Stage of the Blueprint
411
+ * @public
412
+ */
413
+ blueprintStage?: BlueprintStage | undefined;
414
+ /**
415
+ * Name of the Blueprint
416
+ * @public
417
+ */
418
+ blueprintName?: string | undefined;
419
+ /**
420
+ * Time Stamp
421
+ * @public
422
+ */
423
+ creationTime: Date | undefined;
424
+ /**
425
+ * Time Stamp
426
+ * @public
427
+ */
428
+ lastModifiedTime?: Date | undefined;
429
+ }
430
+ /**
431
+ * List Blueprint Response
432
+ * @public
433
+ */
434
+ export interface ListBlueprintsResponse {
435
+ /**
436
+ * List of Blueprints
437
+ * @public
438
+ */
439
+ blueprints: BlueprintSummary[] | undefined;
440
+ /**
441
+ * Pagination token
442
+ * @public
443
+ */
444
+ nextToken?: string | undefined;
445
+ }
446
+ /**
447
+ * Update Blueprint Request
448
+ * @public
449
+ */
450
+ export interface UpdateBlueprintRequest {
451
+ /**
452
+ * ARN generated at the server side when a Blueprint is created
453
+ * @public
454
+ */
455
+ blueprintArn: string | undefined;
456
+ /**
457
+ * Schema of the blueprint
458
+ * @public
459
+ */
460
+ schema: string | undefined;
461
+ /**
462
+ * Stage of the Blueprint
463
+ * @public
464
+ */
465
+ blueprintStage?: BlueprintStage | undefined;
466
+ }
467
+ /**
468
+ * Update Blueprint Response
469
+ * @public
470
+ */
471
+ export interface UpdateBlueprintResponse {
472
+ /**
473
+ * Contains the information of a Blueprint.
474
+ * @public
475
+ */
476
+ blueprint: Blueprint | undefined;
477
+ }
478
+ /**
479
+ * Create Blueprint Version Request
480
+ * @public
481
+ */
482
+ export interface CreateBlueprintVersionRequest {
483
+ /**
484
+ * ARN generated at the server side when a Blueprint is created
485
+ * @public
486
+ */
487
+ blueprintArn: string | undefined;
488
+ /**
489
+ * Client specified token used for idempotency checks
490
+ * @public
491
+ */
492
+ clientToken?: string | undefined;
493
+ }
494
+ /**
495
+ * Create Blueprint Version Response
496
+ * @public
497
+ */
498
+ export interface CreateBlueprintVersionResponse {
499
+ /**
500
+ * Contains the information of a Blueprint.
501
+ * @public
502
+ */
503
+ blueprint: Blueprint | undefined;
504
+ }
505
+ /**
506
+ * Blueprint Item
507
+ * @public
508
+ */
509
+ export interface BlueprintItem {
510
+ /**
511
+ * ARN of a Blueprint
512
+ * @public
513
+ */
514
+ blueprintArn: string | undefined;
515
+ /**
516
+ * Blueprint Version
517
+ * @public
518
+ */
519
+ blueprintVersion?: string | undefined;
520
+ /**
521
+ * Stage of the Blueprint
522
+ * @public
523
+ */
524
+ blueprintStage?: BlueprintStage | undefined;
525
+ }
526
+ /**
527
+ * Custom output configuration
528
+ * @public
529
+ */
530
+ export interface CustomOutputConfiguration {
531
+ /**
532
+ * List of Blueprint Item
533
+ * @public
534
+ */
535
+ blueprints?: BlueprintItem[] | undefined;
536
+ }
537
+ /**
538
+ * @public
539
+ * @enum
540
+ */
541
+ export declare const State: {
542
+ readonly DISABLED: "DISABLED";
543
+ readonly ENABLED: "ENABLED";
544
+ };
545
+ /**
546
+ * @public
547
+ */
548
+ export type State = (typeof State)[keyof typeof State];
549
+ /**
550
+ * Configuration of Splitter
551
+ * @public
552
+ */
553
+ export interface SplitterConfiguration {
554
+ /**
555
+ * State
556
+ * @public
557
+ */
558
+ state?: State | undefined;
559
+ }
560
+ /**
561
+ * Override Configuration of Document
562
+ * @public
563
+ */
564
+ export interface DocumentOverrideConfiguration {
565
+ /**
566
+ * Configuration of Splitter
567
+ * @public
568
+ */
569
+ splitter?: SplitterConfiguration | undefined;
570
+ }
571
+ /**
572
+ * Override configuration
573
+ * @public
574
+ */
575
+ export interface OverrideConfiguration {
576
+ /**
577
+ * Override Configuration of Document
578
+ * @public
579
+ */
580
+ document?: DocumentOverrideConfiguration | undefined;
581
+ }
582
+ /**
583
+ * @public
584
+ * @enum
585
+ */
586
+ export declare const AudioExtractionCategoryType: {
587
+ readonly AUDIO_CONTENT_MODERATION: "AUDIO_CONTENT_MODERATION";
588
+ readonly CHAPTER_CONTENT_MODERATION: "CHAPTER_CONTENT_MODERATION";
589
+ readonly TRANSCRIPT: "TRANSCRIPT";
590
+ };
591
+ /**
592
+ * @public
593
+ */
594
+ export type AudioExtractionCategoryType = (typeof AudioExtractionCategoryType)[keyof typeof AudioExtractionCategoryType];
595
+ /**
596
+ * Category of Audio Extraction
597
+ * @public
598
+ */
599
+ export interface AudioExtractionCategory {
600
+ /**
601
+ * State
602
+ * @public
603
+ */
604
+ state: State | undefined;
605
+ /**
606
+ * List of Audio Extraction Category Type
607
+ * @public
608
+ */
609
+ types?: AudioExtractionCategoryType[] | undefined;
610
+ }
611
+ /**
612
+ * Standard Extraction Configuration of Audio
613
+ * @public
614
+ */
615
+ export interface AudioStandardExtraction {
616
+ /**
617
+ * Category of Audio Extraction
618
+ * @public
619
+ */
620
+ category: AudioExtractionCategory | undefined;
621
+ }
622
+ /**
623
+ * @public
624
+ * @enum
625
+ */
626
+ export declare const AudioStandardGenerativeFieldType: {
627
+ readonly AUDIO_SUMMARY: "AUDIO_SUMMARY";
628
+ readonly CHAPTER_SUMMARY: "CHAPTER_SUMMARY";
629
+ readonly IAB: "IAB";
630
+ };
631
+ /**
632
+ * @public
633
+ */
634
+ export type AudioStandardGenerativeFieldType = (typeof AudioStandardGenerativeFieldType)[keyof typeof AudioStandardGenerativeFieldType];
635
+ /**
636
+ * Standard Generative Field Configuration of Audio
637
+ * @public
638
+ */
639
+ export interface AudioStandardGenerativeField {
640
+ /**
641
+ * State
642
+ * @public
643
+ */
644
+ state: State | undefined;
645
+ /**
646
+ * List of Audio Standard Generative Field Type
647
+ * @public
648
+ */
649
+ types?: AudioStandardGenerativeFieldType[] | undefined;
650
+ }
651
+ /**
652
+ * Standard Output Configuration of Audio
653
+ * @public
654
+ */
655
+ export interface AudioStandardOutputConfiguration {
656
+ /**
657
+ * Standard Extraction Configuration of Audio
658
+ * @public
659
+ */
660
+ extraction?: AudioStandardExtraction | undefined;
661
+ /**
662
+ * Standard Generative Field Configuration of Audio
663
+ * @public
664
+ */
665
+ generativeField?: AudioStandardGenerativeField | undefined;
666
+ }
667
+ /**
668
+ * Bounding Box Configuration of Document Extraction
669
+ * @public
670
+ */
671
+ export interface DocumentBoundingBox {
672
+ /**
673
+ * State
674
+ * @public
675
+ */
676
+ state: State | undefined;
677
+ }
678
+ /**
679
+ * @public
680
+ * @enum
681
+ */
682
+ export declare const DocumentExtractionGranularityType: {
683
+ readonly DOCUMENT: "DOCUMENT";
684
+ readonly ELEMENT: "ELEMENT";
685
+ readonly LINE: "LINE";
686
+ readonly PAGE: "PAGE";
687
+ readonly WORD: "WORD";
688
+ };
689
+ /**
690
+ * @public
691
+ */
692
+ export type DocumentExtractionGranularityType = (typeof DocumentExtractionGranularityType)[keyof typeof DocumentExtractionGranularityType];
693
+ /**
694
+ * Granularity of Document Extraction
695
+ * @public
696
+ */
697
+ export interface DocumentExtractionGranularity {
698
+ /**
699
+ * List of Document Extraction Granularity Type
700
+ * @public
701
+ */
702
+ types?: DocumentExtractionGranularityType[] | undefined;
703
+ }
704
+ /**
705
+ * Standard Extraction Configuration of Document
706
+ * @public
707
+ */
708
+ export interface DocumentStandardExtraction {
709
+ /**
710
+ * Granularity of Document Extraction
711
+ * @public
712
+ */
713
+ granularity: DocumentExtractionGranularity | undefined;
714
+ /**
715
+ * Bounding Box Configuration of Document Extraction
716
+ * @public
717
+ */
718
+ boundingBox: DocumentBoundingBox | undefined;
719
+ }
720
+ /**
721
+ * Standard Generative Field Configuration of Document
722
+ * @public
723
+ */
724
+ export interface DocumentStandardGenerativeField {
725
+ /**
726
+ * State
727
+ * @public
728
+ */
729
+ state: State | undefined;
730
+ }
731
+ /**
732
+ * Additional File Format of Document Output
733
+ * @public
734
+ */
735
+ export interface DocumentOutputAdditionalFileFormat {
736
+ /**
737
+ * State
738
+ * @public
739
+ */
740
+ state: State | undefined;
741
+ }
742
+ /**
743
+ * @public
744
+ * @enum
745
+ */
746
+ export declare const DocumentOutputTextFormatType: {
747
+ readonly CSV: "CSV";
748
+ readonly HTML: "HTML";
749
+ readonly MARKDOWN: "MARKDOWN";
750
+ readonly PLAIN_TEXT: "PLAIN_TEXT";
751
+ };
752
+ /**
753
+ * @public
754
+ */
755
+ export type DocumentOutputTextFormatType = (typeof DocumentOutputTextFormatType)[keyof typeof DocumentOutputTextFormatType];
756
+ /**
757
+ * Text Format of Document Output
758
+ * @public
759
+ */
760
+ export interface DocumentOutputTextFormat {
761
+ /**
762
+ * List of Document Output Text Format Type
763
+ * @public
764
+ */
765
+ types?: DocumentOutputTextFormatType[] | undefined;
766
+ }
767
+ /**
768
+ * Output Format of Document
769
+ * @public
770
+ */
771
+ export interface DocumentOutputFormat {
772
+ /**
773
+ * Text Format of Document Output
774
+ * @public
775
+ */
776
+ textFormat: DocumentOutputTextFormat | undefined;
777
+ /**
778
+ * Additional File Format of Document Output
779
+ * @public
780
+ */
781
+ additionalFileFormat: DocumentOutputAdditionalFileFormat | undefined;
782
+ }
783
+ /**
784
+ * Standard Output Configuration of Document
785
+ * @public
786
+ */
787
+ export interface DocumentStandardOutputConfiguration {
788
+ /**
789
+ * Standard Extraction Configuration of Document
790
+ * @public
791
+ */
792
+ extraction?: DocumentStandardExtraction | undefined;
793
+ /**
794
+ * Standard Generative Field Configuration of Document
795
+ * @public
796
+ */
797
+ generativeField?: DocumentStandardGenerativeField | undefined;
798
+ /**
799
+ * Output Format of Document
800
+ * @public
801
+ */
802
+ outputFormat?: DocumentOutputFormat | undefined;
803
+ }
804
+ /**
805
+ * Bounding Box Configuration of Image Extraction
806
+ * @public
807
+ */
808
+ export interface ImageBoundingBox {
809
+ /**
810
+ * State
811
+ * @public
812
+ */
813
+ state: State | undefined;
814
+ }
815
+ /**
816
+ * @public
817
+ * @enum
818
+ */
819
+ export declare const ImageExtractionCategoryType: {
820
+ readonly CONTENT_MODERATION: "CONTENT_MODERATION";
821
+ readonly TEXT_DETECTION: "TEXT_DETECTION";
822
+ };
823
+ /**
824
+ * @public
825
+ */
826
+ export type ImageExtractionCategoryType = (typeof ImageExtractionCategoryType)[keyof typeof ImageExtractionCategoryType];
827
+ /**
828
+ * Category of Image Extraction
829
+ * @public
830
+ */
831
+ export interface ImageExtractionCategory {
832
+ /**
833
+ * State
834
+ * @public
835
+ */
836
+ state: State | undefined;
837
+ /**
838
+ * List of Image Extraction Category
839
+ * @public
840
+ */
841
+ types?: ImageExtractionCategoryType[] | undefined;
842
+ }
843
+ /**
844
+ * Standard Extraction Configuration of Image
845
+ * @public
846
+ */
847
+ export interface ImageStandardExtraction {
848
+ /**
849
+ * Category of Image Extraction
850
+ * @public
851
+ */
852
+ category: ImageExtractionCategory | undefined;
853
+ /**
854
+ * Bounding Box Configuration of Image Extraction
855
+ * @public
856
+ */
857
+ boundingBox: ImageBoundingBox | undefined;
858
+ }
859
+ /**
860
+ * @public
861
+ * @enum
862
+ */
863
+ export declare const ImageStandardGenerativeFieldType: {
864
+ readonly IAB: "IAB";
865
+ readonly IMAGE_SUMMARY: "IMAGE_SUMMARY";
866
+ };
867
+ /**
868
+ * @public
869
+ */
870
+ export type ImageStandardGenerativeFieldType = (typeof ImageStandardGenerativeFieldType)[keyof typeof ImageStandardGenerativeFieldType];
871
+ /**
872
+ * Standard Generative Field Configuration of Image
873
+ * @public
874
+ */
875
+ export interface ImageStandardGenerativeField {
876
+ /**
877
+ * State
878
+ * @public
879
+ */
880
+ state: State | undefined;
881
+ /**
882
+ * List of Image Standard Generative Field Type
883
+ * @public
884
+ */
885
+ types?: ImageStandardGenerativeFieldType[] | undefined;
886
+ }
887
+ /**
888
+ * Standard Output Configuration of Image
889
+ * @public
890
+ */
891
+ export interface ImageStandardOutputConfiguration {
892
+ /**
893
+ * Standard Extraction Configuration of Image
894
+ * @public
895
+ */
896
+ extraction?: ImageStandardExtraction | undefined;
897
+ /**
898
+ * Standard Generative Field Configuration of Image
899
+ * @public
900
+ */
901
+ generativeField?: ImageStandardGenerativeField | undefined;
902
+ }
903
+ /**
904
+ * Bounding Box Configuration of Video Extraction
905
+ * @public
906
+ */
907
+ export interface VideoBoundingBox {
908
+ /**
909
+ * State
910
+ * @public
911
+ */
912
+ state: State | undefined;
913
+ }
914
+ /**
915
+ * @public
916
+ * @enum
917
+ */
918
+ export declare const VideoExtractionCategoryType: {
919
+ readonly CONTENT_MODERATION: "CONTENT_MODERATION";
920
+ readonly TEXT_DETECTION: "TEXT_DETECTION";
921
+ readonly TRANSCRIPT: "TRANSCRIPT";
922
+ };
923
+ /**
924
+ * @public
925
+ */
926
+ export type VideoExtractionCategoryType = (typeof VideoExtractionCategoryType)[keyof typeof VideoExtractionCategoryType];
927
+ /**
928
+ * Category of Video Extraction
929
+ * @public
930
+ */
931
+ export interface VideoExtractionCategory {
932
+ /**
933
+ * State
934
+ * @public
935
+ */
936
+ state: State | undefined;
937
+ /**
938
+ * List of Video Extraction Category Type
939
+ * @public
940
+ */
941
+ types?: VideoExtractionCategoryType[] | undefined;
942
+ }
943
+ /**
944
+ * Standard Extraction Configuration of Video
945
+ * @public
946
+ */
947
+ export interface VideoStandardExtraction {
948
+ /**
949
+ * Category of Video Extraction
950
+ * @public
951
+ */
952
+ category: VideoExtractionCategory | undefined;
953
+ /**
954
+ * Bounding Box Configuration of Video Extraction
955
+ * @public
956
+ */
957
+ boundingBox: VideoBoundingBox | undefined;
958
+ }
959
+ /**
960
+ * @public
961
+ * @enum
962
+ */
963
+ export declare const VideoStandardGenerativeFieldType: {
964
+ readonly IAB: "IAB";
965
+ readonly SCENE_SUMMARY: "SCENE_SUMMARY";
966
+ readonly VIDEO_SUMMARY: "VIDEO_SUMMARY";
967
+ };
968
+ /**
969
+ * @public
970
+ */
971
+ export type VideoStandardGenerativeFieldType = (typeof VideoStandardGenerativeFieldType)[keyof typeof VideoStandardGenerativeFieldType];
972
+ /**
973
+ * Standard Generative Field Configuration of Video
974
+ * @public
975
+ */
976
+ export interface VideoStandardGenerativeField {
977
+ /**
978
+ * State
979
+ * @public
980
+ */
981
+ state: State | undefined;
982
+ /**
983
+ * List of Video Standard Generative Field Type
984
+ * @public
985
+ */
986
+ types?: VideoStandardGenerativeFieldType[] | undefined;
987
+ }
988
+ /**
989
+ * Standard Output Configuration of Video
990
+ * @public
991
+ */
992
+ export interface VideoStandardOutputConfiguration {
993
+ /**
994
+ * Standard Extraction Configuration of Video
995
+ * @public
996
+ */
997
+ extraction?: VideoStandardExtraction | undefined;
998
+ /**
999
+ * Standard Generative Field Configuration of Video
1000
+ * @public
1001
+ */
1002
+ generativeField?: VideoStandardGenerativeField | undefined;
1003
+ }
1004
+ /**
1005
+ * Standard output configuration
1006
+ * @public
1007
+ */
1008
+ export interface StandardOutputConfiguration {
1009
+ /**
1010
+ * Standard Output Configuration of Document
1011
+ * @public
1012
+ */
1013
+ document?: DocumentStandardOutputConfiguration | undefined;
1014
+ /**
1015
+ * Standard Output Configuration of Image
1016
+ * @public
1017
+ */
1018
+ image?: ImageStandardOutputConfiguration | undefined;
1019
+ /**
1020
+ * Standard Output Configuration of Video
1021
+ * @public
1022
+ */
1023
+ video?: VideoStandardOutputConfiguration | undefined;
1024
+ /**
1025
+ * Standard Output Configuration of Audio
1026
+ * @public
1027
+ */
1028
+ audio?: AudioStandardOutputConfiguration | undefined;
1029
+ }
1030
+ /**
1031
+ * Create DataAutomationProject Request
1032
+ * @public
1033
+ */
1034
+ export interface CreateDataAutomationProjectRequest {
1035
+ /**
1036
+ * Name of the DataAutomationProject
1037
+ * @public
1038
+ */
1039
+ projectName: string | undefined;
1040
+ /**
1041
+ * Description of the DataAutomationProject
1042
+ * @public
1043
+ */
1044
+ projectDescription?: string | undefined;
1045
+ /**
1046
+ * Stage of the Project
1047
+ * @public
1048
+ */
1049
+ projectStage?: DataAutomationProjectStage | undefined;
1050
+ /**
1051
+ * Standard output configuration
1052
+ * @public
1053
+ */
1054
+ standardOutputConfiguration: StandardOutputConfiguration | undefined;
1055
+ /**
1056
+ * Custom output configuration
1057
+ * @public
1058
+ */
1059
+ customOutputConfiguration?: CustomOutputConfiguration | undefined;
1060
+ /**
1061
+ * Override configuration
1062
+ * @public
1063
+ */
1064
+ overrideConfiguration?: OverrideConfiguration | undefined;
1065
+ /**
1066
+ * Client specified token used for idempotency checks
1067
+ * @public
1068
+ */
1069
+ clientToken?: string | undefined;
1070
+ /**
1071
+ * KMS Encryption Configuration
1072
+ * @public
1073
+ */
1074
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
1075
+ }
1076
+ /**
1077
+ * @public
1078
+ * @enum
1079
+ */
1080
+ export declare const DataAutomationProjectStatus: {
1081
+ readonly COMPLETED: "COMPLETED";
1082
+ readonly FAILED: "FAILED";
1083
+ readonly IN_PROGRESS: "IN_PROGRESS";
1084
+ };
1085
+ /**
1086
+ * @public
1087
+ */
1088
+ export type DataAutomationProjectStatus = (typeof DataAutomationProjectStatus)[keyof typeof DataAutomationProjectStatus];
1089
+ /**
1090
+ * Create DataAutomationProject Response
1091
+ * @public
1092
+ */
1093
+ export interface CreateDataAutomationProjectResponse {
1094
+ /**
1095
+ * ARN of a DataAutomationProject
1096
+ * @public
1097
+ */
1098
+ projectArn: string | undefined;
1099
+ /**
1100
+ * Stage of the Project
1101
+ * @public
1102
+ */
1103
+ projectStage?: DataAutomationProjectStage | undefined;
1104
+ /**
1105
+ * Status of Data Automation Project
1106
+ * @public
1107
+ */
1108
+ status?: DataAutomationProjectStatus | undefined;
1109
+ }
1110
+ /**
1111
+ * Delete DataAutomationProject Request
1112
+ * @public
1113
+ */
1114
+ export interface DeleteDataAutomationProjectRequest {
1115
+ /**
1116
+ * ARN generated at the server side when a DataAutomationProject is created
1117
+ * @public
1118
+ */
1119
+ projectArn: string | undefined;
1120
+ }
1121
+ /**
1122
+ * Delete DataAutomationProject Response
1123
+ * @public
1124
+ */
1125
+ export interface DeleteDataAutomationProjectResponse {
1126
+ /**
1127
+ * ARN of a DataAutomationProject
1128
+ * @public
1129
+ */
1130
+ projectArn: string | undefined;
1131
+ /**
1132
+ * Status of Data Automation Project
1133
+ * @public
1134
+ */
1135
+ status?: DataAutomationProjectStatus | undefined;
1136
+ }
1137
+ /**
1138
+ * Get DataAutomationProject Request
1139
+ * @public
1140
+ */
1141
+ export interface GetDataAutomationProjectRequest {
1142
+ /**
1143
+ * ARN generated at the server side when a DataAutomationProject is created
1144
+ * @public
1145
+ */
1146
+ projectArn: string | undefined;
1147
+ /**
1148
+ * Optional field to delete a specific DataAutomationProject stage
1149
+ * @public
1150
+ */
1151
+ projectStage?: DataAutomationProjectStage | undefined;
1152
+ }
1153
+ /**
1154
+ * Contains the information of a DataAutomationProject.
1155
+ * @public
1156
+ */
1157
+ export interface DataAutomationProject {
1158
+ /**
1159
+ * ARN of a DataAutomationProject
1160
+ * @public
1161
+ */
1162
+ projectArn: string | undefined;
1163
+ /**
1164
+ * Time Stamp
1165
+ * @public
1166
+ */
1167
+ creationTime: Date | undefined;
1168
+ /**
1169
+ * Time Stamp
1170
+ * @public
1171
+ */
1172
+ lastModifiedTime: Date | undefined;
1173
+ /**
1174
+ * Name of the DataAutomationProject
1175
+ * @public
1176
+ */
1177
+ projectName: string | undefined;
1178
+ /**
1179
+ * Stage of the Project
1180
+ * @public
1181
+ */
1182
+ projectStage?: DataAutomationProjectStage | undefined;
1183
+ /**
1184
+ * Description of the DataAutomationProject
1185
+ * @public
1186
+ */
1187
+ projectDescription?: string | undefined;
1188
+ /**
1189
+ * Standard output configuration
1190
+ * @public
1191
+ */
1192
+ standardOutputConfiguration?: StandardOutputConfiguration | undefined;
1193
+ /**
1194
+ * Custom output configuration
1195
+ * @public
1196
+ */
1197
+ customOutputConfiguration?: CustomOutputConfiguration | undefined;
1198
+ /**
1199
+ * Override configuration
1200
+ * @public
1201
+ */
1202
+ overrideConfiguration?: OverrideConfiguration | undefined;
1203
+ /**
1204
+ * Status of Data Automation Project
1205
+ * @public
1206
+ */
1207
+ status: DataAutomationProjectStatus | undefined;
1208
+ /**
1209
+ * KMS Key Identifier
1210
+ * @public
1211
+ */
1212
+ kmsKeyId?: string | undefined;
1213
+ /**
1214
+ * KMS Encryption Context
1215
+ * @public
1216
+ */
1217
+ kmsEncryptionContext?: Record<string, string> | undefined;
1218
+ }
1219
+ /**
1220
+ * Get DataAutomationProject Response
1221
+ * @public
1222
+ */
1223
+ export interface GetDataAutomationProjectResponse {
1224
+ /**
1225
+ * Contains the information of a DataAutomationProject.
1226
+ * @public
1227
+ */
1228
+ project: DataAutomationProject | undefined;
1229
+ }
1230
+ /**
1231
+ * Blueprint Filter
1232
+ * @public
1233
+ */
1234
+ export interface BlueprintFilter {
1235
+ /**
1236
+ * ARN of a Blueprint
1237
+ * @public
1238
+ */
1239
+ blueprintArn: string | undefined;
1240
+ /**
1241
+ * Blueprint Version
1242
+ * @public
1243
+ */
1244
+ blueprintVersion?: string | undefined;
1245
+ /**
1246
+ * Stage of the Blueprint
1247
+ * @public
1248
+ */
1249
+ blueprintStage?: BlueprintStage | undefined;
1250
+ }
1251
+ /**
1252
+ * @public
1253
+ * @enum
1254
+ */
1255
+ export declare const DataAutomationProjectStageFilter: {
1256
+ readonly ALL: "ALL";
1257
+ readonly DEVELOPMENT: "DEVELOPMENT";
1258
+ readonly LIVE: "LIVE";
1259
+ };
1260
+ /**
1261
+ * @public
1262
+ */
1263
+ export type DataAutomationProjectStageFilter = (typeof DataAutomationProjectStageFilter)[keyof typeof DataAutomationProjectStageFilter];
1264
+ /**
1265
+ * List DataAutomationProject Request
1266
+ * @public
1267
+ */
1268
+ export interface ListDataAutomationProjectsRequest {
1269
+ /**
1270
+ * Max Results
1271
+ * @public
1272
+ */
1273
+ maxResults?: number | undefined;
1274
+ /**
1275
+ * Pagination token
1276
+ * @public
1277
+ */
1278
+ nextToken?: string | undefined;
1279
+ /**
1280
+ * Project Stage filter
1281
+ * @public
1282
+ */
1283
+ projectStageFilter?: DataAutomationProjectStageFilter | undefined;
1284
+ /**
1285
+ * Blueprint Filter
1286
+ * @public
1287
+ */
1288
+ blueprintFilter?: BlueprintFilter | undefined;
1289
+ /**
1290
+ * Resource Owner
1291
+ * @public
1292
+ */
1293
+ resourceOwner?: ResourceOwner | undefined;
1294
+ }
1295
+ /**
1296
+ * Summary of a DataAutomationProject
1297
+ * @public
1298
+ */
1299
+ export interface DataAutomationProjectSummary {
1300
+ /**
1301
+ * ARN of a DataAutomationProject
1302
+ * @public
1303
+ */
1304
+ projectArn: string | undefined;
1305
+ /**
1306
+ * Stage of the Project
1307
+ * @public
1308
+ */
1309
+ projectStage?: DataAutomationProjectStage | undefined;
1310
+ /**
1311
+ * Name of the DataAutomationProject
1312
+ * @public
1313
+ */
1314
+ projectName?: string | undefined;
1315
+ /**
1316
+ * Time Stamp
1317
+ * @public
1318
+ */
1319
+ creationTime: Date | undefined;
1320
+ }
1321
+ /**
1322
+ * List DataAutomationProject Response
1323
+ * @public
1324
+ */
1325
+ export interface ListDataAutomationProjectsResponse {
1326
+ /**
1327
+ * List of DataAutomationProjectSummary
1328
+ * @public
1329
+ */
1330
+ projects: DataAutomationProjectSummary[] | undefined;
1331
+ /**
1332
+ * Pagination token
1333
+ * @public
1334
+ */
1335
+ nextToken?: string | undefined;
1336
+ }
1337
+ /**
1338
+ * Update DataAutomationProject Request
1339
+ * @public
1340
+ */
1341
+ export interface UpdateDataAutomationProjectRequest {
1342
+ /**
1343
+ * ARN generated at the server side when a DataAutomationProject is created
1344
+ * @public
1345
+ */
1346
+ projectArn: string | undefined;
1347
+ /**
1348
+ * Stage of the Project
1349
+ * @public
1350
+ */
1351
+ projectStage?: DataAutomationProjectStage | undefined;
1352
+ /**
1353
+ * Description of the DataAutomationProject
1354
+ * @public
1355
+ */
1356
+ projectDescription?: string | undefined;
1357
+ /**
1358
+ * Standard output configuration
1359
+ * @public
1360
+ */
1361
+ standardOutputConfiguration: StandardOutputConfiguration | undefined;
1362
+ /**
1363
+ * Custom output configuration
1364
+ * @public
1365
+ */
1366
+ customOutputConfiguration?: CustomOutputConfiguration | undefined;
1367
+ /**
1368
+ * Override configuration
1369
+ * @public
1370
+ */
1371
+ overrideConfiguration?: OverrideConfiguration | undefined;
1372
+ }
1373
+ /**
1374
+ * Update DataAutomationProject Response
1375
+ * @public
1376
+ */
1377
+ export interface UpdateDataAutomationProjectResponse {
1378
+ /**
1379
+ * ARN of a DataAutomationProject
1380
+ * @public
1381
+ */
1382
+ projectArn: string | undefined;
1383
+ /**
1384
+ * Stage of the Project
1385
+ * @public
1386
+ */
1387
+ projectStage?: DataAutomationProjectStage | undefined;
1388
+ /**
1389
+ * Status of Data Automation Project
1390
+ * @public
1391
+ */
1392
+ status?: DataAutomationProjectStatus | undefined;
1393
+ }
1394
+ /**
1395
+ * @internal
1396
+ */
1397
+ export declare const CreateBlueprintRequestFilterSensitiveLog: (obj: CreateBlueprintRequest) => any;
1398
+ /**
1399
+ * @internal
1400
+ */
1401
+ export declare const BlueprintFilterSensitiveLog: (obj: Blueprint) => any;
1402
+ /**
1403
+ * @internal
1404
+ */
1405
+ export declare const CreateBlueprintResponseFilterSensitiveLog: (obj: CreateBlueprintResponse) => any;
1406
+ /**
1407
+ * @internal
1408
+ */
1409
+ export declare const GetBlueprintResponseFilterSensitiveLog: (obj: GetBlueprintResponse) => any;
1410
+ /**
1411
+ * @internal
1412
+ */
1413
+ export declare const BlueprintSummaryFilterSensitiveLog: (obj: BlueprintSummary) => any;
1414
+ /**
1415
+ * @internal
1416
+ */
1417
+ export declare const ListBlueprintsResponseFilterSensitiveLog: (obj: ListBlueprintsResponse) => any;
1418
+ /**
1419
+ * @internal
1420
+ */
1421
+ export declare const UpdateBlueprintRequestFilterSensitiveLog: (obj: UpdateBlueprintRequest) => any;
1422
+ /**
1423
+ * @internal
1424
+ */
1425
+ export declare const UpdateBlueprintResponseFilterSensitiveLog: (obj: UpdateBlueprintResponse) => any;
1426
+ /**
1427
+ * @internal
1428
+ */
1429
+ export declare const CreateBlueprintVersionResponseFilterSensitiveLog: (obj: CreateBlueprintVersionResponse) => any;
1430
+ /**
1431
+ * @internal
1432
+ */
1433
+ export declare const CreateDataAutomationProjectRequestFilterSensitiveLog: (obj: CreateDataAutomationProjectRequest) => any;
1434
+ /**
1435
+ * @internal
1436
+ */
1437
+ export declare const DataAutomationProjectFilterSensitiveLog: (obj: DataAutomationProject) => any;
1438
+ /**
1439
+ * @internal
1440
+ */
1441
+ export declare const GetDataAutomationProjectResponseFilterSensitiveLog: (obj: GetDataAutomationProjectResponse) => any;
1442
+ /**
1443
+ * @internal
1444
+ */
1445
+ export declare const DataAutomationProjectSummaryFilterSensitiveLog: (obj: DataAutomationProjectSummary) => any;
1446
+ /**
1447
+ * @internal
1448
+ */
1449
+ export declare const ListDataAutomationProjectsResponseFilterSensitiveLog: (obj: ListDataAutomationProjectsResponse) => any;
1450
+ /**
1451
+ * @internal
1452
+ */
1453
+ export declare const UpdateDataAutomationProjectRequestFilterSensitiveLog: (obj: UpdateDataAutomationProjectRequest) => any;