@aws-sdk/client-ivschat 3.936.0 → 3.940.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 CHANGED
@@ -1039,6 +1039,39 @@ const paginateListLoggingConfigurations = core.createPaginator(IvschatClient, Li
1039
1039
 
1040
1040
  const paginateListRooms = core.createPaginator(IvschatClient, ListRoomsCommand, "nextToken", "nextToken", "maxResults");
1041
1041
 
1042
+ const ChatTokenCapability = {
1043
+ DELETE_MESSAGE: "DELETE_MESSAGE",
1044
+ DISCONNECT_USER: "DISCONNECT_USER",
1045
+ SEND_MESSAGE: "SEND_MESSAGE",
1046
+ };
1047
+ const ResourceType = {
1048
+ ROOM: "ROOM",
1049
+ };
1050
+ const ValidationExceptionReason = {
1051
+ FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
1052
+ OTHER: "OTHER",
1053
+ UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
1054
+ };
1055
+ const CreateLoggingConfigurationState = {
1056
+ ACTIVE: "ACTIVE",
1057
+ };
1058
+ const FallbackResult = {
1059
+ ALLOW: "ALLOW",
1060
+ DENY: "DENY",
1061
+ };
1062
+ const LoggingConfigurationState = {
1063
+ ACTIVE: "ACTIVE",
1064
+ CREATE_FAILED: "CREATE_FAILED",
1065
+ CREATING: "CREATING",
1066
+ DELETE_FAILED: "DELETE_FAILED",
1067
+ DELETING: "DELETING",
1068
+ UPDATE_FAILED: "UPDATE_FAILED",
1069
+ UPDATING: "UPDATING",
1070
+ };
1071
+ const UpdateLoggingConfigurationState = {
1072
+ ACTIVE: "ACTIVE",
1073
+ };
1074
+
1042
1075
  Object.defineProperty(exports, "$Command", {
1043
1076
  enumerable: true,
1044
1077
  get: function () { return smithyClient.Command; }
@@ -1048,14 +1081,17 @@ Object.defineProperty(exports, "__Client", {
1048
1081
  get: function () { return smithyClient.Client; }
1049
1082
  });
1050
1083
  exports.AccessDeniedException = AccessDeniedException$1;
1084
+ exports.ChatTokenCapability = ChatTokenCapability;
1051
1085
  exports.ConflictException = ConflictException$1;
1052
1086
  exports.CreateChatTokenCommand = CreateChatTokenCommand;
1053
1087
  exports.CreateLoggingConfigurationCommand = CreateLoggingConfigurationCommand;
1088
+ exports.CreateLoggingConfigurationState = CreateLoggingConfigurationState;
1054
1089
  exports.CreateRoomCommand = CreateRoomCommand;
1055
1090
  exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
1056
1091
  exports.DeleteMessageCommand = DeleteMessageCommand;
1057
1092
  exports.DeleteRoomCommand = DeleteRoomCommand;
1058
1093
  exports.DisconnectUserCommand = DisconnectUserCommand;
1094
+ exports.FallbackResult = FallbackResult;
1059
1095
  exports.GetLoggingConfigurationCommand = GetLoggingConfigurationCommand;
1060
1096
  exports.GetRoomCommand = GetRoomCommand;
1061
1097
  exports.InternalServerException = InternalServerException$1;
@@ -1065,15 +1101,19 @@ exports.IvschatServiceException = IvschatServiceException$1;
1065
1101
  exports.ListLoggingConfigurationsCommand = ListLoggingConfigurationsCommand;
1066
1102
  exports.ListRoomsCommand = ListRoomsCommand;
1067
1103
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1104
+ exports.LoggingConfigurationState = LoggingConfigurationState;
1068
1105
  exports.PendingVerification = PendingVerification$1;
1069
1106
  exports.ResourceNotFoundException = ResourceNotFoundException$1;
1107
+ exports.ResourceType = ResourceType;
1070
1108
  exports.SendEventCommand = SendEventCommand;
1071
1109
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1072
1110
  exports.TagResourceCommand = TagResourceCommand;
1073
1111
  exports.ThrottlingException = ThrottlingException$1;
1074
1112
  exports.UntagResourceCommand = UntagResourceCommand;
1075
1113
  exports.UpdateLoggingConfigurationCommand = UpdateLoggingConfigurationCommand;
1114
+ exports.UpdateLoggingConfigurationState = UpdateLoggingConfigurationState;
1076
1115
  exports.UpdateRoomCommand = UpdateRoomCommand;
1077
1116
  exports.ValidationException = ValidationException$1;
1117
+ exports.ValidationExceptionReason = ValidationExceptionReason;
1078
1118
  exports.paginateListLoggingConfigurations = paginateListLoggingConfigurations;
1079
1119
  exports.paginateListRooms = paginateListRooms;
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./IvschatClient";
2
2
  export * from "./Ivschat";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
+ export * from "./models/enums";
5
6
  export * from "./models/errors";
6
7
  export { IvschatServiceException } from "./models/IvschatServiceException";
@@ -0,0 +1,32 @@
1
+ export const ChatTokenCapability = {
2
+ DELETE_MESSAGE: "DELETE_MESSAGE",
3
+ DISCONNECT_USER: "DISCONNECT_USER",
4
+ SEND_MESSAGE: "SEND_MESSAGE",
5
+ };
6
+ export const ResourceType = {
7
+ ROOM: "ROOM",
8
+ };
9
+ export const ValidationExceptionReason = {
10
+ FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
11
+ OTHER: "OTHER",
12
+ UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
13
+ };
14
+ export const CreateLoggingConfigurationState = {
15
+ ACTIVE: "ACTIVE",
16
+ };
17
+ export const FallbackResult = {
18
+ ALLOW: "ALLOW",
19
+ DENY: "DENY",
20
+ };
21
+ export const LoggingConfigurationState = {
22
+ ACTIVE: "ACTIVE",
23
+ CREATE_FAILED: "CREATE_FAILED",
24
+ CREATING: "CREATING",
25
+ DELETE_FAILED: "DELETE_FAILED",
26
+ DELETING: "DELETING",
27
+ UPDATE_FAILED: "UPDATE_FAILED",
28
+ UPDATING: "UPDATING",
29
+ };
30
+ export const UpdateLoggingConfigurationState = {
31
+ ACTIVE: "ACTIVE",
32
+ };
@@ -1,32 +1 @@
1
- export const ChatTokenCapability = {
2
- DELETE_MESSAGE: "DELETE_MESSAGE",
3
- DISCONNECT_USER: "DISCONNECT_USER",
4
- SEND_MESSAGE: "SEND_MESSAGE",
5
- };
6
- export const ResourceType = {
7
- ROOM: "ROOM",
8
- };
9
- export const ValidationExceptionReason = {
10
- FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
11
- OTHER: "OTHER",
12
- UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
13
- };
14
- export const CreateLoggingConfigurationState = {
15
- ACTIVE: "ACTIVE",
16
- };
17
- export const FallbackResult = {
18
- ALLOW: "ALLOW",
19
- DENY: "DENY",
20
- };
21
- export const LoggingConfigurationState = {
22
- ACTIVE: "ACTIVE",
23
- CREATE_FAILED: "CREATE_FAILED",
24
- CREATING: "CREATING",
25
- DELETE_FAILED: "DELETE_FAILED",
26
- DELETING: "DELETING",
27
- UPDATE_FAILED: "UPDATE_FAILED",
28
- UPDATING: "UPDATING",
29
- };
30
- export const UpdateLoggingConfigurationState = {
31
- ACTIVE: "ACTIVE",
32
- };
1
+ export {};
@@ -115,6 +115,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
115
115
  export type { IvschatExtensionConfiguration } from "./extensionConfiguration";
116
116
  export * from "./commands";
117
117
  export * from "./pagination";
118
+ export * from "./models/enums";
118
119
  export * from "./models/errors";
119
120
  export type * from "./models/models_0";
120
121
  export { IvschatServiceException } from "./models/IvschatServiceException";
@@ -0,0 +1,88 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ChatTokenCapability: {
6
+ readonly DELETE_MESSAGE: "DELETE_MESSAGE";
7
+ readonly DISCONNECT_USER: "DISCONNECT_USER";
8
+ readonly SEND_MESSAGE: "SEND_MESSAGE";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type ChatTokenCapability = (typeof ChatTokenCapability)[keyof typeof ChatTokenCapability];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const ResourceType: {
19
+ readonly ROOM: "ROOM";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const ValidationExceptionReason: {
30
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
31
+ readonly OTHER: "OTHER";
32
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const CreateLoggingConfigurationState: {
43
+ readonly ACTIVE: "ACTIVE";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type CreateLoggingConfigurationState = (typeof CreateLoggingConfigurationState)[keyof typeof CreateLoggingConfigurationState];
49
+ /**
50
+ * @public
51
+ * @enum
52
+ */
53
+ export declare const FallbackResult: {
54
+ readonly ALLOW: "ALLOW";
55
+ readonly DENY: "DENY";
56
+ };
57
+ /**
58
+ * @public
59
+ */
60
+ export type FallbackResult = (typeof FallbackResult)[keyof typeof FallbackResult];
61
+ /**
62
+ * @public
63
+ * @enum
64
+ */
65
+ export declare const LoggingConfigurationState: {
66
+ readonly ACTIVE: "ACTIVE";
67
+ readonly CREATE_FAILED: "CREATE_FAILED";
68
+ readonly CREATING: "CREATING";
69
+ readonly DELETE_FAILED: "DELETE_FAILED";
70
+ readonly DELETING: "DELETING";
71
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
72
+ readonly UPDATING: "UPDATING";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type LoggingConfigurationState = (typeof LoggingConfigurationState)[keyof typeof LoggingConfigurationState];
78
+ /**
79
+ * @public
80
+ * @enum
81
+ */
82
+ export declare const UpdateLoggingConfigurationState: {
83
+ readonly ACTIVE: "ACTIVE";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type UpdateLoggingConfigurationState = (typeof UpdateLoggingConfigurationState)[keyof typeof UpdateLoggingConfigurationState];
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ResourceType, ValidationExceptionReason } from "./enums";
2
3
  import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
3
- import { ResourceType, ValidationExceptionField, ValidationExceptionReason } from "./models_0";
4
+ import { ValidationExceptionField } from "./models_0";
4
5
  /**
5
6
  * <p/>
6
7
  * @public
@@ -1,16 +1,4 @@
1
- /**
2
- * @public
3
- * @enum
4
- */
5
- export declare const ChatTokenCapability: {
6
- readonly DELETE_MESSAGE: "DELETE_MESSAGE";
7
- readonly DISCONNECT_USER: "DISCONNECT_USER";
8
- readonly SEND_MESSAGE: "SEND_MESSAGE";
9
- };
10
- /**
11
- * @public
12
- */
13
- export type ChatTokenCapability = (typeof ChatTokenCapability)[keyof typeof ChatTokenCapability];
1
+ import { ChatTokenCapability, CreateLoggingConfigurationState, FallbackResult, LoggingConfigurationState, UpdateLoggingConfigurationState } from "./enums";
14
2
  /**
15
3
  * @public
16
4
  */
@@ -70,17 +58,6 @@ export interface CreateChatTokenResponse {
70
58
  */
71
59
  sessionExpirationTime?: Date | undefined;
72
60
  }
73
- /**
74
- * @public
75
- * @enum
76
- */
77
- export declare const ResourceType: {
78
- readonly ROOM: "ROOM";
79
- };
80
- /**
81
- * @public
82
- */
83
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
84
61
  /**
85
62
  * <p>This object is used in the ValidationException error.</p>
86
63
  * @public
@@ -97,19 +74,6 @@ export interface ValidationExceptionField {
97
74
  */
98
75
  message: string | undefined;
99
76
  }
100
- /**
101
- * @public
102
- * @enum
103
- */
104
- export declare const ValidationExceptionReason: {
105
- readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
106
- readonly OTHER: "OTHER";
107
- readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
108
- };
109
- /**
110
- * @public
111
- */
112
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
113
77
  /**
114
78
  * <p>Specifies a CloudWatch Logs location where chat logs will be stored.</p>
115
79
  * @public
@@ -232,17 +196,6 @@ export interface CreateLoggingConfigurationRequest {
232
196
  */
233
197
  tags?: Record<string, string> | undefined;
234
198
  }
235
- /**
236
- * @public
237
- * @enum
238
- */
239
- export declare const CreateLoggingConfigurationState: {
240
- readonly ACTIVE: "ACTIVE";
241
- };
242
- /**
243
- * @public
244
- */
245
- export type CreateLoggingConfigurationState = (typeof CreateLoggingConfigurationState)[keyof typeof CreateLoggingConfigurationState];
246
199
  /**
247
200
  * @public
248
201
  */
@@ -296,18 +249,6 @@ export interface CreateLoggingConfigurationResponse {
296
249
  */
297
250
  tags?: Record<string, string> | undefined;
298
251
  }
299
- /**
300
- * @public
301
- * @enum
302
- */
303
- export declare const FallbackResult: {
304
- readonly ALLOW: "ALLOW";
305
- readonly DENY: "DENY";
306
- };
307
- /**
308
- * @public
309
- */
310
- export type FallbackResult = (typeof FallbackResult)[keyof typeof FallbackResult];
311
252
  /**
312
253
  * <p>Configuration information for optional message review.</p>
313
254
  * @public
@@ -520,23 +461,6 @@ export interface GetLoggingConfigurationRequest {
520
461
  */
521
462
  identifier: string | undefined;
522
463
  }
523
- /**
524
- * @public
525
- * @enum
526
- */
527
- export declare const LoggingConfigurationState: {
528
- readonly ACTIVE: "ACTIVE";
529
- readonly CREATE_FAILED: "CREATE_FAILED";
530
- readonly CREATING: "CREATING";
531
- readonly DELETE_FAILED: "DELETE_FAILED";
532
- readonly DELETING: "DELETING";
533
- readonly UPDATE_FAILED: "UPDATE_FAILED";
534
- readonly UPDATING: "UPDATING";
535
- };
536
- /**
537
- * @public
538
- */
539
- export type LoggingConfigurationState = (typeof LoggingConfigurationState)[keyof typeof LoggingConfigurationState];
540
464
  /**
541
465
  * @public
542
466
  */
@@ -970,17 +894,6 @@ export interface UpdateLoggingConfigurationRequest {
970
894
  */
971
895
  destinationConfiguration?: DestinationConfiguration | undefined;
972
896
  }
973
- /**
974
- * @public
975
- * @enum
976
- */
977
- export declare const UpdateLoggingConfigurationState: {
978
- readonly ACTIVE: "ACTIVE";
979
- };
980
- /**
981
- * @public
982
- */
983
- export type UpdateLoggingConfigurationState = (typeof UpdateLoggingConfigurationState)[keyof typeof UpdateLoggingConfigurationState];
984
897
  /**
985
898
  * @public
986
899
  */
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { IvschatExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
+ export * from "./models/enums";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
10
11
  export { IvschatServiceException } from "./models/IvschatServiceException";
@@ -0,0 +1,45 @@
1
+ export declare const ChatTokenCapability: {
2
+ readonly DELETE_MESSAGE: "DELETE_MESSAGE";
3
+ readonly DISCONNECT_USER: "DISCONNECT_USER";
4
+ readonly SEND_MESSAGE: "SEND_MESSAGE";
5
+ };
6
+ export type ChatTokenCapability =
7
+ (typeof ChatTokenCapability)[keyof typeof ChatTokenCapability];
8
+ export declare const ResourceType: {
9
+ readonly ROOM: "ROOM";
10
+ };
11
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
12
+ export declare const ValidationExceptionReason: {
13
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
14
+ readonly OTHER: "OTHER";
15
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
16
+ };
17
+ export type ValidationExceptionReason =
18
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
19
+ export declare const CreateLoggingConfigurationState: {
20
+ readonly ACTIVE: "ACTIVE";
21
+ };
22
+ export type CreateLoggingConfigurationState =
23
+ (typeof CreateLoggingConfigurationState)[keyof typeof CreateLoggingConfigurationState];
24
+ export declare const FallbackResult: {
25
+ readonly ALLOW: "ALLOW";
26
+ readonly DENY: "DENY";
27
+ };
28
+ export type FallbackResult =
29
+ (typeof FallbackResult)[keyof typeof FallbackResult];
30
+ export declare const LoggingConfigurationState: {
31
+ readonly ACTIVE: "ACTIVE";
32
+ readonly CREATE_FAILED: "CREATE_FAILED";
33
+ readonly CREATING: "CREATING";
34
+ readonly DELETE_FAILED: "DELETE_FAILED";
35
+ readonly DELETING: "DELETING";
36
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
37
+ readonly UPDATING: "UPDATING";
38
+ };
39
+ export type LoggingConfigurationState =
40
+ (typeof LoggingConfigurationState)[keyof typeof LoggingConfigurationState];
41
+ export declare const UpdateLoggingConfigurationState: {
42
+ readonly ACTIVE: "ACTIVE";
43
+ };
44
+ export type UpdateLoggingConfigurationState =
45
+ (typeof UpdateLoggingConfigurationState)[keyof typeof UpdateLoggingConfigurationState];
@@ -1,10 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ResourceType, ValidationExceptionReason } from "./enums";
2
3
  import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
3
- import {
4
- ResourceType,
5
- ValidationExceptionField,
6
- ValidationExceptionReason,
7
- } from "./models_0";
4
+ import { ValidationExceptionField } from "./models_0";
8
5
  export declare class AccessDeniedException extends __BaseException {
9
6
  readonly name: "AccessDeniedException";
10
7
  readonly $fault: "client";
@@ -1,10 +1,10 @@
1
- export declare const ChatTokenCapability: {
2
- readonly DELETE_MESSAGE: "DELETE_MESSAGE";
3
- readonly DISCONNECT_USER: "DISCONNECT_USER";
4
- readonly SEND_MESSAGE: "SEND_MESSAGE";
5
- };
6
- export type ChatTokenCapability =
7
- (typeof ChatTokenCapability)[keyof typeof ChatTokenCapability];
1
+ import {
2
+ ChatTokenCapability,
3
+ CreateLoggingConfigurationState,
4
+ FallbackResult,
5
+ LoggingConfigurationState,
6
+ UpdateLoggingConfigurationState,
7
+ } from "./enums";
8
8
  export interface CreateChatTokenRequest {
9
9
  roomIdentifier: string | undefined;
10
10
  userId: string | undefined;
@@ -17,21 +17,10 @@ export interface CreateChatTokenResponse {
17
17
  tokenExpirationTime?: Date | undefined;
18
18
  sessionExpirationTime?: Date | undefined;
19
19
  }
20
- export declare const ResourceType: {
21
- readonly ROOM: "ROOM";
22
- };
23
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
24
20
  export interface ValidationExceptionField {
25
21
  name: string | undefined;
26
22
  message: string | undefined;
27
23
  }
28
- export declare const ValidationExceptionReason: {
29
- readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
30
- readonly OTHER: "OTHER";
31
- readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
32
- };
33
- export type ValidationExceptionReason =
34
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
35
24
  export interface CloudWatchLogsDestinationConfiguration {
36
25
  logGroupName: string | undefined;
37
26
  }
@@ -83,11 +72,6 @@ export interface CreateLoggingConfigurationRequest {
83
72
  destinationConfiguration: DestinationConfiguration | undefined;
84
73
  tags?: Record<string, string> | undefined;
85
74
  }
86
- export declare const CreateLoggingConfigurationState: {
87
- readonly ACTIVE: "ACTIVE";
88
- };
89
- export type CreateLoggingConfigurationState =
90
- (typeof CreateLoggingConfigurationState)[keyof typeof CreateLoggingConfigurationState];
91
75
  export interface CreateLoggingConfigurationResponse {
92
76
  arn?: string | undefined;
93
77
  id?: string | undefined;
@@ -98,12 +82,6 @@ export interface CreateLoggingConfigurationResponse {
98
82
  state?: CreateLoggingConfigurationState | undefined;
99
83
  tags?: Record<string, string> | undefined;
100
84
  }
101
- export declare const FallbackResult: {
102
- readonly ALLOW: "ALLOW";
103
- readonly DENY: "DENY";
104
- };
105
- export type FallbackResult =
106
- (typeof FallbackResult)[keyof typeof FallbackResult];
107
85
  export interface MessageReviewHandler {
108
86
  uri?: string | undefined;
109
87
  fallbackResult?: FallbackResult | undefined;
@@ -151,17 +129,6 @@ export interface DisconnectUserResponse {}
151
129
  export interface GetLoggingConfigurationRequest {
152
130
  identifier: string | undefined;
153
131
  }
154
- export declare const LoggingConfigurationState: {
155
- readonly ACTIVE: "ACTIVE";
156
- readonly CREATE_FAILED: "CREATE_FAILED";
157
- readonly CREATING: "CREATING";
158
- readonly DELETE_FAILED: "DELETE_FAILED";
159
- readonly DELETING: "DELETING";
160
- readonly UPDATE_FAILED: "UPDATE_FAILED";
161
- readonly UPDATING: "UPDATING";
162
- };
163
- export type LoggingConfigurationState =
164
- (typeof LoggingConfigurationState)[keyof typeof LoggingConfigurationState];
165
132
  export interface GetLoggingConfigurationResponse {
166
133
  arn?: string | undefined;
167
134
  id?: string | undefined;
@@ -255,11 +222,6 @@ export interface UpdateLoggingConfigurationRequest {
255
222
  name?: string | undefined;
256
223
  destinationConfiguration?: DestinationConfiguration | undefined;
257
224
  }
258
- export declare const UpdateLoggingConfigurationState: {
259
- readonly ACTIVE: "ACTIVE";
260
- };
261
- export type UpdateLoggingConfigurationState =
262
- (typeof UpdateLoggingConfigurationState)[keyof typeof UpdateLoggingConfigurationState];
263
225
  export interface UpdateLoggingConfigurationResponse {
264
226
  arn?: string | undefined;
265
227
  id?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ivschat",
3
3
  "description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
4
- "version": "3.936.0",
4
+ "version": "3.940.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ivschat",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.936.0",
24
- "@aws-sdk/credential-provider-node": "3.936.0",
23
+ "@aws-sdk/core": "3.940.0",
24
+ "@aws-sdk/credential-provider-node": "3.940.0",
25
25
  "@aws-sdk/middleware-host-header": "3.936.0",
26
26
  "@aws-sdk/middleware-logger": "3.936.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.936.0",
28
- "@aws-sdk/middleware-user-agent": "3.936.0",
28
+ "@aws-sdk/middleware-user-agent": "3.940.0",
29
29
  "@aws-sdk/region-config-resolver": "3.936.0",
30
30
  "@aws-sdk/types": "3.936.0",
31
31
  "@aws-sdk/util-endpoints": "3.936.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.936.0",
33
- "@aws-sdk/util-user-agent-node": "3.936.0",
33
+ "@aws-sdk/util-user-agent-node": "3.940.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
35
  "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",