@aws-sdk/client-chatbot 3.1087.0 → 3.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/Chatbot.d.ts +112 -175
- package/dist-types/ts3.4/ChatbotClient.d.ts +16 -29
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateToConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateChimeWebhookConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateCustomActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateSlackChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteChimeWebhookConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteCustomActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteMicrosoftTeamsUserIdentityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSlackChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSlackUserIdentityCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSlackWorkspaceAuthorizationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeChimeWebhookConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeSlackChannelConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeSlackUserIdentitiesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeSlackWorkspacesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DisassociateFromConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAccountPreferencesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetCustomActionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCustomActionsCommand.d.ts +4 -10
- package/dist-types/ts3.4/commands/ListMicrosoftTeamsChannelConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMicrosoftTeamsConfiguredTeamsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListMicrosoftTeamsUserIdentitiesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAccountPreferencesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateChimeWebhookConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateCustomActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateSlackChannelConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +31 -129
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -4,23 +4,17 @@ export declare class InternalServiceError extends __BaseException {
|
|
|
4
4
|
readonly name: "InternalServiceError";
|
|
5
5
|
readonly $fault: "server";
|
|
6
6
|
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InvalidRequestException extends __BaseException {
|
|
12
10
|
readonly name: "InvalidRequestException";
|
|
13
11
|
readonly $fault: "client";
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class UnauthorizedException extends __BaseException {
|
|
19
15
|
readonly name: "UnauthorizedException";
|
|
20
16
|
readonly $fault: "client";
|
|
21
|
-
constructor(
|
|
22
|
-
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
23
|
-
);
|
|
17
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
24
18
|
}
|
|
25
19
|
export declare class ConflictException extends __BaseException {
|
|
26
20
|
readonly name: "ConflictException";
|
|
@@ -32,35 +26,25 @@ export declare class CreateChimeWebhookConfigurationException extends __BaseExce
|
|
|
32
26
|
readonly $fault: "server";
|
|
33
27
|
Message?: string | undefined;
|
|
34
28
|
constructor(
|
|
35
|
-
opts: __ExceptionOptionType<
|
|
36
|
-
CreateChimeWebhookConfigurationException,
|
|
37
|
-
__BaseException
|
|
38
|
-
>
|
|
29
|
+
opts: __ExceptionOptionType<CreateChimeWebhookConfigurationException, __BaseException>,
|
|
39
30
|
);
|
|
40
31
|
}
|
|
41
32
|
export declare class InvalidParameterException extends __BaseException {
|
|
42
33
|
readonly name: "InvalidParameterException";
|
|
43
34
|
readonly $fault: "client";
|
|
44
|
-
constructor(
|
|
45
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
46
|
-
);
|
|
35
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
47
36
|
}
|
|
48
37
|
export declare class LimitExceededException extends __BaseException {
|
|
49
38
|
readonly name: "LimitExceededException";
|
|
50
39
|
readonly $fault: "client";
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
53
|
-
);
|
|
40
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
54
41
|
}
|
|
55
42
|
export declare class CreateTeamsChannelConfigurationException extends __BaseException {
|
|
56
43
|
readonly name: "CreateTeamsChannelConfigurationException";
|
|
57
44
|
readonly $fault: "server";
|
|
58
45
|
Message?: string | undefined;
|
|
59
46
|
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<
|
|
61
|
-
CreateTeamsChannelConfigurationException,
|
|
62
|
-
__BaseException
|
|
63
|
-
>
|
|
47
|
+
opts: __ExceptionOptionType<CreateTeamsChannelConfigurationException, __BaseException>,
|
|
64
48
|
);
|
|
65
49
|
}
|
|
66
50
|
export declare class CreateSlackChannelConfigurationException extends __BaseException {
|
|
@@ -68,29 +52,21 @@ export declare class CreateSlackChannelConfigurationException extends __BaseExce
|
|
|
68
52
|
readonly $fault: "server";
|
|
69
53
|
Message?: string | undefined;
|
|
70
54
|
constructor(
|
|
71
|
-
opts: __ExceptionOptionType<
|
|
72
|
-
CreateSlackChannelConfigurationException,
|
|
73
|
-
__BaseException
|
|
74
|
-
>
|
|
55
|
+
opts: __ExceptionOptionType<CreateSlackChannelConfigurationException, __BaseException>,
|
|
75
56
|
);
|
|
76
57
|
}
|
|
77
58
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
78
59
|
readonly name: "ResourceNotFoundException";
|
|
79
60
|
readonly $fault: "client";
|
|
80
61
|
Message?: string | undefined;
|
|
81
|
-
constructor(
|
|
82
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
83
|
-
);
|
|
62
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
84
63
|
}
|
|
85
64
|
export declare class DeleteChimeWebhookConfigurationException extends __BaseException {
|
|
86
65
|
readonly name: "DeleteChimeWebhookConfigurationException";
|
|
87
66
|
readonly $fault: "server";
|
|
88
67
|
Message?: string | undefined;
|
|
89
68
|
constructor(
|
|
90
|
-
opts: __ExceptionOptionType<
|
|
91
|
-
DeleteChimeWebhookConfigurationException,
|
|
92
|
-
__BaseException
|
|
93
|
-
>
|
|
69
|
+
opts: __ExceptionOptionType<DeleteChimeWebhookConfigurationException, __BaseException>,
|
|
94
70
|
);
|
|
95
71
|
}
|
|
96
72
|
export declare class DeleteTeamsChannelConfigurationException extends __BaseException {
|
|
@@ -98,32 +74,21 @@ export declare class DeleteTeamsChannelConfigurationException extends __BaseExce
|
|
|
98
74
|
readonly $fault: "server";
|
|
99
75
|
Message?: string | undefined;
|
|
100
76
|
constructor(
|
|
101
|
-
opts: __ExceptionOptionType<
|
|
102
|
-
DeleteTeamsChannelConfigurationException,
|
|
103
|
-
__BaseException
|
|
104
|
-
>
|
|
77
|
+
opts: __ExceptionOptionType<DeleteTeamsChannelConfigurationException, __BaseException>,
|
|
105
78
|
);
|
|
106
79
|
}
|
|
107
80
|
export declare class DeleteTeamsConfiguredTeamException extends __BaseException {
|
|
108
81
|
readonly name: "DeleteTeamsConfiguredTeamException";
|
|
109
82
|
readonly $fault: "server";
|
|
110
83
|
Message?: string | undefined;
|
|
111
|
-
constructor(
|
|
112
|
-
opts: __ExceptionOptionType<
|
|
113
|
-
DeleteTeamsConfiguredTeamException,
|
|
114
|
-
__BaseException
|
|
115
|
-
>
|
|
116
|
-
);
|
|
84
|
+
constructor(opts: __ExceptionOptionType<DeleteTeamsConfiguredTeamException, __BaseException>);
|
|
117
85
|
}
|
|
118
86
|
export declare class DeleteMicrosoftTeamsUserIdentityException extends __BaseException {
|
|
119
87
|
readonly name: "DeleteMicrosoftTeamsUserIdentityException";
|
|
120
88
|
readonly $fault: "server";
|
|
121
89
|
Message?: string | undefined;
|
|
122
90
|
constructor(
|
|
123
|
-
opts: __ExceptionOptionType<
|
|
124
|
-
DeleteMicrosoftTeamsUserIdentityException,
|
|
125
|
-
__BaseException
|
|
126
|
-
>
|
|
91
|
+
opts: __ExceptionOptionType<DeleteMicrosoftTeamsUserIdentityException, __BaseException>,
|
|
127
92
|
);
|
|
128
93
|
}
|
|
129
94
|
export declare class DeleteSlackChannelConfigurationException extends __BaseException {
|
|
@@ -131,43 +96,27 @@ export declare class DeleteSlackChannelConfigurationException extends __BaseExce
|
|
|
131
96
|
readonly $fault: "server";
|
|
132
97
|
Message?: string | undefined;
|
|
133
98
|
constructor(
|
|
134
|
-
opts: __ExceptionOptionType<
|
|
135
|
-
DeleteSlackChannelConfigurationException,
|
|
136
|
-
__BaseException
|
|
137
|
-
>
|
|
99
|
+
opts: __ExceptionOptionType<DeleteSlackChannelConfigurationException, __BaseException>,
|
|
138
100
|
);
|
|
139
101
|
}
|
|
140
102
|
export declare class DeleteSlackUserIdentityException extends __BaseException {
|
|
141
103
|
readonly name: "DeleteSlackUserIdentityException";
|
|
142
104
|
readonly $fault: "server";
|
|
143
105
|
Message?: string | undefined;
|
|
144
|
-
constructor(
|
|
145
|
-
opts: __ExceptionOptionType<
|
|
146
|
-
DeleteSlackUserIdentityException,
|
|
147
|
-
__BaseException
|
|
148
|
-
>
|
|
149
|
-
);
|
|
106
|
+
constructor(opts: __ExceptionOptionType<DeleteSlackUserIdentityException, __BaseException>);
|
|
150
107
|
}
|
|
151
108
|
export declare class DeleteSlackWorkspaceAuthorizationFault extends __BaseException {
|
|
152
109
|
readonly name: "DeleteSlackWorkspaceAuthorizationFault";
|
|
153
110
|
readonly $fault: "server";
|
|
154
111
|
Message?: string | undefined;
|
|
155
|
-
constructor(
|
|
156
|
-
opts: __ExceptionOptionType<
|
|
157
|
-
DeleteSlackWorkspaceAuthorizationFault,
|
|
158
|
-
__BaseException
|
|
159
|
-
>
|
|
160
|
-
);
|
|
112
|
+
constructor(opts: __ExceptionOptionType<DeleteSlackWorkspaceAuthorizationFault, __BaseException>);
|
|
161
113
|
}
|
|
162
114
|
export declare class DescribeChimeWebhookConfigurationsException extends __BaseException {
|
|
163
115
|
readonly name: "DescribeChimeWebhookConfigurationsException";
|
|
164
116
|
readonly $fault: "server";
|
|
165
117
|
Message?: string | undefined;
|
|
166
118
|
constructor(
|
|
167
|
-
opts: __ExceptionOptionType<
|
|
168
|
-
DescribeChimeWebhookConfigurationsException,
|
|
169
|
-
__BaseException
|
|
170
|
-
>
|
|
119
|
+
opts: __ExceptionOptionType<DescribeChimeWebhookConfigurationsException, __BaseException>,
|
|
171
120
|
);
|
|
172
121
|
}
|
|
173
122
|
export declare class DescribeSlackChannelConfigurationsException extends __BaseException {
|
|
@@ -175,62 +124,39 @@ export declare class DescribeSlackChannelConfigurationsException extends __BaseE
|
|
|
175
124
|
readonly $fault: "server";
|
|
176
125
|
Message?: string | undefined;
|
|
177
126
|
constructor(
|
|
178
|
-
opts: __ExceptionOptionType<
|
|
179
|
-
DescribeSlackChannelConfigurationsException,
|
|
180
|
-
__BaseException
|
|
181
|
-
>
|
|
127
|
+
opts: __ExceptionOptionType<DescribeSlackChannelConfigurationsException, __BaseException>,
|
|
182
128
|
);
|
|
183
129
|
}
|
|
184
130
|
export declare class DescribeSlackUserIdentitiesException extends __BaseException {
|
|
185
131
|
readonly name: "DescribeSlackUserIdentitiesException";
|
|
186
132
|
readonly $fault: "server";
|
|
187
133
|
Message?: string | undefined;
|
|
188
|
-
constructor(
|
|
189
|
-
opts: __ExceptionOptionType<
|
|
190
|
-
DescribeSlackUserIdentitiesException,
|
|
191
|
-
__BaseException
|
|
192
|
-
>
|
|
193
|
-
);
|
|
134
|
+
constructor(opts: __ExceptionOptionType<DescribeSlackUserIdentitiesException, __BaseException>);
|
|
194
135
|
}
|
|
195
136
|
export declare class DescribeSlackWorkspacesException extends __BaseException {
|
|
196
137
|
readonly name: "DescribeSlackWorkspacesException";
|
|
197
138
|
readonly $fault: "server";
|
|
198
139
|
Message?: string | undefined;
|
|
199
|
-
constructor(
|
|
200
|
-
opts: __ExceptionOptionType<
|
|
201
|
-
DescribeSlackWorkspacesException,
|
|
202
|
-
__BaseException
|
|
203
|
-
>
|
|
204
|
-
);
|
|
140
|
+
constructor(opts: __ExceptionOptionType<DescribeSlackWorkspacesException, __BaseException>);
|
|
205
141
|
}
|
|
206
142
|
export declare class GetAccountPreferencesException extends __BaseException {
|
|
207
143
|
readonly name: "GetAccountPreferencesException";
|
|
208
144
|
readonly $fault: "server";
|
|
209
145
|
Message?: string | undefined;
|
|
210
|
-
constructor(
|
|
211
|
-
opts: __ExceptionOptionType<GetAccountPreferencesException, __BaseException>
|
|
212
|
-
);
|
|
146
|
+
constructor(opts: __ExceptionOptionType<GetAccountPreferencesException, __BaseException>);
|
|
213
147
|
}
|
|
214
148
|
export declare class GetTeamsChannelConfigurationException extends __BaseException {
|
|
215
149
|
readonly name: "GetTeamsChannelConfigurationException";
|
|
216
150
|
readonly $fault: "server";
|
|
217
151
|
Message?: string | undefined;
|
|
218
|
-
constructor(
|
|
219
|
-
opts: __ExceptionOptionType<
|
|
220
|
-
GetTeamsChannelConfigurationException,
|
|
221
|
-
__BaseException
|
|
222
|
-
>
|
|
223
|
-
);
|
|
152
|
+
constructor(opts: __ExceptionOptionType<GetTeamsChannelConfigurationException, __BaseException>);
|
|
224
153
|
}
|
|
225
154
|
export declare class ListTeamsChannelConfigurationsException extends __BaseException {
|
|
226
155
|
readonly name: "ListTeamsChannelConfigurationsException";
|
|
227
156
|
readonly $fault: "server";
|
|
228
157
|
Message?: string | undefined;
|
|
229
158
|
constructor(
|
|
230
|
-
opts: __ExceptionOptionType<
|
|
231
|
-
ListTeamsChannelConfigurationsException,
|
|
232
|
-
__BaseException
|
|
233
|
-
>
|
|
159
|
+
opts: __ExceptionOptionType<ListTeamsChannelConfigurationsException, __BaseException>,
|
|
234
160
|
);
|
|
235
161
|
}
|
|
236
162
|
export declare class ListMicrosoftTeamsConfiguredTeamsException extends __BaseException {
|
|
@@ -238,10 +164,7 @@ export declare class ListMicrosoftTeamsConfiguredTeamsException extends __BaseEx
|
|
|
238
164
|
readonly $fault: "server";
|
|
239
165
|
Message?: string | undefined;
|
|
240
166
|
constructor(
|
|
241
|
-
opts: __ExceptionOptionType<
|
|
242
|
-
ListMicrosoftTeamsConfiguredTeamsException,
|
|
243
|
-
__BaseException
|
|
244
|
-
>
|
|
167
|
+
opts: __ExceptionOptionType<ListMicrosoftTeamsConfiguredTeamsException, __BaseException>,
|
|
245
168
|
);
|
|
246
169
|
}
|
|
247
170
|
export declare class ListMicrosoftTeamsUserIdentitiesException extends __BaseException {
|
|
@@ -249,46 +172,31 @@ export declare class ListMicrosoftTeamsUserIdentitiesException extends __BaseExc
|
|
|
249
172
|
readonly $fault: "server";
|
|
250
173
|
Message?: string | undefined;
|
|
251
174
|
constructor(
|
|
252
|
-
opts: __ExceptionOptionType<
|
|
253
|
-
ListMicrosoftTeamsUserIdentitiesException,
|
|
254
|
-
__BaseException
|
|
255
|
-
>
|
|
175
|
+
opts: __ExceptionOptionType<ListMicrosoftTeamsUserIdentitiesException, __BaseException>,
|
|
256
176
|
);
|
|
257
177
|
}
|
|
258
178
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
259
179
|
readonly name: "ServiceUnavailableException";
|
|
260
180
|
readonly $fault: "client";
|
|
261
|
-
constructor(
|
|
262
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
263
|
-
);
|
|
181
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
264
182
|
}
|
|
265
183
|
export declare class TooManyTagsException extends __BaseException {
|
|
266
184
|
readonly name: "TooManyTagsException";
|
|
267
185
|
readonly $fault: "client";
|
|
268
|
-
constructor(
|
|
269
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
270
|
-
);
|
|
186
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
271
187
|
}
|
|
272
188
|
export declare class UpdateAccountPreferencesException extends __BaseException {
|
|
273
189
|
readonly name: "UpdateAccountPreferencesException";
|
|
274
190
|
readonly $fault: "server";
|
|
275
191
|
Message?: string | undefined;
|
|
276
|
-
constructor(
|
|
277
|
-
opts: __ExceptionOptionType<
|
|
278
|
-
UpdateAccountPreferencesException,
|
|
279
|
-
__BaseException
|
|
280
|
-
>
|
|
281
|
-
);
|
|
192
|
+
constructor(opts: __ExceptionOptionType<UpdateAccountPreferencesException, __BaseException>);
|
|
282
193
|
}
|
|
283
194
|
export declare class UpdateChimeWebhookConfigurationException extends __BaseException {
|
|
284
195
|
readonly name: "UpdateChimeWebhookConfigurationException";
|
|
285
196
|
readonly $fault: "server";
|
|
286
197
|
Message?: string | undefined;
|
|
287
198
|
constructor(
|
|
288
|
-
opts: __ExceptionOptionType<
|
|
289
|
-
UpdateChimeWebhookConfigurationException,
|
|
290
|
-
__BaseException
|
|
291
|
-
>
|
|
199
|
+
opts: __ExceptionOptionType<UpdateChimeWebhookConfigurationException, __BaseException>,
|
|
292
200
|
);
|
|
293
201
|
}
|
|
294
202
|
export declare class UpdateTeamsChannelConfigurationException extends __BaseException {
|
|
@@ -296,10 +204,7 @@ export declare class UpdateTeamsChannelConfigurationException extends __BaseExce
|
|
|
296
204
|
readonly $fault: "server";
|
|
297
205
|
Message?: string | undefined;
|
|
298
206
|
constructor(
|
|
299
|
-
opts: __ExceptionOptionType<
|
|
300
|
-
UpdateTeamsChannelConfigurationException,
|
|
301
|
-
__BaseException
|
|
302
|
-
>
|
|
207
|
+
opts: __ExceptionOptionType<UpdateTeamsChannelConfigurationException, __BaseException>,
|
|
303
208
|
);
|
|
304
209
|
}
|
|
305
210
|
export declare class UpdateSlackChannelConfigurationException extends __BaseException {
|
|
@@ -307,9 +212,6 @@ export declare class UpdateSlackChannelConfigurationException extends __BaseExce
|
|
|
307
212
|
readonly $fault: "server";
|
|
308
213
|
Message?: string | undefined;
|
|
309
214
|
constructor(
|
|
310
|
-
opts: __ExceptionOptionType<
|
|
311
|
-
UpdateSlackChannelConfigurationException,
|
|
312
|
-
__BaseException
|
|
313
|
-
>
|
|
215
|
+
opts: __ExceptionOptionType<UpdateSlackChannelConfigurationException, __BaseException>,
|
|
314
216
|
);
|
|
315
217
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ChatbotClient } from "../ChatbotClient";
|
|
3
|
-
export interface ChatbotPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ChatbotPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ChatbotClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: ChatbotClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ChatbotHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var ChatbotServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var ConflictException$: StaticErrorSchema;
|
|
9
5
|
export declare var CreateChimeWebhookConfigurationException$: StaticErrorSchema;
|