@@ -33,6 +33,11 @@ import {
33
33
ExportThemesCommandInput ,
34
34
ExportThemesCommandOutput ,
35
35
} from "./commands/ExportThemesCommand" ;
36
+ import {
37
+ GetCodegenJobCommand ,
38
+ GetCodegenJobCommandInput ,
39
+ GetCodegenJobCommandOutput ,
40
+ } from "./commands/GetCodegenJobCommand" ;
36
41
import {
37
42
GetComponentCommand ,
38
43
GetComponentCommandInput ,
@@ -41,6 +46,11 @@ import {
41
46
import { GetFormCommand , GetFormCommandInput , GetFormCommandOutput } from "./commands/GetFormCommand" ;
42
47
import { GetMetadataCommand , GetMetadataCommandInput , GetMetadataCommandOutput } from "./commands/GetMetadataCommand" ;
43
48
import { GetThemeCommand , GetThemeCommandInput , GetThemeCommandOutput } from "./commands/GetThemeCommand" ;
49
+ import {
50
+ ListCodegenJobsCommand ,
51
+ ListCodegenJobsCommandInput ,
52
+ ListCodegenJobsCommandOutput ,
53
+ } from "./commands/ListCodegenJobsCommand" ;
44
54
import {
45
55
ListComponentsCommand ,
46
56
ListComponentsCommandInput ,
@@ -58,6 +68,11 @@ import {
58
68
RefreshTokenCommandInput ,
59
69
RefreshTokenCommandOutput ,
60
70
} from "./commands/RefreshTokenCommand" ;
71
+ import {
72
+ StartCodegenJobCommand ,
73
+ StartCodegenJobCommandInput ,
74
+ StartCodegenJobCommandOutput ,
75
+ } from "./commands/StartCodegenJobCommand" ;
61
76
import {
62
77
UpdateComponentCommand ,
63
78
UpdateComponentCommandInput ,
@@ -77,15 +92,18 @@ const commands = {
77
92
ExportComponentsCommand,
78
93
ExportFormsCommand,
79
94
ExportThemesCommand,
95
+ GetCodegenJobCommand,
80
96
GetComponentCommand,
81
97
GetFormCommand,
82
98
GetMetadataCommand,
83
99
GetThemeCommand,
100
+ ListCodegenJobsCommand,
84
101
ListComponentsCommand,
85
102
ListFormsCommand,
86
103
ListThemesCommand,
87
104
PutMetadataFlagCommand,
88
105
RefreshTokenCommand,
106
+ StartCodegenJobCommand,
89
107
UpdateComponentCommand,
90
108
UpdateFormCommand,
91
109
UpdateThemeCommand,
@@ -220,6 +238,17 @@ export interface AmplifyUIBuilder {
220
238
cb : ( err : any , data ?: ExportThemesCommandOutput ) => void
221
239
) : void ;
222
240
241
+ /**
242
+ * @see {@link GetCodegenJobCommand }
243
+ */
244
+ getCodegenJob ( args : GetCodegenJobCommandInput , options ?: __HttpHandlerOptions ) : Promise < GetCodegenJobCommandOutput > ;
245
+ getCodegenJob ( args : GetCodegenJobCommandInput , cb : ( err : any , data ?: GetCodegenJobCommandOutput ) => void ) : void ;
246
+ getCodegenJob (
247
+ args : GetCodegenJobCommandInput ,
248
+ options : __HttpHandlerOptions ,
249
+ cb : ( err : any , data ?: GetCodegenJobCommandOutput ) => void
250
+ ) : void ;
251
+
223
252
/**
224
253
* @see {@link GetComponentCommand }
225
254
*/
@@ -264,6 +293,20 @@ export interface AmplifyUIBuilder {
264
293
cb : ( err : any , data ?: GetThemeCommandOutput ) => void
265
294
) : void ;
266
295
296
+ /**
297
+ * @see {@link ListCodegenJobsCommand }
298
+ */
299
+ listCodegenJobs (
300
+ args : ListCodegenJobsCommandInput ,
301
+ options ?: __HttpHandlerOptions
302
+ ) : Promise < ListCodegenJobsCommandOutput > ;
303
+ listCodegenJobs ( args : ListCodegenJobsCommandInput , cb : ( err : any , data ?: ListCodegenJobsCommandOutput ) => void ) : void ;
304
+ listCodegenJobs (
305
+ args : ListCodegenJobsCommandInput ,
306
+ options : __HttpHandlerOptions ,
307
+ cb : ( err : any , data ?: ListCodegenJobsCommandOutput ) => void
308
+ ) : void ;
309
+
267
310
/**
268
311
* @see {@link ListComponentsCommand }
269
312
*/
@@ -325,6 +368,20 @@ export interface AmplifyUIBuilder {
325
368
cb : ( err : any , data ?: RefreshTokenCommandOutput ) => void
326
369
) : void ;
327
370
371
+ /**
372
+ * @see {@link StartCodegenJobCommand }
373
+ */
374
+ startCodegenJob (
375
+ args : StartCodegenJobCommandInput ,
376
+ options ?: __HttpHandlerOptions
377
+ ) : Promise < StartCodegenJobCommandOutput > ;
378
+ startCodegenJob ( args : StartCodegenJobCommandInput , cb : ( err : any , data ?: StartCodegenJobCommandOutput ) => void ) : void ;
379
+ startCodegenJob (
380
+ args : StartCodegenJobCommandInput ,
381
+ options : __HttpHandlerOptions ,
382
+ cb : ( err : any , data ?: StartCodegenJobCommandOutput ) => void
383
+ ) : void ;
384
+
328
385
/**
329
386
* @see {@link UpdateComponentCommand }
330
387
*/
0 commit comments