@aws-sdk/client-amplifyuibuilder 3.295.0 → 3.297.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 (34) hide show
  1. package/dist-types/AmplifyUIBuilder.d.ts +23 -0
  2. package/dist-types/AmplifyUIBuilderClient.d.ts +24 -4
  3. package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateFormCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateThemeCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteFormCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteThemeCommand.d.ts +16 -0
  9. package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +16 -0
  10. package/dist-types/commands/ExportComponentsCommand.d.ts +16 -0
  11. package/dist-types/commands/ExportFormsCommand.d.ts +16 -0
  12. package/dist-types/commands/ExportThemesCommand.d.ts +16 -0
  13. package/dist-types/commands/GetComponentCommand.d.ts +16 -0
  14. package/dist-types/commands/GetFormCommand.d.ts +16 -0
  15. package/dist-types/commands/GetMetadataCommand.d.ts +16 -0
  16. package/dist-types/commands/GetThemeCommand.d.ts +16 -0
  17. package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListFormsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListThemesCommand.d.ts +16 -0
  20. package/dist-types/commands/PutMetadataFlagCommand.d.ts +16 -0
  21. package/dist-types/commands/RefreshTokenCommand.d.ts +16 -0
  22. package/dist-types/commands/UpdateComponentCommand.d.ts +16 -0
  23. package/dist-types/commands/UpdateFormCommand.d.ts +16 -0
  24. package/dist-types/commands/UpdateThemeCommand.d.ts +16 -0
  25. package/dist-types/models/AmplifyUIBuilderServiceException.d.ts +2 -0
  26. package/dist-types/models/models_0.d.ts +194 -0
  27. package/dist-types/pagination/ExportComponentsPaginator.d.ts +3 -0
  28. package/dist-types/pagination/ExportFormsPaginator.d.ts +3 -0
  29. package/dist-types/pagination/ExportThemesPaginator.d.ts +3 -0
  30. package/dist-types/pagination/Interfaces.d.ts +3 -0
  31. package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListFormsPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListThemesPaginator.d.ts +3 -0
  34. package/package.json +29 -29
@@ -23,6 +23,7 @@ import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./com
23
23
  import { UpdateFormCommandInput, UpdateFormCommandOutput } from "./commands/UpdateFormCommand";
24
24
  import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "./commands/UpdateThemeCommand";
25
25
  /**
26
+ * @public
26
27
  * <p>The Amplify UI Builder API provides a programmatic interface for creating
27
28
  * and configuring user interface (UI) component libraries and themes for use in your Amplify applications. You can then connect these UI components to an application's
28
29
  * backend Amazon Web Services resources.</p>
@@ -35,90 +36,105 @@ import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "./commands/Up
35
36
  */
36
37
  export declare class AmplifyUIBuilder extends AmplifyUIBuilderClient {
37
38
  /**
39
+ * @public
38
40
  * <p>Creates a new component for an Amplify app.</p>
39
41
  */
40
42
  createComponent(args: CreateComponentCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentCommandOutput>;
41
43
  createComponent(args: CreateComponentCommandInput, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
42
44
  createComponent(args: CreateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentCommandOutput) => void): void;
43
45
  /**
46
+ * @public
44
47
  * <p>Creates a new form for an Amplify app.</p>
45
48
  */
46
49
  createForm(args: CreateFormCommandInput, options?: __HttpHandlerOptions): Promise<CreateFormCommandOutput>;
47
50
  createForm(args: CreateFormCommandInput, cb: (err: any, data?: CreateFormCommandOutput) => void): void;
48
51
  createForm(args: CreateFormCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFormCommandOutput) => void): void;
49
52
  /**
53
+ * @public
50
54
  * <p>Creates a theme to apply to the components in an Amplify app.</p>
51
55
  */
52
56
  createTheme(args: CreateThemeCommandInput, options?: __HttpHandlerOptions): Promise<CreateThemeCommandOutput>;
53
57
  createTheme(args: CreateThemeCommandInput, cb: (err: any, data?: CreateThemeCommandOutput) => void): void;
54
58
  createTheme(args: CreateThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateThemeCommandOutput) => void): void;
