@aws-sdk/client-amplifyuibuilder 3.169.0 → 3.170.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 (35) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AmplifyUIBuilder.d.ts +256 -75
  3. package/dist-types/ts3.4/AmplifyUIBuilderClient.d.ts +214 -87
  4. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateThemeCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteThemeCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/ExchangeCodeForTokenCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/ExportComponentsCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/ExportThemesCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetThemeCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/ListThemesCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/RefreshTokenCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/UpdateThemeCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/AmplifyUIBuilderServiceException.d.ts +8 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +749 -698
  24. package/dist-types/ts3.4/pagination/ExportComponentsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ExportThemesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  27. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListThemesPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  35. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "../commands/ExportComponentsCommand";
3
- import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateExportComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ExportComponentsCommandInput, ...additionalArguments: any): Paginator<ExportComponentsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ExportComponentsCommandInput,
4
+ ExportComponentsCommandOutput,
5
+ } from "../commands/ExportComponentsCommand";
6
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateExportComponents(
8
+ config: AmplifyUIBuilderPaginationConfiguration,
9
+ input: ExportComponentsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ExportComponentsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ExportThemesCommandInput, ExportThemesCommandOutput } from "../commands/ExportThemesCommand";
3
- import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateExportThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ExportThemesCommandInput, ...additionalArguments: any): Paginator<ExportThemesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ExportThemesCommandInput,
4
+ ExportThemesCommandOutput,
5
+ } from "../commands/ExportThemesCommand";
6
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateExportThemes(
8
+ config: AmplifyUIBuilderPaginationConfiguration,
9
+ input: ExportThemesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ExportThemesCommandOutput>;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { AmplifyUIBuilder } from "../AmplifyUIBuilder";
3
- import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
4
- export interface AmplifyUIBuilderPaginationConfiguration extends PaginationConfiguration {
5
- client: AmplifyUIBuilder | AmplifyUIBuilderClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { AmplifyUIBuilder } from "../AmplifyUIBuilder";
3
+ import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
4
+ export interface AmplifyUIBuilderPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: AmplifyUIBuilder | AmplifyUIBuilderClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
3
- import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListComponentsCommandInput,
4
+ ListComponentsCommandOutput,
5
+ } from "../commands/ListComponentsCommand";
6
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListComponents(
8
+ config: AmplifyUIBuilderPaginationConfiguration,
9
+ input: ListComponentsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListComponentsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
3
- import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ListThemesCommandInput, ...additionalArguments: any): Paginator<ListThemesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListThemesCommandInput,
4
+ ListThemesCommandOutput,
5
+ } from "../commands/ListThemesCommand";
6
+ import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListThemes(
8
+ config: AmplifyUIBuilderPaginationConfiguration,
9
+ input: ListThemesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListThemesCommandOutput>;
@@ -1,5 +1,5 @@
1
- export * from "./ExportComponentsPaginator";
2
- export * from "./ExportThemesPaginator";
3
- export * from "./Interfaces";
4
- export * from "./ListComponentsPaginator";
5
- export * from "./ListThemesPaginator";
1
+ export * from "./ExportComponentsPaginator";
2
+ export * from "./ExportThemesPaginator";
3
+ export * from "./Interfaces";
4
+ export * from "./ListComponentsPaginator";
5
+ export * from "./ListThemesPaginator";
@@ -1,44 +1,173 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateComponentCommandInput, CreateComponentCommandOutput } from "../commands/CreateComponentCommand";
4
- import { CreateThemeCommandInput, CreateThemeCommandOutput } from "../commands/CreateThemeCommand";
5
- import { DeleteComponentCommandInput, DeleteComponentCommandOutput } from "../commands/DeleteComponentCommand";
6
- import { DeleteThemeCommandInput, DeleteThemeCommandOutput } from "../commands/DeleteThemeCommand";
7
- import { ExchangeCodeForTokenCommandInput, ExchangeCodeForTokenCommandOutput } from "../commands/ExchangeCodeForTokenCommand";
8
- import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "../commands/ExportComponentsCommand";
9
- import { ExportThemesCommandInput, ExportThemesCommandOutput } from "../commands/ExportThemesCommand";
10
- import { GetComponentCommandInput, GetComponentCommandOutput } from "../commands/GetComponentCommand";
11
- import { GetThemeCommandInput, GetThemeCommandOutput } from "../commands/GetThemeCommand";
12
- import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
13
- import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
14
- import { RefreshTokenCommandInput, RefreshTokenCommandOutput } from "../commands/RefreshTokenCommand";
15
- import { UpdateComponentCommandInput, UpdateComponentCommandOutput } from "../commands/UpdateComponentCommand";
16
- import { UpdateThemeCommandInput, UpdateThemeCommandOutput } from "../commands/UpdateThemeCommand";
17
- export declare const serializeAws_restJson1CreateComponentCommand: (input: CreateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_restJson1CreateThemeCommand: (input: CreateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_restJson1DeleteComponentCommand: (input: DeleteComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1DeleteThemeCommand: (input: DeleteThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1ExchangeCodeForTokenCommand: (input: ExchangeCodeForTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1ExportComponentsCommand: (input: ExportComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1ExportThemesCommand: (input: ExportThemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1GetComponentCommand: (input: GetComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1GetThemeCommand: (input: GetThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1ListThemesCommand: (input: ListThemesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1RefreshTokenCommand: (input: RefreshTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1UpdateComponentCommand: (input: UpdateComponentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1UpdateThemeCommand: (input: UpdateThemeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const deserializeAws_restJson1CreateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentCommandOutput>;
32
- export declare const deserializeAws_restJson1CreateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateThemeCommandOutput>;
33
- export declare const deserializeAws_restJson1DeleteComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentCommandOutput>;
34
- export declare const deserializeAws_restJson1DeleteThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteThemeCommandOutput>;
35
- export declare const deserializeAws_restJson1ExchangeCodeForTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExchangeCodeForTokenCommandOutput>;
36
- export declare const deserializeAws_restJson1ExportComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportComponentsCommandOutput>;
37
- export declare const deserializeAws_restJson1ExportThemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportThemesCommandOutput>;
38
- export declare const deserializeAws_restJson1GetComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentCommandOutput>;
39
- export declare const deserializeAws_restJson1GetThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetThemeCommandOutput>;
40
- export declare const deserializeAws_restJson1ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
41
- export declare const deserializeAws_restJson1ListThemesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListThemesCommandOutput>;
42
- export declare const deserializeAws_restJson1RefreshTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RefreshTokenCommandOutput>;
43
- export declare const deserializeAws_restJson1UpdateComponentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentCommandOutput>;
44
- export declare const deserializeAws_restJson1UpdateThemeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateThemeCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateComponentCommandInput,
8
+ CreateComponentCommandOutput,
9
+ } from "../commands/CreateComponentCommand";
10
+ import {
11
+ CreateThemeCommandInput,
12
+ CreateThemeCommandOutput,
13
+ } from "../commands/CreateThemeCommand";
14
+ import {
15
+ DeleteComponentCommandInput,
16
+ DeleteComponentCommandOutput,
17
+ } from "../commands/DeleteComponentCommand";
18
+ import {
19
+ DeleteThemeCommandInput,
20
+ DeleteThemeCommandOutput,
21
+ } from "../commands/DeleteThemeCommand";
22
+ import {
23
+ ExchangeCodeForTokenCommandInput,
24
+ ExchangeCodeForTokenCommandOutput,
25
+ } from "../commands/ExchangeCodeForTokenCommand";
26
+ import {
27
+ ExportComponentsCommandInput,
28
+ ExportComponentsCommandOutput,
29
+ } from "../commands/ExportComponentsCommand";
30
+ import {
31
+ ExportThemesCommandInput,
32
+ ExportThemesCommandOutput,
33
+ } from "../commands/ExportThemesCommand";
34
+ import {
35
+ GetComponentCommandInput,
36
+ GetComponentCommandOutput,
37
+ } from "../commands/GetComponentCommand";
38
+ import {
39
+ GetThemeCommandInput,
40
+ GetThemeCommandOutput,
41
+ } from "../commands/GetThemeCommand";
42
+ import {
43
+ ListComponentsCommandInput,
44
+ ListComponentsCommandOutput,
45
+ } from "../commands/ListComponentsCommand";
46
+ import {
47
+ ListThemesCommandInput,
48
+ ListThemesCommandOutput,
49
+ } from "../commands/ListThemesCommand";
50
+ import {
51
+ RefreshTokenCommandInput,
52
+ RefreshTokenCommandOutput,
53
+ } from "../commands/RefreshTokenCommand";
54
+ import {
55
+ UpdateComponentCommandInput,
56
+ UpdateComponentCommandOutput,
57
+ } from "../commands/UpdateComponentCommand";
58
+ import {
59
+ UpdateThemeCommandInput,
60
+ UpdateThemeCommandOutput,
61
+ } from "../commands/UpdateThemeCommand";
62
+ export declare const serializeAws_restJson1CreateComponentCommand: (
63
+ input: CreateComponentCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1CreateThemeCommand: (
67
+ input: CreateThemeCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1DeleteComponentCommand: (
71
+ input: DeleteComponentCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1DeleteThemeCommand: (
75
+ input: DeleteThemeCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1ExchangeCodeForTokenCommand: (
79
+ input: ExchangeCodeForTokenCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1ExportComponentsCommand: (
83
+ input: ExportComponentsCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1ExportThemesCommand: (
87
+ input: ExportThemesCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1GetComponentCommand: (
91
+ input: GetComponentCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1GetThemeCommand: (
95
+ input: GetThemeCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1ListComponentsCommand: (
99
+ input: ListComponentsCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1ListThemesCommand: (
103
+ input: ListThemesCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1RefreshTokenCommand: (
107
+ input: RefreshTokenCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1UpdateComponentCommand: (
111
+ input: UpdateComponentCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1UpdateThemeCommand: (
115
+ input: UpdateThemeCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const deserializeAws_restJson1CreateComponentCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<CreateComponentCommandOutput>;
122
+ export declare const deserializeAws_restJson1CreateThemeCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<CreateThemeCommandOutput>;
126
+ export declare const deserializeAws_restJson1DeleteComponentCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<DeleteComponentCommandOutput>;
130
+ export declare const deserializeAws_restJson1DeleteThemeCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<DeleteThemeCommandOutput>;
134
+ export declare const deserializeAws_restJson1ExchangeCodeForTokenCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<ExchangeCodeForTokenCommandOutput>;
138
+ export declare const deserializeAws_restJson1ExportComponentsCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<ExportComponentsCommandOutput>;
142
+ export declare const deserializeAws_restJson1ExportThemesCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<ExportThemesCommandOutput>;
146
+ export declare const deserializeAws_restJson1GetComponentCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<GetComponentCommandOutput>;
150
+ export declare const deserializeAws_restJson1GetThemeCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<GetThemeCommandOutput>;
154
+ export declare const deserializeAws_restJson1ListComponentsCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<ListComponentsCommandOutput>;
158
+ export declare const deserializeAws_restJson1ListThemesCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<ListThemesCommandOutput>;
162
+ export declare const deserializeAws_restJson1RefreshTokenCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<RefreshTokenCommandOutput>;
166
+ export declare const deserializeAws_restJson1UpdateComponentCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<UpdateComponentCommandOutput>;
170
+ export declare const deserializeAws_restJson1UpdateThemeCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<UpdateThemeCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
-
4
- export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: AmplifyUIBuilderClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,38 +1,68 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
-
4
- export declare const getRuntimeConfig: (config: AmplifyUIBuilderClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: AmplifyUIBuilderClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<string>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };