@aws-sdk/client-chatbot 3.933.0 → 3.935.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 +5 -4
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +4 -0
- package/dist-es/models/errors.js +435 -0
- package/dist-es/models/models_0.js +1 -439
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/errors.d.ts +411 -0
- package/dist-types/models/models_0.d.ts +1 -423
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/errors.d.ts +315 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -321
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ChatbotServiceException as __BaseException } from "./ChatbotServiceException";
|
|
1
|
+
import { CustomActionAttachmentCriteriaOperator } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* <p>Preferences related to AWS Chatbot usage in the calling AWS account.</p>
|
|
5
4
|
* @public
|
|
@@ -38,43 +37,6 @@ export interface AssociateToConfigurationRequest {
|
|
|
38
37
|
*/
|
|
39
38
|
export interface AssociateToConfigurationResult {
|
|
40
39
|
}
|
|
41
|
-
/**
|
|
42
|
-
* <p>Unexpected error during processing of request.</p>
|
|
43
|
-
* @public
|
|
44
|
-
*/
|
|
45
|
-
export declare class InternalServiceError extends __BaseException {
|
|
46
|
-
readonly name: "InternalServiceError";
|
|
47
|
-
readonly $fault: "server";
|
|
48
|
-
Message?: string | undefined;
|
|
49
|
-
/**
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* <p>Your request input doesn't meet the constraints required by AWS Chatbot.</p>
|
|
56
|
-
* @public
|
|
57
|
-
*/
|
|
58
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
59
|
-
readonly name: "InvalidRequestException";
|
|
60
|
-
readonly $fault: "client";
|
|
61
|
-
/**
|
|
62
|
-
* @internal
|
|
63
|
-
*/
|
|
64
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* <p>The request was rejected because it doesn't have valid credentials for the target resource.</p>
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
71
|
-
readonly name: "UnauthorizedException";
|
|
72
|
-
readonly $fault: "client";
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
77
|
-
}
|
|
78
40
|
/**
|
|
79
41
|
* <p>A listing of an association with a channel configuration.</p>
|
|
80
42
|
* @public
|
|
@@ -196,31 +158,6 @@ export interface ConfiguredTeam {
|
|
|
196
158
|
*/
|
|
197
159
|
StateReason?: string | undefined;
|
|
198
160
|
}
|
|
199
|
-
/**
|
|
200
|
-
* <p>There was an issue processing your request.</p>
|
|
201
|
-
* @public
|
|
202
|
-
*/
|
|
203
|
-
export declare class ConflictException extends __BaseException {
|
|
204
|
-
readonly name: "ConflictException";
|
|
205
|
-
readonly $fault: "client";
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
210
|
-
}
|
|
211
|
-
/**
|
|
212
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
213
|
-
* @public
|
|
214
|
-
*/
|
|
215
|
-
export declare class CreateChimeWebhookConfigurationException extends __BaseException {
|
|
216
|
-
readonly name: "CreateChimeWebhookConfigurationException";
|
|
217
|
-
readonly $fault: "server";
|
|
218
|
-
Message?: string | undefined;
|
|
219
|
-
/**
|
|
220
|
-
* @internal
|
|
221
|
-
*/
|
|
222
|
-
constructor(opts: __ExceptionOptionType<CreateChimeWebhookConfigurationException, __BaseException>);
|
|
223
|
-
}
|
|
224
161
|
/**
|
|
225
162
|
* @public
|
|
226
163
|
*/
|
|
@@ -275,42 +212,6 @@ export interface CreateChimeWebhookConfigurationResult {
|
|
|
275
212
|
*/
|
|
276
213
|
WebhookConfiguration?: ChimeWebhookConfiguration | undefined;
|
|
277
214
|
}
|
|
278
|
-
/**
|
|
279
|
-
* <p>Your request input doesn't meet the constraints required by AWS Chatbot.</p>
|
|
280
|
-
* @public
|
|
281
|
-
*/
|
|
282
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
283
|
-
readonly name: "InvalidParameterException";
|
|
284
|
-
readonly $fault: "client";
|
|
285
|
-
/**
|
|
286
|
-
* @internal
|
|
287
|
-
*/
|
|
288
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
289
|
-
}
|
|
290
|
-
/**
|
|
291
|
-
* <p>You have exceeded a service limit for AWS Chatbot.</p>
|
|
292
|
-
* @public
|
|
293
|
-
*/
|
|
294
|
-
export declare class LimitExceededException extends __BaseException {
|
|
295
|
-
readonly name: "LimitExceededException";
|
|
296
|
-
readonly $fault: "client";
|
|
297
|
-
/**
|
|
298
|
-
* @internal
|
|
299
|
-
*/
|
|
300
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
301
|
-
}
|
|
302
|
-
/**
|
|
303
|
-
* @public
|
|
304
|
-
* @enum
|
|
305
|
-
*/
|
|
306
|
-
export declare const CustomActionAttachmentCriteriaOperator: {
|
|
307
|
-
readonly EQUALS: "EQUALS";
|
|
308
|
-
readonly HAS_VALUE: "HAS_VALUE";
|
|
309
|
-
};
|
|
310
|
-
/**
|
|
311
|
-
* @public
|
|
312
|
-
*/
|
|
313
|
-
export type CustomActionAttachmentCriteriaOperator = (typeof CustomActionAttachmentCriteriaOperator)[keyof typeof CustomActionAttachmentCriteriaOperator];
|
|
314
215
|
/**
|
|
315
216
|
* <p>A criteria for when a button should be shown based on values in the notification</p>
|
|
316
217
|
* @public
|
|
@@ -415,19 +316,6 @@ export interface CreateCustomActionResult {
|
|
|
415
316
|
*/
|
|
416
317
|
CustomActionArn: string | undefined;
|
|
417
318
|
}
|
|
418
|
-
/**
|
|
419
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
420
|
-
* @public
|
|
421
|
-
*/
|
|
422
|
-
export declare class CreateTeamsChannelConfigurationException extends __BaseException {
|
|
423
|
-
readonly name: "CreateTeamsChannelConfigurationException";
|
|
424
|
-
readonly $fault: "server";
|
|
425
|
-
Message?: string | undefined;
|
|
426
|
-
/**
|
|
427
|
-
* @internal
|
|
428
|
-
*/
|
|
429
|
-
constructor(opts: __ExceptionOptionType<CreateTeamsChannelConfigurationException, __BaseException>);
|
|
430
|
-
}
|
|
431
319
|
/**
|
|
432
320
|
* @public
|
|
433
321
|
*/
|
|
@@ -595,19 +483,6 @@ export interface CreateTeamsChannelConfigurationResult {
|
|
|
595
483
|
*/
|
|
596
484
|
ChannelConfiguration?: TeamsChannelConfiguration | undefined;
|
|
597
485
|
}
|
|
598
|
-
/**
|
|
599
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
600
|
-
* @public
|
|
601
|
-
*/
|
|
602
|
-
export declare class CreateSlackChannelConfigurationException extends __BaseException {
|
|
603
|
-
readonly name: "CreateSlackChannelConfigurationException";
|
|
604
|
-
readonly $fault: "server";
|
|
605
|
-
Message?: string | undefined;
|
|
606
|
-
/**
|
|
607
|
-
* @internal
|
|
608
|
-
*/
|
|
609
|
-
constructor(opts: __ExceptionOptionType<CreateSlackChannelConfigurationException, __BaseException>);
|
|
610
|
-
}
|
|
611
486
|
/**
|
|
612
487
|
* @public
|
|
613
488
|
*/
|
|
@@ -806,19 +681,6 @@ export interface DeleteCustomActionRequest {
|
|
|
806
681
|
*/
|
|
807
682
|
export interface DeleteCustomActionResult {
|
|
808
683
|
}
|
|
809
|
-
/**
|
|
810
|
-
* <p>We were unable to find the resource for your request</p>
|
|
811
|
-
* @public
|
|
812
|
-
*/
|
|
813
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
814
|
-
readonly name: "ResourceNotFoundException";
|
|
815
|
-
readonly $fault: "client";
|
|
816
|
-
Message?: string | undefined;
|
|
817
|
-
/**
|
|
818
|
-
* @internal
|
|
819
|
-
*/
|
|
820
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
821
|
-
}
|
|
822
684
|
/**
|
|
823
685
|
* @public
|
|
824
686
|
*/
|
|
@@ -904,19 +766,6 @@ export interface UpdateCustomActionResult {
|
|
|
904
766
|
*/
|
|
905
767
|
CustomActionArn: string | undefined;
|
|
906
768
|
}
|
|
907
|
-
/**
|
|
908
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
909
|
-
* @public
|
|
910
|
-
*/
|
|
911
|
-
export declare class DeleteChimeWebhookConfigurationException extends __BaseException {
|
|
912
|
-
readonly name: "DeleteChimeWebhookConfigurationException";
|
|
913
|
-
readonly $fault: "server";
|
|
914
|
-
Message?: string | undefined;
|
|
915
|
-
/**
|
|
916
|
-
* @internal
|
|
917
|
-
*/
|
|
918
|
-
constructor(opts: __ExceptionOptionType<DeleteChimeWebhookConfigurationException, __BaseException>);
|
|
919
|
-
}
|
|
920
769
|
/**
|
|
921
770
|
* @public
|
|
922
771
|
*/
|
|
@@ -932,19 +781,6 @@ export interface DeleteChimeWebhookConfigurationRequest {
|
|
|
932
781
|
*/
|
|
933
782
|
export interface DeleteChimeWebhookConfigurationResult {
|
|
934
783
|
}
|
|
935
|
-
/**
|
|
936
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
937
|
-
* @public
|
|
938
|
-
*/
|
|
939
|
-
export declare class DeleteTeamsChannelConfigurationException extends __BaseException {
|
|
940
|
-
readonly name: "DeleteTeamsChannelConfigurationException";
|
|
941
|
-
readonly $fault: "server";
|
|
942
|
-
Message?: string | undefined;
|
|
943
|
-
/**
|
|
944
|
-
* @internal
|
|
945
|
-
*/
|
|
946
|
-
constructor(opts: __ExceptionOptionType<DeleteTeamsChannelConfigurationException, __BaseException>);
|
|
947
|
-
}
|
|
948
784
|
/**
|
|
949
785
|
* @public
|
|
950
786
|
*/
|
|
@@ -960,19 +796,6 @@ export interface DeleteTeamsChannelConfigurationRequest {
|
|
|
960
796
|
*/
|
|
961
797
|
export interface DeleteTeamsChannelConfigurationResult {
|
|
962
798
|
}
|
|
963
|
-
/**
|
|
964
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
965
|
-
* @public
|
|
966
|
-
*/
|
|
967
|
-
export declare class DeleteTeamsConfiguredTeamException extends __BaseException {
|
|
968
|
-
readonly name: "DeleteTeamsConfiguredTeamException";
|
|
969
|
-
readonly $fault: "server";
|
|
970
|
-
Message?: string | undefined;
|
|
971
|
-
/**
|
|
972
|
-
* @internal
|
|
973
|
-
*/
|
|
974
|
-
constructor(opts: __ExceptionOptionType<DeleteTeamsConfiguredTeamException, __BaseException>);
|
|
975
|
-
}
|
|
976
799
|
/**
|
|
977
800
|
* @public
|
|
978
801
|
*/
|
|
@@ -990,19 +813,6 @@ export interface DeleteTeamsConfiguredTeamRequest {
|
|
|
990
813
|
*/
|
|
991
814
|
export interface DeleteTeamsConfiguredTeamResult {
|
|
992
815
|
}
|
|
993
|
-
/**
|
|
994
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
995
|
-
* @public
|
|
996
|
-
*/
|
|
997
|
-
export declare class DeleteMicrosoftTeamsUserIdentityException extends __BaseException {
|
|
998
|
-
readonly name: "DeleteMicrosoftTeamsUserIdentityException";
|
|
999
|
-
readonly $fault: "server";
|
|
1000
|
-
Message?: string | undefined;
|
|
1001
|
-
/**
|
|
1002
|
-
* @internal
|
|
1003
|
-
*/
|
|
1004
|
-
constructor(opts: __ExceptionOptionType<DeleteMicrosoftTeamsUserIdentityException, __BaseException>);
|
|
1005
|
-
}
|
|
1006
816
|
/**
|
|
1007
817
|
* @public
|
|
1008
818
|
*/
|
|
@@ -1023,19 +833,6 @@ export interface DeleteMicrosoftTeamsUserIdentityRequest {
|
|
|
1023
833
|
*/
|
|
1024
834
|
export interface DeleteMicrosoftTeamsUserIdentityResult {
|
|
1025
835
|
}
|
|
1026
|
-
/**
|
|
1027
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1028
|
-
* @public
|
|
1029
|
-
*/
|
|
1030
|
-
export declare class DeleteSlackChannelConfigurationException extends __BaseException {
|
|
1031
|
-
readonly name: "DeleteSlackChannelConfigurationException";
|
|
1032
|
-
readonly $fault: "server";
|
|
1033
|
-
Message?: string | undefined;
|
|
1034
|
-
/**
|
|
1035
|
-
* @internal
|
|
1036
|
-
*/
|
|
1037
|
-
constructor(opts: __ExceptionOptionType<DeleteSlackChannelConfigurationException, __BaseException>);
|
|
1038
|
-
}
|
|
1039
836
|
/**
|
|
1040
837
|
* @public
|
|
1041
838
|
*/
|
|
@@ -1051,19 +848,6 @@ export interface DeleteSlackChannelConfigurationRequest {
|
|
|
1051
848
|
*/
|
|
1052
849
|
export interface DeleteSlackChannelConfigurationResult {
|
|
1053
850
|
}
|
|
1054
|
-
/**
|
|
1055
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1056
|
-
* @public
|
|
1057
|
-
*/
|
|
1058
|
-
export declare class DeleteSlackUserIdentityException extends __BaseException {
|
|
1059
|
-
readonly name: "DeleteSlackUserIdentityException";
|
|
1060
|
-
readonly $fault: "server";
|
|
1061
|
-
Message?: string | undefined;
|
|
1062
|
-
/**
|
|
1063
|
-
* @internal
|
|
1064
|
-
*/
|
|
1065
|
-
constructor(opts: __ExceptionOptionType<DeleteSlackUserIdentityException, __BaseException>);
|
|
1066
|
-
}
|
|
1067
851
|
/**
|
|
1068
852
|
* @public
|
|
1069
853
|
*/
|
|
@@ -1089,19 +873,6 @@ export interface DeleteSlackUserIdentityRequest {
|
|
|
1089
873
|
*/
|
|
1090
874
|
export interface DeleteSlackUserIdentityResult {
|
|
1091
875
|
}
|
|
1092
|
-
/**
|
|
1093
|
-
* <p>There was an issue deleting your Slack workspace.</p>
|
|
1094
|
-
* @public
|
|
1095
|
-
*/
|
|
1096
|
-
export declare class DeleteSlackWorkspaceAuthorizationFault extends __BaseException {
|
|
1097
|
-
readonly name: "DeleteSlackWorkspaceAuthorizationFault";
|
|
1098
|
-
readonly $fault: "server";
|
|
1099
|
-
Message?: string | undefined;
|
|
1100
|
-
/**
|
|
1101
|
-
* @internal
|
|
1102
|
-
*/
|
|
1103
|
-
constructor(opts: __ExceptionOptionType<DeleteSlackWorkspaceAuthorizationFault, __BaseException>);
|
|
1104
|
-
}
|
|
1105
876
|
/**
|
|
1106
877
|
* @public
|
|
1107
878
|
*/
|
|
@@ -1117,19 +888,6 @@ export interface DeleteSlackWorkspaceAuthorizationRequest {
|
|
|
1117
888
|
*/
|
|
1118
889
|
export interface DeleteSlackWorkspaceAuthorizationResult {
|
|
1119
890
|
}
|
|
1120
|
-
/**
|
|
1121
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1122
|
-
* @public
|
|
1123
|
-
*/
|
|
1124
|
-
export declare class DescribeChimeWebhookConfigurationsException extends __BaseException {
|
|
1125
|
-
readonly name: "DescribeChimeWebhookConfigurationsException";
|
|
1126
|
-
readonly $fault: "server";
|
|
1127
|
-
Message?: string | undefined;
|
|
1128
|
-
/**
|
|
1129
|
-
* @internal
|
|
1130
|
-
*/
|
|
1131
|
-
constructor(opts: __ExceptionOptionType<DescribeChimeWebhookConfigurationsException, __BaseException>);
|
|
1132
|
-
}
|
|
1133
891
|
/**
|
|
1134
892
|
* @public
|
|
1135
893
|
*/
|
|
@@ -1168,19 +926,6 @@ export interface DescribeChimeWebhookConfigurationsResult {
|
|
|
1168
926
|
*/
|
|
1169
927
|
WebhookConfigurations?: ChimeWebhookConfiguration[] | undefined;
|
|
1170
928
|
}
|
|
1171
|
-
/**
|
|
1172
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1173
|
-
* @public
|
|
1174
|
-
*/
|
|
1175
|
-
export declare class DescribeSlackChannelConfigurationsException extends __BaseException {
|
|
1176
|
-
readonly name: "DescribeSlackChannelConfigurationsException";
|
|
1177
|
-
readonly $fault: "server";
|
|
1178
|
-
Message?: string | undefined;
|
|
1179
|
-
/**
|
|
1180
|
-
* @internal
|
|
1181
|
-
*/
|
|
1182
|
-
constructor(opts: __ExceptionOptionType<DescribeSlackChannelConfigurationsException, __BaseException>);
|
|
1183
|
-
}
|
|
1184
929
|
/**
|
|
1185
930
|
* @public
|
|
1186
931
|
*/
|
|
@@ -1219,19 +964,6 @@ export interface DescribeSlackChannelConfigurationsResult {
|
|
|
1219
964
|
*/
|
|
1220
965
|
SlackChannelConfigurations?: SlackChannelConfiguration[] | undefined;
|
|
1221
966
|
}
|
|
1222
|
-
/**
|
|
1223
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1224
|
-
* @public
|
|
1225
|
-
*/
|
|
1226
|
-
export declare class DescribeSlackUserIdentitiesException extends __BaseException {
|
|
1227
|
-
readonly name: "DescribeSlackUserIdentitiesException";
|
|
1228
|
-
readonly $fault: "server";
|
|
1229
|
-
Message?: string | undefined;
|
|
1230
|
-
/**
|
|
1231
|
-
* @internal
|
|
1232
|
-
*/
|
|
1233
|
-
constructor(opts: __ExceptionOptionType<DescribeSlackUserIdentitiesException, __BaseException>);
|
|
1234
|
-
}
|
|
1235
967
|
/**
|
|
1236
968
|
* @public
|
|
1237
969
|
*/
|
|
@@ -1303,19 +1035,6 @@ export interface DescribeSlackUserIdentitiesResult {
|
|
|
1303
1035
|
*/
|
|
1304
1036
|
NextToken?: string | undefined;
|
|
1305
1037
|
}
|
|
1306
|
-
/**
|
|
1307
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1308
|
-
* @public
|
|
1309
|
-
*/
|
|
1310
|
-
export declare class DescribeSlackWorkspacesException extends __BaseException {
|
|
1311
|
-
readonly name: "DescribeSlackWorkspacesException";
|
|
1312
|
-
readonly $fault: "server";
|
|
1313
|
-
Message?: string | undefined;
|
|
1314
|
-
/**
|
|
1315
|
-
* @internal
|
|
1316
|
-
*/
|
|
1317
|
-
constructor(opts: __ExceptionOptionType<DescribeSlackWorkspacesException, __BaseException>);
|
|
1318
|
-
}
|
|
1319
1038
|
/**
|
|
1320
1039
|
* @public
|
|
1321
1040
|
*/
|
|
@@ -1396,19 +1115,6 @@ export interface DisassociateFromConfigurationRequest {
|
|
|
1396
1115
|
*/
|
|
1397
1116
|
export interface DisassociateFromConfigurationResult {
|
|
1398
1117
|
}
|
|
1399
|
-
/**
|
|
1400
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1401
|
-
* @public
|
|
1402
|
-
*/
|
|
1403
|
-
export declare class GetAccountPreferencesException extends __BaseException {
|
|
1404
|
-
readonly name: "GetAccountPreferencesException";
|
|
1405
|
-
readonly $fault: "server";
|
|
1406
|
-
Message?: string | undefined;
|
|
1407
|
-
/**
|
|
1408
|
-
* @internal
|
|
1409
|
-
*/
|
|
1410
|
-
constructor(opts: __ExceptionOptionType<GetAccountPreferencesException, __BaseException>);
|
|
1411
|
-
}
|
|
1412
1118
|
/**
|
|
1413
1119
|
* @public
|
|
1414
1120
|
*/
|
|
@@ -1424,19 +1130,6 @@ export interface GetAccountPreferencesResult {
|
|
|
1424
1130
|
*/
|
|
1425
1131
|
AccountPreferences?: AccountPreferences | undefined;
|
|
1426
1132
|
}
|
|
1427
|
-
/**
|
|
1428
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1429
|
-
* @public
|
|
1430
|
-
*/
|
|
1431
|
-
export declare class GetTeamsChannelConfigurationException extends __BaseException {
|
|
1432
|
-
readonly name: "GetTeamsChannelConfigurationException";
|
|
1433
|
-
readonly $fault: "server";
|
|
1434
|
-
Message?: string | undefined;
|
|
1435
|
-
/**
|
|
1436
|
-
* @internal
|
|
1437
|
-
*/
|
|
1438
|
-
constructor(opts: __ExceptionOptionType<GetTeamsChannelConfigurationException, __BaseException>);
|
|
1439
|
-
}
|
|
1440
1133
|
/**
|
|
1441
1134
|
* @public
|
|
1442
1135
|
*/
|
|
@@ -1492,19 +1185,6 @@ export interface ListAssociationsResult {
|
|
|
1492
1185
|
*/
|
|
1493
1186
|
NextToken?: string | undefined;
|
|
1494
1187
|
}
|
|
1495
|
-
/**
|
|
1496
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1497
|
-
* @public
|
|
1498
|
-
*/
|
|
1499
|
-
export declare class ListTeamsChannelConfigurationsException extends __BaseException {
|
|
1500
|
-
readonly name: "ListTeamsChannelConfigurationsException";
|
|
1501
|
-
readonly $fault: "server";
|
|
1502
|
-
Message?: string | undefined;
|
|
1503
|
-
/**
|
|
1504
|
-
* @internal
|
|
1505
|
-
*/
|
|
1506
|
-
constructor(opts: __ExceptionOptionType<ListTeamsChannelConfigurationsException, __BaseException>);
|
|
1507
|
-
}
|
|
1508
1188
|
/**
|
|
1509
1189
|
* @public
|
|
1510
1190
|
*/
|
|
@@ -1542,19 +1222,6 @@ export interface ListTeamsChannelConfigurationsResult {
|
|
|
1542
1222
|
*/
|
|
1543
1223
|
TeamChannelConfigurations?: TeamsChannelConfiguration[] | undefined;
|
|
1544
1224
|
}
|
|
1545
|
-
/**
|
|
1546
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1547
|
-
* @public
|
|
1548
|
-
*/
|
|
1549
|
-
export declare class ListMicrosoftTeamsConfiguredTeamsException extends __BaseException {
|
|
1550
|
-
readonly name: "ListMicrosoftTeamsConfiguredTeamsException";
|
|
1551
|
-
readonly $fault: "server";
|
|
1552
|
-
Message?: string | undefined;
|
|
1553
|
-
/**
|
|
1554
|
-
* @internal
|
|
1555
|
-
*/
|
|
1556
|
-
constructor(opts: __ExceptionOptionType<ListMicrosoftTeamsConfiguredTeamsException, __BaseException>);
|
|
1557
|
-
}
|
|
1558
1225
|
/**
|
|
1559
1226
|
* @public
|
|
1560
1227
|
*/
|
|
@@ -1585,19 +1252,6 @@ export interface ListMicrosoftTeamsConfiguredTeamsResult {
|
|
|
1585
1252
|
*/
|
|
1586
1253
|
NextToken?: string | undefined;
|
|
1587
1254
|
}
|
|
1588
|
-
/**
|
|
1589
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1590
|
-
* @public
|
|
1591
|
-
*/
|
|
1592
|
-
export declare class ListMicrosoftTeamsUserIdentitiesException extends __BaseException {
|
|
1593
|
-
readonly name: "ListMicrosoftTeamsUserIdentitiesException";
|
|
1594
|
-
readonly $fault: "server";
|
|
1595
|
-
Message?: string | undefined;
|
|
1596
|
-
/**
|
|
1597
|
-
* @internal
|
|
1598
|
-
*/
|
|
1599
|
-
constructor(opts: __ExceptionOptionType<ListMicrosoftTeamsUserIdentitiesException, __BaseException>);
|
|
1600
|
-
}
|
|
1601
1255
|
/**
|
|
1602
1256
|
* @public
|
|
1603
1257
|
*/
|
|
@@ -1701,18 +1355,6 @@ export interface ListTagsForResourceResponse {
|
|
|
1701
1355
|
*/
|
|
1702
1356
|
Tags?: Tag[] | undefined;
|
|
1703
1357
|
}
|
|
1704
|
-
/**
|
|
1705
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1706
|
-
* @public
|
|
1707
|
-
*/
|
|
1708
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
1709
|
-
readonly name: "ServiceUnavailableException";
|
|
1710
|
-
readonly $fault: "client";
|
|
1711
|
-
/**
|
|
1712
|
-
* @internal
|
|
1713
|
-
*/
|
|
1714
|
-
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
1715
|
-
}
|
|
1716
1358
|
/**
|
|
1717
1359
|
* @public
|
|
1718
1360
|
*/
|
|
@@ -1733,18 +1375,6 @@ export interface TagResourceRequest {
|
|
|
1733
1375
|
*/
|
|
1734
1376
|
export interface TagResourceResponse {
|
|
1735
1377
|
}
|
|
1736
|
-
/**
|
|
1737
|
-
* <p>The supplied list of tags contains too many tags.</p>
|
|
1738
|
-
* @public
|
|
1739
|
-
*/
|
|
1740
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1741
|
-
readonly name: "TooManyTagsException";
|
|
1742
|
-
readonly $fault: "client";
|
|
1743
|
-
/**
|
|
1744
|
-
* @internal
|
|
1745
|
-
*/
|
|
1746
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1747
|
-
}
|
|
1748
1378
|
/**
|
|
1749
1379
|
* @public
|
|
1750
1380
|
*/
|
|
@@ -1765,19 +1395,6 @@ export interface UntagResourceRequest {
|
|
|
1765
1395
|
*/
|
|
1766
1396
|
export interface UntagResourceResponse {
|
|
1767
1397
|
}
|
|
1768
|
-
/**
|
|
1769
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1770
|
-
* @public
|
|
1771
|
-
*/
|
|
1772
|
-
export declare class UpdateAccountPreferencesException extends __BaseException {
|
|
1773
|
-
readonly name: "UpdateAccountPreferencesException";
|
|
1774
|
-
readonly $fault: "server";
|
|
1775
|
-
Message?: string | undefined;
|
|
1776
|
-
/**
|
|
1777
|
-
* @internal
|
|
1778
|
-
*/
|
|
1779
|
-
constructor(opts: __ExceptionOptionType<UpdateAccountPreferencesException, __BaseException>);
|
|
1780
|
-
}
|
|
1781
1398
|
/**
|
|
1782
1399
|
* @public
|
|
1783
1400
|
*/
|
|
@@ -1805,19 +1422,6 @@ export interface UpdateAccountPreferencesResult {
|
|
|
1805
1422
|
*/
|
|
1806
1423
|
AccountPreferences?: AccountPreferences | undefined;
|
|
1807
1424
|
}
|
|
1808
|
-
/**
|
|
1809
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1810
|
-
* @public
|
|
1811
|
-
*/
|
|
1812
|
-
export declare class UpdateChimeWebhookConfigurationException extends __BaseException {
|
|
1813
|
-
readonly name: "UpdateChimeWebhookConfigurationException";
|
|
1814
|
-
readonly $fault: "server";
|
|
1815
|
-
Message?: string | undefined;
|
|
1816
|
-
/**
|
|
1817
|
-
* @internal
|
|
1818
|
-
*/
|
|
1819
|
-
constructor(opts: __ExceptionOptionType<UpdateChimeWebhookConfigurationException, __BaseException>);
|
|
1820
|
-
}
|
|
1821
1425
|
/**
|
|
1822
1426
|
* @public
|
|
1823
1427
|
*/
|
|
@@ -1867,19 +1471,6 @@ export interface UpdateChimeWebhookConfigurationResult {
|
|
|
1867
1471
|
*/
|
|
1868
1472
|
WebhookConfiguration?: ChimeWebhookConfiguration | undefined;
|
|
1869
1473
|
}
|
|
1870
|
-
/**
|
|
1871
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1872
|
-
* @public
|
|
1873
|
-
*/
|
|
1874
|
-
export declare class UpdateTeamsChannelConfigurationException extends __BaseException {
|
|
1875
|
-
readonly name: "UpdateTeamsChannelConfigurationException";
|
|
1876
|
-
readonly $fault: "server";
|
|
1877
|
-
Message?: string | undefined;
|
|
1878
|
-
/**
|
|
1879
|
-
* @internal
|
|
1880
|
-
*/
|
|
1881
|
-
constructor(opts: __ExceptionOptionType<UpdateTeamsChannelConfigurationException, __BaseException>);
|
|
1882
|
-
}
|
|
1883
1474
|
/**
|
|
1884
1475
|
* @public
|
|
1885
1476
|
*/
|
|
@@ -1938,19 +1529,6 @@ export interface UpdateTeamsChannelConfigurationResult {
|
|
|
1938
1529
|
*/
|
|
1939
1530
|
ChannelConfiguration?: TeamsChannelConfiguration | undefined;
|
|
1940
1531
|
}
|
|
1941
|
-
/**
|
|
1942
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
1943
|
-
* @public
|
|
1944
|
-
*/
|
|
1945
|
-
export declare class UpdateSlackChannelConfigurationException extends __BaseException {
|
|
1946
|
-
readonly name: "UpdateSlackChannelConfigurationException";
|
|
1947
|
-
readonly $fault: "server";
|
|
1948
|
-
Message?: string | undefined;
|
|
1949
|
-
/**
|
|
1950
|
-
* @internal
|
|
1951
|
-
*/
|
|
1952
|
-
constructor(opts: __ExceptionOptionType<UpdateSlackChannelConfigurationException, __BaseException>);
|
|
1953
|
-
}
|
|
1954
1532
|
/**
|
|
1955
1533
|
* @public
|
|
1956
1534
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ChatbotExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ChatbotServiceException } from "./models/ChatbotServiceException";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const CustomActionAttachmentCriteriaOperator: {
|
|
2
|
+
readonly EQUALS: "EQUALS";
|
|
3
|
+
readonly HAS_VALUE: "HAS_VALUE";
|
|
4
|
+
};
|
|
5
|
+
export type CustomActionAttachmentCriteriaOperator =
|
|
6
|
+
(typeof CustomActionAttachmentCriteriaOperator)[keyof typeof CustomActionAttachmentCriteriaOperator];
|