55
59
  /**
60
+ * @public
56
61
  * <p>Deletes a component from an Amplify app.</p>
57
62
  */
58
63
  deleteComponent(args: DeleteComponentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteComponentCommandOutput>;
59
64
  deleteComponent(args: DeleteComponentCommandInput, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
60
65
  deleteComponent(args: DeleteComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
61
66
  /**
67
+ * @public
62
68
  * <p>Deletes a form from an Amplify app.</p>
63
69
  */
64
70
  deleteForm(args: DeleteFormCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFormCommandOutput>;
65
71
  deleteForm(args: DeleteFormCommandInput, cb: (err: any, data?: DeleteFormCommandOutput) => void): void;
66
72
  deleteForm(args: DeleteFormCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFormCommandOutput) => void): void;
67
73
  /**
74
+ * @public
68
75
  * <p>Deletes a theme from an Amplify app.</p>
69
76
  */
70
77
  deleteTheme(args: DeleteThemeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteThemeCommandOutput>;
71
78
  deleteTheme(args: DeleteThemeCommandInput, cb: (err: any, data?: DeleteThemeCommandOutput) => void): void;
72
79
  deleteTheme(args: DeleteThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteThemeCommandOutput) => void): void;
73
80
  /**
81
+ * @public
74
82
  * <p>Exchanges an access code for a token.</p>
75
83
  */
76
84
  exchangeCodeForToken(args: ExchangeCodeForTokenCommandInput, options?: __HttpHandlerOptions): Promise<ExchangeCodeForTokenCommandOutput>;
77
85
  exchangeCodeForToken(args: ExchangeCodeForTokenCommandInput, cb: (err: any, data?: ExchangeCodeForTokenCommandOutput) => void): void;
78
86
  exchangeCodeForToken(args: ExchangeCodeForTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExchangeCodeForTokenCommandOutput) => void): void;
79
87
  /**
88
+ * @public
80
89
  * <p>Exports component configurations to code that is ready to integrate into an Amplify app.</p>
81
90
  */
82
91
  exportComponents(args: ExportComponentsCommandInput, options?: __HttpHandlerOptions): Promise<ExportComponentsCommandOutput>;
83
92
  exportComponents(args: ExportComponentsCommandInput, cb: (err: any, data?: ExportComponentsCommandOutput) => void): void;
84
93
  exportComponents(args: ExportComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportComponentsCommandOutput) => void): void;
85
94
  /**
95
+ * @public
86
96
  * <p>Exports form configurations to code that is ready to integrate into an Amplify app.</p>
87
97
  */
88
98
  exportForms(args: ExportFormsCommandInput, options?: __HttpHandlerOptions): Promise<ExportFormsCommandOutput>;
89
99
  exportForms(args: ExportFormsCommandInput, cb: (err: any, data?: ExportFormsCommandOutput) => void): void;
90
100
  exportForms(args: ExportFormsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportFormsCommandOutput) => void): void;
91
101
  /**
102
+ * @public
92
103
  * <p>Exports theme configurations to code that is ready to integrate into an Amplify app.</p>
93
104
  */
94
105
  exportThemes(args: ExportThemesCommandInput, options?: __HttpHandlerOptions): Promise<ExportThemesCommandOutput>;
95
106
  exportThemes(args: ExportThemesCommandInput, cb: (err: any, data?: ExportThemesCommandOutput) => void): void;
96
107
  exportThemes(args: ExportThemesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportThemesCommandOutput) => void): void;
97
108
  /**
109
+ * @public
98
110
  * <p>Returns an existing component for an Amplify app.</p>
99
111
  */
