@aws-sdk/client-amplifyuibuilder 3.321.1 → 3.326.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/dist-types/commands/CreateComponentCommand.d.ts +224 -0
- package/dist-types/commands/CreateFormCommand.d.ts +162 -0
- package/dist-types/commands/CreateThemeCommand.d.ts +34 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFormCommand.d.ts +4 -0
- package/dist-types/commands/DeleteThemeCommand.d.ts +4 -0
- package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +8 -0
- package/dist-types/commands/ExportComponentsCommand.d.ts +227 -0
- package/dist-types/commands/ExportFormsCommand.d.ts +165 -0
- package/dist-types/commands/ExportThemesCommand.d.ts +37 -0
- package/dist-types/commands/GetComponentCommand.d.ts +224 -0
- package/dist-types/commands/GetFormCommand.d.ts +162 -0
- package/dist-types/commands/GetMetadataCommand.d.ts +8 -0
- package/dist-types/commands/GetThemeCommand.d.ts +34 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +15 -0
- package/dist-types/commands/ListFormsCommand.d.ts +19 -0
- package/dist-types/commands/ListThemesCommand.d.ts +14 -0
- package/dist-types/commands/PutMetadataFlagCommand.d.ts +4 -0
- package/dist-types/commands/RefreshTokenCommand.d.ts +7 -0
- package/dist-types/commands/UpdateComponentCommand.d.ts +224 -0
- package/dist-types/commands/UpdateFormCommand.d.ts +162 -0
- package/dist-types/commands/UpdateThemeCommand.d.ts +34 -0
- package/package.json +16 -16
|
@@ -33,6 +33,228 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetComponentCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetComponentResponse
|
|
37
|
+
* // component: { // Component
|
|
38
|
+
* // appId: "STRING_VALUE", // required
|
|
39
|
+
* // environmentName: "STRING_VALUE", // required
|
|
40
|
+
* // sourceId: "STRING_VALUE",
|
|
41
|
+
* // id: "STRING_VALUE", // required
|
|
42
|
+
* // name: "STRING_VALUE", // required
|
|
43
|
+
* // componentType: "STRING_VALUE", // required
|
|
44
|
+
* // properties: { // ComponentProperties // required
|
|
45
|
+
* // "<keys>": { // ComponentProperty
|
|
46
|
+
* // value: "STRING_VALUE",
|
|
47
|
+
* // bindingProperties: { // ComponentPropertyBindingProperties
|
|
48
|
+
* // property: "STRING_VALUE", // required
|
|
49
|
+
* // field: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // collectionBindingProperties: {
|
|
52
|
+
* // property: "STRING_VALUE", // required
|
|
53
|
+
* // field: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // defaultValue: "STRING_VALUE",
|
|
56
|
+
* // model: "STRING_VALUE",
|
|
57
|
+
* // bindings: { // FormBindings
|
|
58
|
+
* // "<keys>": { // FormBindingElement
|
|
59
|
+
* // element: "STRING_VALUE", // required
|
|
60
|
+
* // property: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // event: "STRING_VALUE",
|
|
64
|
+
* // userAttribute: "STRING_VALUE",
|
|
65
|
+
* // concat: [ // ComponentPropertyList
|
|
66
|
+
* // {
|
|
67
|
+
* // value: "STRING_VALUE",
|
|
68
|
+
* // bindingProperties: {
|
|
69
|
+
* // property: "STRING_VALUE", // required
|
|
70
|
+
* // field: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // collectionBindingProperties: {
|
|
73
|
+
* // property: "STRING_VALUE", // required
|
|
74
|
+
* // field: "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // defaultValue: "STRING_VALUE",
|
|
77
|
+
* // model: "STRING_VALUE",
|
|
78
|
+
* // bindings: {
|
|
79
|
+
* // "<keys>": {
|
|
80
|
+
* // element: "STRING_VALUE", // required
|
|
81
|
+
* // property: "STRING_VALUE", // required
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // event: "STRING_VALUE",
|
|
85
|
+
* // userAttribute: "STRING_VALUE",
|
|
86
|
+
* // concat: [
|
|
87
|
+
* // "<ComponentProperty>",
|
|
88
|
+
* // ],
|
|
89
|
+
* // condition: { // ComponentConditionProperty
|
|
90
|
+
* // property: "STRING_VALUE",
|
|
91
|
+
* // field: "STRING_VALUE",
|
|
92
|
+
* // operator: "STRING_VALUE",
|
|
93
|
+
* // operand: "STRING_VALUE",
|
|
94
|
+
* // then: "<ComponentProperty>",
|
|
95
|
+
* // else: "<ComponentProperty>",
|
|
96
|
+
* // operandType: "STRING_VALUE",
|
|
97
|
+
* // },
|
|
98
|
+
* // configured: true || false,
|
|
99
|
+
* // type: "STRING_VALUE",
|
|
100
|
+
* // importedValue: "STRING_VALUE",
|
|
101
|
+
* // componentName: "STRING_VALUE",
|
|
102
|
+
* // property: "STRING_VALUE",
|
|
103
|
+
* // },
|
|
104
|
+
* // ],
|
|
105
|
+
* // condition: {
|
|
106
|
+
* // property: "STRING_VALUE",
|
|
107
|
+
* // field: "STRING_VALUE",
|
|
108
|
+
* // operator: "STRING_VALUE",
|
|
109
|
+
* // operand: "STRING_VALUE",
|
|
110
|
+
* // then: "<ComponentProperty>",
|
|
111
|
+
* // else: "<ComponentProperty>",
|
|
112
|
+
* // operandType: "STRING_VALUE",
|
|
113
|
+
* // },
|
|
114
|
+
* // configured: true || false,
|
|
115
|
+
* // type: "STRING_VALUE",
|
|
116
|
+
* // importedValue: "STRING_VALUE",
|
|
117
|
+
* // componentName: "STRING_VALUE",
|
|
118
|
+
* // property: "STRING_VALUE",
|
|
119
|
+
* // },
|
|
120
|
+
* // },
|
|
121
|
+
* // children: [ // ComponentChildList
|
|
122
|
+
* // { // ComponentChild
|
|
123
|
+
* // componentType: "STRING_VALUE", // required
|
|
124
|
+
* // name: "STRING_VALUE", // required
|
|
125
|
+
* // properties: { // required
|
|
126
|
+
* // "<keys>": "<ComponentProperty>",
|
|
127
|
+
* // },
|
|
128
|
+
* // children: [
|
|
129
|
+
* // {
|
|
130
|
+
* // componentType: "STRING_VALUE", // required
|
|
131
|
+
* // name: "STRING_VALUE", // required
|
|
132
|
+
* // properties: "<ComponentProperties>", // required
|
|
133
|
+
* // children: "<ComponentChildList>",
|
|
134
|
+
* // events: { // ComponentEvents
|
|
135
|
+
* // "<keys>": { // ComponentEvent
|
|
136
|
+
* // action: "STRING_VALUE",
|
|
137
|
+
* // parameters: { // ActionParameters
|
|
138
|
+
* // type: "<ComponentProperty>",
|
|
139
|
+
* // url: "<ComponentProperty>",
|
|
140
|
+
* // anchor: "<ComponentProperty>",
|
|
141
|
+
* // target: "<ComponentProperty>",
|
|
142
|
+
* // global: "<ComponentProperty>",
|
|
143
|
+
* // model: "STRING_VALUE",
|
|
144
|
+
* // id: "<ComponentProperty>",
|
|
145
|
+
* // fields: "<ComponentProperties>",
|
|
146
|
+
* // state: { // MutationActionSetStateParameter
|
|
147
|
+
* // componentName: "STRING_VALUE", // required
|
|
148
|
+
* // property: "STRING_VALUE", // required
|
|
149
|
+
* // set: "<ComponentProperty>", // required
|
|
150
|
+
* // },
|
|
151
|
+
* // },
|
|
152
|
+
* // bindingEvent: "STRING_VALUE",
|
|
153
|
+
* // },
|
|
154
|
+
* // },
|
|
155
|
+
* // sourceId: "STRING_VALUE",
|
|
156
|
+
* // },
|
|
157
|
+
* // ],
|
|
158
|
+
* // events: {
|
|
159
|
+
* // "<keys>": {
|
|
160
|
+
* // action: "STRING_VALUE",
|
|
161
|
+
* // parameters: {
|
|
162
|
+
* // type: "<ComponentProperty>",
|
|
163
|
+
* // url: "<ComponentProperty>",
|
|
164
|
+
* // anchor: "<ComponentProperty>",
|
|
165
|
+
* // target: "<ComponentProperty>",
|
|
166
|
+
* // global: "<ComponentProperty>",
|
|
167
|
+
* // model: "STRING_VALUE",
|
|
168
|
+
* // id: "<ComponentProperty>",
|
|
169
|
+
* // fields: "<ComponentProperties>",
|
|
170
|
+
* // state: {
|
|
171
|
+
* // componentName: "STRING_VALUE", // required
|
|
172
|
+
* // property: "STRING_VALUE", // required
|
|
173
|
+
* // set: "<ComponentProperty>", // required
|
|
174
|
+
* // },
|
|
175
|
+
* // },
|
|
176
|
+
* // bindingEvent: "STRING_VALUE",
|
|
177
|
+
* // },
|
|
178
|
+
* // },
|
|
179
|
+
* // sourceId: "STRING_VALUE",
|
|
180
|
+
* // },
|
|
181
|
+
* // ],
|
|
182
|
+
* // variants: [ // ComponentVariants // required
|
|
183
|
+
* // { // ComponentVariant
|
|
184
|
+
* // variantValues: { // ComponentVariantValues
|
|
185
|
+
* // "<keys>": "STRING_VALUE",
|
|
186
|
+
* // },
|
|
187
|
+
* // overrides: { // ComponentOverrides
|
|
188
|
+
* // "<keys>": { // ComponentOverridesValue
|
|
189
|
+
* // "<keys>": "STRING_VALUE",
|
|
190
|
+
* // },
|
|
191
|
+
* // },
|
|
192
|
+
* // },
|
|
193
|
+
* // ],
|
|
194
|
+
* // overrides: { // required
|
|
195
|
+
* // "<keys>": {
|
|
196
|
+
* // "<keys>": "STRING_VALUE",
|
|
197
|
+
* // },
|
|
198
|
+
* // },
|
|
199
|
+
* // bindingProperties: { // ComponentBindingProperties // required
|
|
200
|
+
* // "<keys>": { // ComponentBindingPropertiesValue
|
|
201
|
+
* // type: "STRING_VALUE",
|
|
202
|
+
* // bindingProperties: { // ComponentBindingPropertiesValueProperties
|
|
203
|
+
* // model: "STRING_VALUE",
|
|
204
|
+
* // field: "STRING_VALUE",
|
|
205
|
+
* // predicates: [ // PredicateList
|
|
206
|
+
* // { // Predicate
|
|
207
|
+
* // or: [
|
|
208
|
+
* // {
|
|
209
|
+
* // or: "<PredicateList>",
|
|
210
|
+
* // and: "<PredicateList>",
|
|
211
|
+
* // field: "STRING_VALUE",
|
|
212
|
+
* // operator: "STRING_VALUE",
|
|
213
|
+
* // operand: "STRING_VALUE",
|
|
214
|
+
* // operandType: "STRING_VALUE",
|
|
215
|
+
* // },
|
|
216
|
+
* // ],
|
|
217
|
+
* // and: "<PredicateList>",
|
|
218
|
+
* // field: "STRING_VALUE",
|
|
219
|
+
* // operator: "STRING_VALUE",
|
|
220
|
+
* // operand: "STRING_VALUE",
|
|
221
|
+
* // operandType: "STRING_VALUE",
|
|
222
|
+
* // },
|
|
223
|
+
* // ],
|
|
224
|
+
* // userAttribute: "STRING_VALUE",
|
|
225
|
+
* // bucket: "STRING_VALUE",
|
|
226
|
+
* // key: "STRING_VALUE",
|
|
227
|
+
* // defaultValue: "STRING_VALUE",
|
|
228
|
+
* // slotName: "STRING_VALUE",
|
|
229
|
+
* // },
|
|
230
|
+
* // defaultValue: "STRING_VALUE",
|
|
231
|
+
* // },
|
|
232
|
+
* // },
|
|
233
|
+
* // collectionProperties: { // ComponentCollectionProperties
|
|
234
|
+
* // "<keys>": { // ComponentDataConfiguration
|
|
235
|
+
* // model: "STRING_VALUE", // required
|
|
236
|
+
* // sort: [ // SortPropertyList
|
|
237
|
+
* // { // SortProperty
|
|
238
|
+
* // field: "STRING_VALUE", // required
|
|
239
|
+
* // direction: "STRING_VALUE", // required
|
|
240
|
+
* // },
|
|
241
|
+
* // ],
|
|
242
|
+
* // predicate: "<Predicate>",
|
|
243
|
+
* // identifiers: [ // IdentifierList
|
|
244
|
+
* // "STRING_VALUE",
|
|
245
|
+
* // ],
|
|
246
|
+
* // },
|
|
247
|
+
* // },
|
|
248
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
249
|
+
* // modifiedAt: new Date("TIMESTAMP"),
|
|
250
|
+
* // tags: { // Tags
|
|
251
|
+
* // "<keys>": "STRING_VALUE",
|
|
252
|
+
* // },
|
|
253
|
+
* // events: "<ComponentEvents>",
|
|
254
|
+
* // schemaVersion: "STRING_VALUE",
|
|
255
|
+
* // },
|
|
256
|
+
* // };
|
|
257
|
+
*
|
|
36
258
|
* ```
|
|
37
259
|
*
|
|
38
260
|
* @param GetComponentCommandInput - {@link GetComponentCommandInput}
|
|
@@ -50,6 +272,8 @@ export interface GetComponentCommandOutput extends GetComponentResponse, __Metad
|
|
|
50
272
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
273
|
* <p>The requested resource does not exist, or access was denied.</p>
|
|
52
274
|
*
|
|
275
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
276
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
53
277
|
*
|
|
54
278
|
*/
|
|
55
279
|
export declare class GetComponentCommand extends $Command<GetComponentCommandInput, GetComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -33,6 +33,166 @@ export interface GetFormCommandOutput extends GetFormResponse, __MetadataBearer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetFormCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetFormResponse
|
|
37
|
+
* // form: { // Form
|
|
38
|
+
* // appId: "STRING_VALUE", // required
|
|
39
|
+
* // environmentName: "STRING_VALUE", // required
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // formActionType: "STRING_VALUE", // required
|
|
43
|
+
* // style: { // FormStyle
|
|
44
|
+
* // horizontalGap: { // FormStyleConfig Union: only one key present
|
|
45
|
+
* // tokenReference: "STRING_VALUE",
|
|
46
|
+
* // value: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // verticalGap: {// Union: only one key present
|
|
49
|
+
* // tokenReference: "STRING_VALUE",
|
|
50
|
+
* // value: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // outerPadding: {// Union: only one key present
|
|
53
|
+
* // tokenReference: "STRING_VALUE",
|
|
54
|
+
* // value: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // dataType: { // FormDataTypeConfig
|
|
58
|
+
* // dataSourceType: "STRING_VALUE", // required
|
|
59
|
+
* // dataTypeName: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // fields: { // FieldsMap // required
|
|
62
|
+
* // "<keys>": { // FieldConfig
|
|
63
|
+
* // label: "STRING_VALUE",
|
|
64
|
+
* // position: { // FieldPosition Union: only one key present
|
|
65
|
+
* // fixed: "STRING_VALUE",
|
|
66
|
+
* // rightOf: "STRING_VALUE",
|
|
67
|
+
* // below: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // excluded: true || false,
|
|
70
|
+
* // inputType: { // FieldInputConfig
|
|
71
|
+
* // type: "STRING_VALUE", // required
|
|
72
|
+
* // required: true || false,
|
|
73
|
+
* // readOnly: true || false,
|
|
74
|
+
* // placeholder: "STRING_VALUE",
|
|
75
|
+
* // defaultValue: "STRING_VALUE",
|
|
76
|
+
* // descriptiveText: "STRING_VALUE",
|
|
77
|
+
* // defaultChecked: true || false,
|
|
78
|
+
* // defaultCountryCode: "STRING_VALUE",
|
|
79
|
+
* // valueMappings: { // ValueMappings
|
|
80
|
+
* // values: [ // ValueMappingList // required
|
|
81
|
+
* // { // ValueMapping
|
|
82
|
+
* // displayValue: { // FormInputValueProperty
|
|
83
|
+
* // value: "STRING_VALUE",
|
|
84
|
+
* // bindingProperties: { // FormInputValuePropertyBindingProperties
|
|
85
|
+
* // property: "STRING_VALUE", // required
|
|
86
|
+
* // field: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // concat: [ // FormInputValuePropertyList
|
|
89
|
+
* // {
|
|
90
|
+
* // value: "STRING_VALUE",
|
|
91
|
+
* // bindingProperties: {
|
|
92
|
+
* // property: "STRING_VALUE", // required
|
|
93
|
+
* // field: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // concat: [
|
|
96
|
+
* // "<FormInputValueProperty>",
|
|
97
|
+
* // ],
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
100
|
+
* // },
|
|
101
|
+
* // value: "<FormInputValueProperty>", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
104
|
+
* // bindingProperties: { // FormInputBindingProperties
|
|
105
|
+
* // "<keys>": { // FormInputBindingPropertiesValue
|
|
106
|
+
* // type: "STRING_VALUE",
|
|
107
|
+
* // bindingProperties: { // FormInputBindingPropertiesValueProperties
|
|
108
|
+
* // model: "STRING_VALUE",
|
|
109
|
+
* // },
|
|
110
|
+
* // },
|
|
111
|
+
* // },
|
|
112
|
+
* // },
|
|
113
|
+
* // name: "STRING_VALUE",
|
|
114
|
+
* // minValue: Number("float"),
|
|
115
|
+
* // maxValue: Number("float"),
|
|
116
|
+
* // step: Number("float"),
|
|
117
|
+
* // value: "STRING_VALUE",
|
|
118
|
+
* // isArray: true || false,
|
|
119
|
+
* // fileUploaderConfig: { // FileUploaderFieldConfig
|
|
120
|
+
* // accessLevel: "STRING_VALUE", // required
|
|
121
|
+
* // acceptedFileTypes: [ // StrValues // required
|
|
122
|
+
* // "STRING_VALUE",
|
|
123
|
+
* // ],
|
|
124
|
+
* // showThumbnails: true || false,
|
|
125
|
+
* // isResumable: true || false,
|
|
126
|
+
* // maxFileCount: Number("int"),
|
|
127
|
+
* // maxSize: Number("int"),
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // validations: [ // ValidationsList
|
|
131
|
+
* // { // FieldValidationConfiguration
|
|
132
|
+
* // type: "STRING_VALUE", // required
|
|
133
|
+
* // strValues: [
|
|
134
|
+
* // "STRING_VALUE",
|
|
135
|
+
* // ],
|
|
136
|
+
* // numValues: [ // NumValues
|
|
137
|
+
* // Number("int"),
|
|
138
|
+
* // ],
|
|
139
|
+
* // validationMessage: "STRING_VALUE",
|
|
140
|
+
* // },
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // },
|
|
144
|
+
* // sectionalElements: { // SectionalElementMap // required
|
|
145
|
+
* // "<keys>": { // SectionalElement
|
|
146
|
+
* // type: "STRING_VALUE", // required
|
|
147
|
+
* // position: {// Union: only one key present
|
|
148
|
+
* // fixed: "STRING_VALUE",
|
|
149
|
+
* // rightOf: "STRING_VALUE",
|
|
150
|
+
* // below: "STRING_VALUE",
|
|
151
|
+
* // },
|
|
152
|
+
* // text: "STRING_VALUE",
|
|
153
|
+
* // level: Number("int"),
|
|
154
|
+
* // orientation: "STRING_VALUE",
|
|
155
|
+
* // excluded: true || false,
|
|
156
|
+
* // },
|
|
157
|
+
* // },
|
|
158
|
+
* // schemaVersion: "STRING_VALUE", // required
|
|
159
|
+
* // tags: { // Tags
|
|
160
|
+
* // "<keys>": "STRING_VALUE",
|
|
161
|
+
* // },
|
|
162
|
+
* // cta: { // FormCTA
|
|
163
|
+
* // position: "STRING_VALUE",
|
|
164
|
+
* // clear: { // FormButton
|
|
165
|
+
* // excluded: true || false,
|
|
166
|
+
* // children: "STRING_VALUE",
|
|
167
|
+
* // position: {// Union: only one key present
|
|
168
|
+
* // fixed: "STRING_VALUE",
|
|
169
|
+
* // rightOf: "STRING_VALUE",
|
|
170
|
+
* // below: "STRING_VALUE",
|
|
171
|
+
* // },
|
|
172
|
+
* // },
|
|
173
|
+
* // cancel: {
|
|
174
|
+
* // excluded: true || false,
|
|
175
|
+
* // children: "STRING_VALUE",
|
|
176
|
+
* // position: {// Union: only one key present
|
|
177
|
+
* // fixed: "STRING_VALUE",
|
|
178
|
+
* // rightOf: "STRING_VALUE",
|
|
179
|
+
* // below: "STRING_VALUE",
|
|
180
|
+
* // },
|
|
181
|
+
* // },
|
|
182
|
+
* // submit: {
|
|
183
|
+
* // excluded: true || false,
|
|
184
|
+
* // children: "STRING_VALUE",
|
|
185
|
+
* // position: {// Union: only one key present
|
|
186
|
+
* // fixed: "STRING_VALUE",
|
|
187
|
+
* // rightOf: "STRING_VALUE",
|
|
188
|
+
* // below: "STRING_VALUE",
|
|
189
|
+
* // },
|
|
190
|
+
* // },
|
|
191
|
+
* // },
|
|
192
|
+
* // labelDecorator: "STRING_VALUE",
|
|
193
|
+
* // },
|
|
194
|
+
* // };
|
|
195
|
+
*
|
|
36
196
|
* ```
|
|
37
197
|
*
|
|
38
198
|
* @param GetFormCommandInput - {@link GetFormCommandInput}
|
|
@@ -50,6 +210,8 @@ export interface GetFormCommandOutput extends GetFormResponse, __MetadataBearer
|
|
|
50
210
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
211
|
* <p>The requested resource does not exist, or access was denied.</p>
|
|
52
212
|
*
|
|
213
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
214
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
53
215
|
*
|
|
54
216
|
*/
|
|
55
217
|
export declare class GetFormCommand extends $Command<GetFormCommandInput, GetFormCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -32,6 +32,12 @@ export interface GetMetadataCommandOutput extends GetMetadataResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetMetadataCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetMetadataResponse
|
|
36
|
+
* // features: { // FeaturesMap // required
|
|
37
|
+
* // "<keys>": "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
35
41
|
* ```
|
|
36
42
|
*
|
|
37
43
|
* @param GetMetadataCommandInput - {@link GetMetadataCommandInput}
|
|
@@ -46,6 +52,8 @@ export interface GetMetadataCommandOutput extends GetMetadataResponse, __Metadat
|
|
|
46
52
|
* @throws {@link UnauthorizedException} (client fault)
|
|
47
53
|
* <p>You don't have permission to perform this operation.</p>
|
|
48
54
|
*
|
|
55
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
49
57
|
*
|
|
50
58
|
*/
|
|
51
59
|
export declare class GetMetadataCommand extends $Command<GetMetadataCommandInput, GetMetadataCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -33,6 +33,38 @@ export interface GetThemeCommandOutput extends GetThemeResponse, __MetadataBeare
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetThemeCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetThemeResponse
|
|
37
|
+
* // theme: { // Theme
|
|
38
|
+
* // appId: "STRING_VALUE", // required
|
|
39
|
+
* // environmentName: "STRING_VALUE", // required
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // modifiedAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // values: [ // ThemeValuesList // required
|
|
45
|
+
* // { // ThemeValues
|
|
46
|
+
* // key: "STRING_VALUE",
|
|
47
|
+
* // value: { // ThemeValue
|
|
48
|
+
* // value: "STRING_VALUE",
|
|
49
|
+
* // children: [
|
|
50
|
+
* // {
|
|
51
|
+
* // key: "STRING_VALUE",
|
|
52
|
+
* // value: {
|
|
53
|
+
* // value: "STRING_VALUE",
|
|
54
|
+
* // children: "<ThemeValuesList>",
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // overrides: "<ThemeValuesList>",
|
|
62
|
+
* // tags: { // Tags
|
|
63
|
+
* // "<keys>": "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
36
68
|
* ```
|
|
37
69
|
*
|
|
38
70
|
* @param GetThemeCommandInput - {@link GetThemeCommandInput}
|
|
@@ -50,6 +82,8 @@ export interface GetThemeCommandOutput extends GetThemeResponse, __MetadataBeare
|
|
|
50
82
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
83
|
* <p>The requested resource does not exist, or access was denied.</p>
|
|
52
84
|
*
|
|
85
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
53
87
|
*
|
|
54
88
|
*/
|
|
55
89
|
export declare class GetThemeCommand extends $Command<GetThemeCommandInput, GetThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -35,6 +35,19 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListComponentsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListComponentsResponse
|
|
39
|
+
* // entities: [ // ComponentSummaryList // required
|
|
40
|
+
* // { // ComponentSummary
|
|
41
|
+
* // appId: "STRING_VALUE", // required
|
|
42
|
+
* // environmentName: "STRING_VALUE", // required
|
|
43
|
+
* // id: "STRING_VALUE", // required
|
|
44
|
+
* // name: "STRING_VALUE", // required
|
|
45
|
+
* // componentType: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
38
51
|
* ```
|
|
39
52
|
*
|
|
40
53
|
* @param ListComponentsCommandInput - {@link ListComponentsCommandInput}
|
|
@@ -49,6 +62,8 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
49
62
|
* @throws {@link InvalidParameterException} (client fault)
|
|
50
63
|
* <p>An invalid or out-of-range value was supplied for the input parameter.</p>
|
|
51
64
|
*
|
|
65
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
52
67
|
*
|
|
53
68
|
*/
|
|
54
69
|
export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -34,6 +34,23 @@ export interface ListFormsCommandOutput extends ListFormsResponse, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListFormsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListFormsResponse
|
|
38
|
+
* // entities: [ // FormSummaryList // required
|
|
39
|
+
* // { // FormSummary
|
|
40
|
+
* // appId: "STRING_VALUE", // required
|
|
41
|
+
* // dataType: { // FormDataTypeConfig
|
|
42
|
+
* // dataSourceType: "STRING_VALUE", // required
|
|
43
|
+
* // dataTypeName: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // environmentName: "STRING_VALUE", // required
|
|
46
|
+
* // formActionType: "STRING_VALUE", // required
|
|
47
|
+
* // id: "STRING_VALUE", // required
|
|
48
|
+
* // name: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // nextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
37
54
|
* ```
|
|
38
55
|
*
|
|
39
56
|
* @param ListFormsCommandInput - {@link ListFormsCommandInput}
|
|
@@ -48,6 +65,8 @@ export interface ListFormsCommandOutput extends ListFormsResponse, __MetadataBea
|
|
|
48
65
|
* @throws {@link InvalidParameterException} (client fault)
|
|
49
66
|
* <p>An invalid or out-of-range value was supplied for the input parameter.</p>
|
|
50
67
|
*
|
|
68
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
51
70
|
*
|
|
52
71
|
*/
|
|
53
72
|
export declare class ListFormsCommand extends $Command<ListFormsCommandInput, ListFormsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -35,6 +35,18 @@ export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataB
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new ListThemesCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // ListThemesResponse
|
|
39
|
+
* // entities: [ // ThemeSummaryList // required
|
|
40
|
+
* // { // ThemeSummary
|
|
41
|
+
* // appId: "STRING_VALUE", // required
|
|
42
|
+
* // environmentName: "STRING_VALUE", // required
|
|
43
|
+
* // id: "STRING_VALUE", // required
|
|
44
|
+
* // name: "STRING_VALUE", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
38
50
|
* ```
|
|
39
51
|
*
|
|
40
52
|
* @param ListThemesCommandInput - {@link ListThemesCommandInput}
|
|
@@ -49,6 +61,8 @@ export interface ListThemesCommandOutput extends ListThemesResponse, __MetadataB
|
|
|
49
61
|
* @throws {@link InvalidParameterException} (client fault)
|
|
50
62
|
* <p>An invalid or out-of-range value was supplied for the input parameter.</p>
|
|
51
63
|
*
|
|
64
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
52
66
|
*
|
|
53
67
|
*/
|
|
54
68
|
export declare class ListThemesCommand extends $Command<ListThemesCommandInput, ListThemesCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface PutMetadataFlagCommandOutput extends __MetadataBearer {
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new PutMetadataFlagCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param PutMetadataFlagCommandInput - {@link PutMetadataFlagCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface PutMetadataFlagCommandOutput extends __MetadataBearer {
|
|
|
50
52
|
* @throws {@link UnauthorizedException} (client fault)
|
|
51
53
|
* <p>You don't have permission to perform this operation.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class PutMetadataFlagCommand extends $Command<PutMetadataFlagCommandInput, PutMetadataFlagCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|
|
@@ -35,6 +35,11 @@ export interface RefreshTokenCommandOutput extends RefreshTokenResponse, __Metad
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new RefreshTokenCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // RefreshTokenResponse
|
|
39
|
+
* // accessToken: "STRING_VALUE", // required
|
|
40
|
+
* // expiresIn: Number("int"), // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
40
45
|
* @param RefreshTokenCommandInput - {@link RefreshTokenCommandInput}
|
|
@@ -46,6 +51,8 @@ export interface RefreshTokenCommandOutput extends RefreshTokenResponse, __Metad
|
|
|
46
51
|
* @throws {@link InvalidParameterException} (client fault)
|
|
47
52
|
* <p>An invalid or out-of-range value was supplied for the input parameter.</p>
|
|
48
53
|
*
|
|
54
|
+
* @throws {@link AmplifyUIBuilderServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from AmplifyUIBuilder service.</p>
|
|
49
56
|
*
|
|
50
57
|
*/
|
|
51
58
|
export declare class RefreshTokenCommand extends $Command<RefreshTokenCommandInput, RefreshTokenCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
|