@aws-sdk/client-appintegrations 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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/AppIntegrations.d.ts +274 -80
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +220 -88
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AppIntegrationsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +440 -392
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,47 +1,185 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
+
CreateDataIntegrationCommandInput,
|
|
8
|
+
CreateDataIntegrationCommandOutput,
|
|
9
|
+
} from "../commands/CreateDataIntegrationCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateEventIntegrationCommandInput,
|
|
12
|
+
CreateEventIntegrationCommandOutput,
|
|
13
|
+
} from "../commands/CreateEventIntegrationCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteDataIntegrationCommandInput,
|
|
16
|
+
DeleteDataIntegrationCommandOutput,
|
|
17
|
+
} from "../commands/DeleteDataIntegrationCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteEventIntegrationCommandInput,
|
|
20
|
+
DeleteEventIntegrationCommandOutput,
|
|
21
|
+
} from "../commands/DeleteEventIntegrationCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetDataIntegrationCommandInput,
|
|
24
|
+
GetDataIntegrationCommandOutput,
|
|
25
|
+
} from "../commands/GetDataIntegrationCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetEventIntegrationCommandInput,
|
|
28
|
+
GetEventIntegrationCommandOutput,
|
|
29
|
+
} from "../commands/GetEventIntegrationCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListDataIntegrationAssociationsCommandInput,
|
|
32
|
+
ListDataIntegrationAssociationsCommandOutput,
|
|
33
|
+
} from "../commands/ListDataIntegrationAssociationsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListDataIntegrationsCommandInput,
|
|
36
|
+
ListDataIntegrationsCommandOutput,
|
|
37
|
+
} from "../commands/ListDataIntegrationsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListEventIntegrationAssociationsCommandInput,
|
|
40
|
+
ListEventIntegrationAssociationsCommandOutput,
|
|
41
|
+
} from "../commands/ListEventIntegrationAssociationsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListEventIntegrationsCommandInput,
|
|
44
|
+
ListEventIntegrationsCommandOutput,
|
|
45
|
+
} from "../commands/ListEventIntegrationsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
TagResourceCommandInput,
|
|
52
|
+
TagResourceCommandOutput,
|
|
53
|
+
} from "../commands/TagResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
UntagResourceCommandInput,
|
|
56
|
+
UntagResourceCommandOutput,
|
|
57
|
+
} from "../commands/UntagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateDataIntegrationCommandInput,
|
|
60
|
+
UpdateDataIntegrationCommandOutput,
|
|
61
|
+
} from "../commands/UpdateDataIntegrationCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateEventIntegrationCommandInput,
|
|
64
|
+
UpdateEventIntegrationCommandOutput,
|
|
65
|
+
} from "../commands/UpdateEventIntegrationCommand";
|
|
66
|
+
export declare const serializeAws_restJson1CreateDataIntegrationCommand: (
|
|
67
|
+
input: CreateDataIntegrationCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1CreateEventIntegrationCommand: (
|
|
71
|
+
input: CreateEventIntegrationCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1DeleteDataIntegrationCommand: (
|
|
75
|
+
input: DeleteDataIntegrationCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_restJson1DeleteEventIntegrationCommand: (
|
|
79
|
+
input: DeleteEventIntegrationCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1GetDataIntegrationCommand: (
|
|
83
|
+
input: GetDataIntegrationCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1GetEventIntegrationCommand: (
|
|
87
|
+
input: GetEventIntegrationCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1ListDataIntegrationAssociationsCommand: (
|
|
91
|
+
input: ListDataIntegrationAssociationsCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1ListDataIntegrationsCommand: (
|
|
95
|
+
input: ListDataIntegrationsCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1ListEventIntegrationAssociationsCommand: (
|
|
99
|
+
input: ListEventIntegrationAssociationsCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1ListEventIntegrationsCommand: (
|
|
103
|
+
input: ListEventIntegrationsCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
107
|
+
input: ListTagsForResourceCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
111
|
+
input: TagResourceCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
115
|
+
input: UntagResourceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1UpdateDataIntegrationCommand: (
|
|
119
|
+
input: UpdateDataIntegrationCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1UpdateEventIntegrationCommand: (
|
|
123
|
+
input: UpdateEventIntegrationCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const deserializeAws_restJson1CreateDataIntegrationCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<CreateDataIntegrationCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1CreateEventIntegrationCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<CreateEventIntegrationCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1DeleteDataIntegrationCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<DeleteDataIntegrationCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_restJson1DeleteEventIntegrationCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DeleteEventIntegrationCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_restJson1GetDataIntegrationCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<GetDataIntegrationCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_restJson1GetEventIntegrationCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<GetEventIntegrationCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_restJson1ListDataIntegrationAssociationsCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<ListDataIntegrationAssociationsCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_restJson1ListDataIntegrationsCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<ListDataIntegrationsCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_restJson1ListEventIntegrationAssociationsCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<ListEventIntegrationAssociationsCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1ListEventIntegrationsCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<ListEventIntegrationsCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<TagResourceCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_restJson1UpdateDataIntegrationCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<UpdateDataIntegrationCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_restJson1UpdateEventIntegrationCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<UpdateEventIntegrationCommandOutput>;
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: AppIntegrationsClientConfig
|
|
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 { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: AppIntegrationsClientConfig
|
|
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
|
+
};
|
|
@@ -1,37 +1,69 @@
|
|
|
1
|
-
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
2
|
-
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: AppIntegrationsClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler:
|
|
9
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
10
|
+
any,
|
|
11
|
+
any,
|
|
12
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
13
|
+
> &
|
|
14
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
15
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
16
|
+
apiVersion: string;
|
|
17
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
18
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
19
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
20
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
23
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
26
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
32
|
+
credentialDefaultProvider: (
|
|
33
|
+
input: any
|
|
34
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
35
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
36
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
37
|
+
import("@aws-sdk/types").UserAgent
|
|
38
|
+
>;
|
|
39
|
+
defaultsMode:
|
|
40
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
41
|
+
| import("@aws-sdk/types").Provider<
|
|
42
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
43
|
+
>;
|
|
44
|
+
endpoint?:
|
|
45
|
+
| string
|
|
46
|
+
| import("@aws-sdk/types").Endpoint
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
48
|
+
| undefined;
|
|
49
|
+
tls?: boolean | undefined;
|
|
50
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
51
|
+
credentials?:
|
|
52
|
+
| import("@aws-sdk/types").Credentials
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
54
|
+
| undefined;
|
|
55
|
+
signer?:
|
|
56
|
+
| import("@aws-sdk/types").RequestSigner
|
|
57
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
58
|
+
| undefined;
|
|
59
|
+
signingEscapePath?: boolean | undefined;
|
|
60
|
+
systemClockOffset?: number | undefined;
|
|
61
|
+
signingRegion?: string | undefined;
|
|
62
|
+
signerConstructor?:
|
|
63
|
+
| (new (
|
|
64
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
65
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
66
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
67
|
+
| undefined;
|
|
68
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
69
|
+
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: AppIntegrationsClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
logger: __Logger;
|
|
10
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
|
+
serviceId: string;
|
|
12
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
|
+
};
|