100
112
  getComponent(args: GetComponentCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentCommandOutput>;
101
113
  getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
102
114
  getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
103
115
  /**
116
+ * @public
104
117
  * <p>Returns an existing form for an Amplify app.</p>
105
118
  */
106
119
  getForm(args: GetFormCommandInput, options?: __HttpHandlerOptions): Promise<GetFormCommandOutput>;
107
120
  getForm(args: GetFormCommandInput, cb: (err: any, data?: GetFormCommandOutput) => void): void;
108
121
  getForm(args: GetFormCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFormCommandOutput) => void): void;
109
122
  /**
123
+ * @public
110
124
  * <p>Returns existing metadata for an Amplify app.</p>
111
125
  */
112
126
  getMetadata(args: GetMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetMetadataCommandOutput>;
113
127
  getMetadata(args: GetMetadataCommandInput, cb: (err: any, data?: GetMetadataCommandOutput) => void): void;
114
128
  getMetadata(args: GetMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMetadataCommandOutput) => void): void;
115
129
  /**
130
+ * @public
116
131
  * <p>Returns an existing theme for an Amplify app.</p>
117
132
  */
118
133
  getTheme(args: GetThemeCommandInput, options?: __HttpHandlerOptions): Promise<GetThemeCommandOutput>;
119
134
  getTheme(args: GetThemeCommandInput, cb: (err: any, data?: GetThemeCommandOutput) => void): void;
120
135
  getTheme(args: GetThemeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThemeCommandOutput) => void): void;
121
136
  /**
137
+ * @public
122
138
  * <p>Retrieves a list of components for a specified Amplify app and backend
123
139
  * environment.</p>
124
140
  */
@@ -126,12 +142,14 @@ export declare class AmplifyUIBuilder extends AmplifyUIBuilderClient {
126
142
  listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
127
143
  listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
128
144
  /**
145
+ * @public
129
146
  * <p>Retrieves a list of forms for a specified Amplify app and backend environment.</p>
130
147
  */
131
148
  listForms(args: ListFormsCommandInput, options?: __HttpHandlerOptions): Promise<ListFormsCommandOutput>;
132
149
  listForms(args: ListFormsCommandInput, cb: (err: any, data?: ListFormsCommandOutput) => void): void;
133
150
  listForms(args: ListFormsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFormsCommandOutput) => void): void;
134
151
  /**
152
+ * @public
135
153
  * <p>Retrieves a list of themes for a specified Amplify app and backend
136
154
  * environment.</p>
137
155
  */
@@ -139,30 +157,35 @@ export declare class AmplifyUIBuilder extends AmplifyUIBuilderClient {
139
157
  listThemes(args: ListThemesCommandInput, cb: (err: any, data?: ListThemesCommandOutput) => void): void;
140
158
  listThemes(args: ListThemesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListThemesCommandOutput) => void): void;
141
159
  /**
160
+ * @public
142
161
  * <p>Stores the metadata information about a feature on a form or view.</p>
143
162
  */
144
163
  putMetadataFlag(args: PutMetadataFlagCommandInput, options?: __HttpHandlerOptions): Promise<PutMetadataFlagCommandOutput>;
145
164
  putMetadataFlag(args: PutMetadataFlagCommandInput, cb: (err: any, data?: PutMetadataFlagCommandOutput) => void): void;
146
165
  putMetadataFlag(args: PutMetadataFlagCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutMetadataFlagCommandOutput) => void): void;
147
166
  /**
167
+ * @public
148
168
  * <p>Refreshes a previously issued access token that might have expired.</p>
149
169
  */
150
170
  refreshToken(args: RefreshTokenCommandInput, options?: __HttpHandlerOptions): Promise<RefreshTokenCommandOutput>;
151
171
  refreshToken(args: RefreshTokenCommandInput, cb: (err: any, data?: RefreshTokenCommandOutput) => void): void;
152
172
  refreshToken(args: RefreshTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RefreshTokenCommandOutput) => void): void;
153
173
  /**
174
+ * @public
154
175
  * <p>Updates an existing component.</p>
155
176
  */
156
177
  updateComponent(args: UpdateComponentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentCommandOutput>;
157
178
  updateComponent(args: UpdateComponentCommandInput, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
158
179
  updateComponent(args: UpdateComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentCommandOutput) => void): void;
159
180
  /**
181
+ * @public
160
182
  * <p>Updates an existing form.</p>
161
183
  */
162
184
  updateForm(args: UpdateFormCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFormCommandOutput>;
163
185
  updateForm(args: UpdateFormCommandInput, cb: (err: any, data?: UpdateFormCommandOutput) => void): void;
164
186
  updateForm(args: UpdateFormCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFormCommandOutput) => void): void;
165
187
  /**
188
+ * @public
166
189
  * <p>Updates an existing theme.</p>
167
190
  */
168
191
  updateTheme(args: UpdateThemeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateThemeCommandOutput>;
@@ -30,15 +30,24 @@ import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "./com
30
30
  import { UpdateFormCommandInput, UpdateFormCommandOutput } from "./commands/UpdateFormCommand";
31
31
  import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "./commands/UpdateThemeCommand";
32
32
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
33
+ /**
34
+ * @public
35
+ */
33
36
  export type ServiceInputTypes = CreateComponentCommandInput | CreateFormCommandInput | CreateThemeCommandInput | DeleteComponentCommandInput | DeleteFormCommandInput | DeleteThemeCommandInput | ExchangeCodeForTokenCommandInput | ExportComponentsCommandInput | ExportFormsCommandInput | ExportThemesCommandInput | GetComponentCommandInput | GetFormCommandInput | GetMetadataCommandInput | GetThemeCommandInput | ListComponentsCommandInput | ListFormsCommandInput | ListThemesCommandInput | PutMetadataFlagCommandInput | RefreshTokenCommandInput | UpdateComponentCommandInput | UpdateFormCommandInput | UpdateThemeCommandInput;
37
+ /**
38
+ * @public
39
+ */
34
40
  export type ServiceOutputTypes = CreateComponentCommandOutput | CreateFormCommandOutput | CreateThemeCommandOutput | DeleteComponentCommandOutput | DeleteFormCommandOutput | DeleteThemeCommandOutput | ExchangeCodeForTokenCommandOutput | ExportComponentsCommandOutput | ExportFormsCommandOutput | ExportThemesCommandOutput | GetComponentCommandOutput | GetFormCommandOutput | GetMetadataCommandOutput | GetThemeCommandOutput | ListComponentsCommandOutput | ListFormsCommandOutput | ListThemesCommandOutput | PutMetadataFlagCommandOutput | RefreshTokenCommandOutput | UpdateComponentCommandOutput | UpdateFormCommandOutput | UpdateThemeCommandOutput;
41
+ /**
42
+ * @public
43
+ */
35
44
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
36
45
  /**
37
46
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
38
47
  */
39
48
  requestHandler?: __HttpHandler;
40
49
  /**
41
- * A constructor for a class implementing the {@link __Checksum} interface
50
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
42
51
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
43
52
  * @internal
44
53
  */
@@ -128,23 +137,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
128
137
  */
129
138
  logger?: __Logger;
130
139
  /**
131
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
140
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
132
141
  */
133
142
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
134
143
  }
144
+ /**
145
+ * @public
146
+ */
135
147
  type AmplifyUIBuilderClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
136
148
  /**
137
- * The configuration interface of AmplifyUIBuilderClient class constructor that set the region, credentials and other options.
149
+ * @public
150
+ *
151
+ * The configuration interface of AmplifyUIBuilderClient class constructor that set the region, credentials and other options.
138
152
  */
139
153
  export interface AmplifyUIBuilderClientConfig extends AmplifyUIBuilderClientConfigType {
140
154
  }
155
+ /**
156
+ * @public
157
+ */
141
158
  type AmplifyUIBuilderClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
142
159
  /**
143
- * The resolved configuration interface of AmplifyUIBuilderClient class. This is resolved and normalized from the {@link AmplifyUIBuilderClientConfig | constructor configuration interface}.
160
+ * @public
161
+ *
162
+ * The resolved configuration interface of AmplifyUIBuilderClient class. This is resolved and normalized from the {@link AmplifyUIBuilderClientConfig | constructor configuration interface}.
144
163
  */
145
164
  export interface AmplifyUIBuilderClientResolvedConfig extends AmplifyUIBuilderClientResolvedConfigType {
146
165
  }
147
166
  /**
167
+ * @public
148
168
  * <p>The Amplify UI Builder API provides a programmatic interface for creating
149
169
  * and configuring user interface (UI) component libraries and themes for use in your Amplify applications. You can then connect these UI components to an application's
150
170
  * backend Amazon Web Services resources.</p>
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateComponentCommand}.
8
10
  */
9
11
  export interface CreateComponentCommandInput extends CreateComponentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateComponentCommand}.
13
17
  */
14
18
  export interface CreateComponentCommandOutput extends CreateComponentResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new component for an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateComponentCommandInput - {@link CreateComponentCommandInput}
34
+ * @returns {@link CreateComponentCommandOutput}
28
35
  * @see {@link CreateComponentCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateComponentCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -47,11 +54,20 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
47
54
  export declare class CreateComponentCommand extends $Command<CreateComponentCommandInput, CreateComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
48
55
  readonly input: CreateComponentCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: CreateComponentCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentCommandInput, CreateComponentCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { CreateFormRequest, CreateFormResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateFormCommand}.
8
10
  */
9
11
  export interface CreateFormCommandInput extends CreateFormRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateFormCommand}.
13
17
  */
14
18
  export interface CreateFormCommandOutput extends CreateFormResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new form for an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateFormCommandOutput extends CreateFormResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateFormCommandInput - {@link CreateFormCommandInput}
34
+ * @returns {@link CreateFormCommandOutput}
28
35
  * @see {@link CreateFormCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateFormCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -47,11 +54,20 @@ export interface CreateFormCommandOutput extends CreateFormResponse, __MetadataB
47
54
  export declare class CreateFormCommand extends $Command<CreateFormCommandInput, CreateFormCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
48
55
  readonly input: CreateFormCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: CreateFormCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFormCommandInput, CreateFormCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { CreateThemeRequest, CreateThemeResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateThemeCommand}.
8
10
  */
9
11
  export interface CreateThemeCommandInput extends CreateThemeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateThemeCommand}.
13
17
  */
14
18
  export interface CreateThemeCommandOutput extends CreateThemeResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a theme to apply to the components in an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateThemeCommandOutput extends CreateThemeResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateThemeCommandInput - {@link CreateThemeCommandInput}
34
+ * @returns {@link CreateThemeCommandOutput}
28
35
  * @see {@link CreateThemeCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateThemeCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -47,11 +54,20 @@ export interface CreateThemeCommandOutput extends CreateThemeResponse, __Metadat
47
54
  export declare class CreateThemeCommand extends $Command<CreateThemeCommandInput, CreateThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
48
55
  readonly input: CreateThemeCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: CreateThemeCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateThemeCommandInput, CreateThemeCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { DeleteComponentRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteComponentCommand}.
8
10
  */
9
11
  export interface DeleteComponentCommandInput extends DeleteComponentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteComponentCommand}.
13
17
  */
14
18
  export interface DeleteComponentCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a component from an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteComponentCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteComponentCommandInput - {@link DeleteComponentCommandInput}
34
+ * @returns {@link DeleteComponentCommandOutput}
28
35
  * @see {@link DeleteComponentCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteComponentCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DeleteComponentCommandOutput extends __MetadataBearer {
43
50
  export declare class DeleteComponentCommand extends $Command<DeleteComponentCommandInput, DeleteComponentCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
44
51
  readonly input: DeleteComponentCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DeleteComponentCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentCommandInput, DeleteComponentCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { DeleteFormRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteFormCommand}.
8
10
  */
9
11
  export interface DeleteFormCommandInput extends DeleteFormRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteFormCommand}.
13
17
  */
14
18
  export interface DeleteFormCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a form from an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteFormCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteFormCommandInput - {@link DeleteFormCommandInput}
34
+ * @returns {@link DeleteFormCommandOutput}
28
35
  * @see {@link DeleteFormCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteFormCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DeleteFormCommandOutput extends __MetadataBearer {
43
50
  export declare class DeleteFormCommand extends $Command<DeleteFormCommandInput, DeleteFormCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
44
51
  readonly input: DeleteFormCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DeleteFormCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFormCommandInput, DeleteFormCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { DeleteThemeRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteThemeCommand}.
8
10
  */
9
11
  export interface DeleteThemeCommandInput extends DeleteThemeRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteThemeCommand}.
13
17
  */
14
18
  export interface DeleteThemeCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a theme from an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteThemeCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteThemeCommandInput - {@link DeleteThemeCommandInput}
34
+ * @returns {@link DeleteThemeCommandOutput}
28
35
  * @see {@link DeleteThemeCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteThemeCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DeleteThemeCommandOutput extends __MetadataBearer {
43
50
  export declare class DeleteThemeCommand extends $Command<DeleteThemeCommandInput, DeleteThemeCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
44
51
  readonly input: DeleteThemeCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DeleteThemeCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteThemeCommandInput, DeleteThemeCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { ExchangeCodeForTokenRequest, ExchangeCodeForTokenResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExchangeCodeForTokenCommand}.
8
10
  */
9
11
  export interface ExchangeCodeForTokenCommandInput extends ExchangeCodeForTokenRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExchangeCodeForTokenCommand}.
13
17
  */
14
18
  export interface ExchangeCodeForTokenCommandOutput extends ExchangeCodeForTokenResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Exchanges an access code for a token.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ExchangeCodeForTokenCommandOutput extends ExchangeCodeForTokenR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ExchangeCodeForTokenCommandInput - {@link ExchangeCodeForTokenCommandInput}
34
+ * @returns {@link ExchangeCodeForTokenCommandOutput}
28
35
  * @see {@link ExchangeCodeForTokenCommandInput} for command's `input` shape.
29
36
  * @see {@link ExchangeCodeForTokenCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -37,11 +44,20 @@ export interface ExchangeCodeForTokenCommandOutput extends ExchangeCodeForTokenR
37
44
  export declare class ExchangeCodeForTokenCommand extends $Command<ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
38
45
  readonly input: ExchangeCodeForTokenCommandInput;
39
46
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
47
+ /**
48
+ * @public
49
+ */
40
50
  constructor(input: ExchangeCodeForTokenCommandInput);
41
51
  /**
42
52
  * @internal
43
53
  */
44
54
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput>;
55
+ /**
56
+ * @internal
57
+ */
45
58
  private serialize;
59
+ /**
60
+ * @internal
61
+ */
46
62
  private deserialize;
47
63
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient";
5
5
  import { ExportComponentsRequest, ExportComponentsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ExportComponentsCommand}.
8
10
  */
9
11
  export interface ExportComponentsCommandInput extends ExportComponentsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ExportComponentsCommand}.
13
17
  */
14
18
  export interface ExportComponentsCommandOutput extends ExportComponentsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Exports component configurations to code that is ready to integrate into an Amplify app.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ExportComponentsCommandOutput extends ExportComponentsResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ExportComponentsCommandInput - {@link ExportComponentsCommandInput}
34
+ * @returns {@link ExportComponentsCommandOutput}
28
35
  * @see {@link ExportComponentsCommandInput} for command's `input` shape.
29
36
  * @see {@link ExportComponentsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AmplifyUIBuilderClientResolvedConfig | config} for AmplifyUIBuilderClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ExportComponentsCommandOutput extends ExportComponentsResponse,
40
47
  export declare class ExportComponentsCommand extends $Command<ExportComponentsCommandInput, ExportComponentsCommandOutput, AmplifyUIBuilderClientResolvedConfig> {
41
48
  readonly input: ExportComponentsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ExportComponentsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyUIBuilderClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportComponentsCommandInput, ExportComponentsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }