@aws-sdk/client-chime-sdk-messaging 3.1074.0 → 3.1076.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
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultChimeSDKMessagingHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateChannelFlow$, BatchCreateChannelMembership$, ChannelFlowCallback$, CreateChannelBan$, CreateChannel$, CreateChannelFlow$, CreateChannelMembership$, CreateChannelModerator$, DeleteChannelBan$, DeleteChannel$, DeleteChannelFlow$, DeleteChannelMembership$, DeleteChannelMessage$, DeleteChannelModerator$, DeleteMessagingStreamingConfigurations$, DescribeChannelBan$, DescribeChannel$, DescribeChannelFlow$, DescribeChannelMembership$, DescribeChannelMembershipForAppInstanceUser$, DescribeChannelModeratedByAppInstanceUser$, DescribeChannelModerator$, DisassociateChannelFlow$, GetChannelMembershipPreferences$, GetChannelMessage$, GetChannelMessageStatus$, GetMessagingSessionEndpoint$, GetMessagingStreamingConfigurations$, ListChannelBans$, ListChannelFlows$, ListChannelMemberships$, ListChannelMembershipsForAppInstanceUser$, ListChannelMessages$, ListChannelModerators$, ListChannelsAssociatedWithChannelFlow$, ListChannels$, ListChannelsModeratedByAppInstanceUser$, ListSubChannels$, ListTagsForResource$, PutChannelExpirationSettings$, PutChannelMembershipPreferences$, PutMessagingStreamingConfigurations$, RedactChannelMessage$, SearchChannels$, SendChannelMessage$, TagResource$, UntagResource$, UpdateChannel$, UpdateChannelFlow$, UpdateChannelMessage$, UpdateChannelReadMarker$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ChimeSDKMessagingServiceException } = require("./models/ChimeSDKMessagingServiceException");
18
- exports.ChimeSDKMessagingServiceException = ChimeSDKMessagingServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultChimeSDKMessagingHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "chime",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultChimeSDKMessagingHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1559 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://messaging-chime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://messaging-chime-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://messaging-chime.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://messaging-chime.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class ChimeSDKMessagingServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, ChimeSDKMessagingServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class BadRequestException extends ChimeSDKMessagingServiceException {
140
+ name = "BadRequestException";
141
+ $fault = "client";
142
+ Code;
143
+ Message;
144
+ constructor(opts) {
145
+ super({
146
+ name: "BadRequestException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, BadRequestException.prototype);
151
+ this.Code = opts.Code;
152
+ this.Message = opts.Message;
153
+ }
154
+ }
155
+ class ConflictException extends ChimeSDKMessagingServiceException {
156
+ name = "ConflictException";
157
+ $fault = "client";
158
+ Code;
159
+ Message;
160
+ constructor(opts) {
161
+ super({
162
+ name: "ConflictException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, ConflictException.prototype);
167
+ this.Code = opts.Code;
168
+ this.Message = opts.Message;
169
+ }
170
+ }
171
+ class ForbiddenException extends ChimeSDKMessagingServiceException {
172
+ name = "ForbiddenException";
173
+ $fault = "client";
174
+ Code;
175
+ Message;
176
+ constructor(opts) {
177
+ super({
178
+ name: "ForbiddenException",
179
+ $fault: "client",
180
+ ...opts,
181
+ });
182
+ Object.setPrototypeOf(this, ForbiddenException.prototype);
183
+ this.Code = opts.Code;
184
+ this.Message = opts.Message;
185
+ }
186
+ }
187
+ class NotFoundException extends ChimeSDKMessagingServiceException {
188
+ name = "NotFoundException";
189
+ $fault = "client";
190
+ Code;
191
+ Message;
192
+ constructor(opts) {
193
+ super({
194
+ name: "NotFoundException",
195
+ $fault: "client",
196
+ ...opts,
197
+ });
198
+ Object.setPrototypeOf(this, NotFoundException.prototype);
199
+ this.Code = opts.Code;
200
+ this.Message = opts.Message;
201
+ }
202
+ }
203
+ class ServiceFailureException extends ChimeSDKMessagingServiceException {
204
+ name = "ServiceFailureException";
205
+ $fault = "server";
206
+ Code;
207
+ Message;
208
+ constructor(opts) {
209
+ super({
210
+ name: "ServiceFailureException",
211
+ $fault: "server",
212
+ ...opts,
213
+ });
214
+ Object.setPrototypeOf(this, ServiceFailureException.prototype);
215
+ this.Code = opts.Code;
216
+ this.Message = opts.Message;
217
+ }
218
+ }
219
+ class ServiceUnavailableException extends ChimeSDKMessagingServiceException {
220
+ name = "ServiceUnavailableException";
221
+ $fault = "server";
222
+ Code;
223
+ Message;
224
+ constructor(opts) {
225
+ super({
226
+ name: "ServiceUnavailableException",
227
+ $fault: "server",
228
+ ...opts,
229
+ });
230
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
231
+ this.Code = opts.Code;
232
+ this.Message = opts.Message;
233
+ }
234
+ }
235
+ class ThrottledClientException extends ChimeSDKMessagingServiceException {
236
+ name = "ThrottledClientException";
237
+ $fault = "client";
238
+ Code;
239
+ Message;
240
+ constructor(opts) {
241
+ super({
242
+ name: "ThrottledClientException",
243
+ $fault: "client",
244
+ ...opts,
245
+ });
246
+ Object.setPrototypeOf(this, ThrottledClientException.prototype);
247
+ this.Code = opts.Code;
248
+ this.Message = opts.Message;
249
+ }
250
+ }
251
+ class UnauthorizedClientException extends ChimeSDKMessagingServiceException {
252
+ name = "UnauthorizedClientException";
253
+ $fault = "client";
254
+ Code;
255
+ Message;
256
+ constructor(opts) {
257
+ super({
258
+ name: "UnauthorizedClientException",
259
+ $fault: "client",
260
+ ...opts,
261
+ });
262
+ Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
263
+ this.Code = opts.Code;
264
+ this.Message = opts.Message;
265
+ }
266
+ }
267
+ class ResourceLimitExceededException extends ChimeSDKMessagingServiceException {
268
+ name = "ResourceLimitExceededException";
269
+ $fault = "client";
270
+ Code;
271
+ Message;
272
+ constructor(opts) {
273
+ super({
274
+ name: "ResourceLimitExceededException",
275
+ $fault: "client",
276
+ ...opts,
277
+ });
278
+ Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
279
+ this.Code = opts.Code;
280
+ this.Message = opts.Message;
281
+ }
282
+ }
283
+
284
+ const _A = "Arn";
285
+ const _ACF = "AssociateChannelFlow";
286
+ const _ACFR = "AssociateChannelFlowRequest";
287
+ const _AIA = "AppInstanceArn";
288
+ const _AIUA = "AppInstanceUserArn";
289
+ const _AIUMS = "AppInstanceUserMembershipSummary";
290
+ const _AN = "AllowNotifications";
291
+ const _B = "Body";
292
+ const _BCCM = "BatchCreateChannelMembership";
293
+ const _BCCME = "BatchCreateChannelMembershipError";
294
+ const _BCCMEa = "BatchCreateChannelMembershipErrors";
295
+ const _BCCMR = "BatchCreateChannelMembershipRequest";
296
+ const _BCCMRa = "BatchCreateChannelMembershipResponse";
297
+ const _BCM = "BatchChannelMemberships";
298
+ const _BRE = "BadRequestException";
299
+ const _C = "Code";
300
+ const _CA = "ChannelArn";
301
+ const _CAWFS = "ChannelAssociatedWithFlowSummary";
302
+ const _CAWFSL = "ChannelAssociatedWithFlowSummaryList";
303
+ const _CB = "ChimeBearer";
304
+ const _CBS = "ChannelBanSummary";
305
+ const _CBSL = "ChannelBanSummaryList";
306
+ const _CBh = "ChannelBan";
307
+ const _CBha = "ChannelBans";
308
+ const _CBr = "CreatedBy";
309
+ const _CC = "CreateChannel";
310
+ const _CCB = "CreateChannelBan";
311
+ const _CCBR = "CreateChannelBanRequest";
312
+ const _CCBRr = "CreateChannelBanResponse";
313
+ const _CCF = "CreateChannelFlow";
314
+ const _CCFR = "CreateChannelFlowRequest";
315
+ const _CCFRr = "CreateChannelFlowResponse";
316
+ const _CCM = "CreateChannelMembership";
317
+ const _CCMR = "CreateChannelMembershipRequest";
318
+ const _CCMRr = "CreateChannelMembershipResponse";
319
+ const _CCMRre = "CreateChannelModeratorRequest";
320
+ const _CCMRrea = "CreateChannelModeratorResponse";
321
+ const _CCMr = "CreateChannelModerator";
322
+ const _CCR = "CreateChannelRequest";
323
+ const _CCRr = "CreateChannelResponse";
324
+ const _CE = "ConflictException";
325
+ const _CF = "ChannelFlow";
326
+ const _CFA = "ChannelFlowArn";
327
+ const _CFC = "ChannelFlowCallback";
328
+ const _CFCR = "ChannelFlowCallbackRequest";
329
+ const _CFCRh = "ChannelFlowCallbackResponse";
330
+ const _CFS = "ChannelFlowSummary";
331
+ const _CFSL = "ChannelFlowSummaryList";
332
+ const _CFh = "ChannelFlows";
333
+ const _CI = "ChannelId";
334
+ const _CIa = "CallbackId";
335
+ const _CM = "ChannelMessage";
336
+ const _CMA = "ChannelModeratorArn";
337
+ const _CMBAIUS = "ChannelModeratedByAppInstanceUserSummary";
338
+ const _CMBAIUSL = "ChannelModeratedByAppInstanceUserSummaryList";
339
+ const _CMC = "ChannelMessageCallback";
340
+ const _CMFAIUS = "ChannelMembershipForAppInstanceUserSummary";
341
+ const _CMFAIUSL = "ChannelMembershipForAppInstanceUserSummaryList";
342
+ const _CMP = "ChannelMembershipPreferences";
343
+ const _CMS = "ChannelMembershipSummary";
344
+ const _CMSL = "ChannelMembershipSummaryList";
345
+ const _CMSLh = "ChannelMessageSummaryList";
346
+ const _CMSLha = "ChannelModeratorSummaryList";
347
+ const _CMSS = "ChannelMessageStatusStructure";
348
+ const _CMSh = "ChannelMessageSummary";
349
+ const _CMSha = "ChannelModeratorSummary";
350
+ const _CMh = "ChannelMembership";
351
+ const _CMha = "ChannelModerator";
352
+ const _CMhan = "ChannelMemberships";
353
+ const _CMhann = "ChannelMessages";
354
+ const _CMhanne = "ChannelModerators";
355
+ const _CRT = "ClientRequestToken";
356
+ const _CS = "ChannelSummary";
357
+ const _CSL = "ChannelSummaryList";
358
+ const _CT = "ContentType";
359
+ const _CTr = "CreatedTimestamp";
360
+ const _Ch = "Channel";
361
+ const _Cha = "Channels";
362
+ const _Co = "Content";
363
+ const _Con = "Configuration";
364
+ const _D = "Detail";
365
+ const _DC = "DeleteChannel";
366
+ const _DCB = "DeleteChannelBan";
367
+ const _DCBR = "DeleteChannelBanRequest";
368
+ const _DCBRe = "DescribeChannelBanRequest";
369
+ const _DCBRes = "DescribeChannelBanResponse";
370
+ const _DCBe = "DescribeChannelBan";
371
+ const _DCF = "DeleteChannelFlow";
372
+ const _DCFR = "DeleteChannelFlowRequest";
373
+ const _DCFRe = "DescribeChannelFlowRequest";
374
+ const _DCFRes = "DescribeChannelFlowResponse";
375
+ const _DCFRi = "DisassociateChannelFlowRequest";
376
+ const _DCFe = "DescribeChannelFlow";
377
+ const _DCFi = "DisassociateChannelFlow";
378
+ const _DCM = "DeleteChannelMembership";
379
+ const _DCMBAIU = "DescribeChannelModeratedByAppInstanceUser";
380
+ const _DCMBAIUR = "DescribeChannelModeratedByAppInstanceUserRequest";
381
+ const _DCMBAIURe = "DescribeChannelModeratedByAppInstanceUserResponse";
382
+ const _DCMFAIU = "DescribeChannelMembershipForAppInstanceUser";
383
+ const _DCMFAIUR = "DescribeChannelMembershipForAppInstanceUserRequest";
384
+ const _DCMFAIURe = "DescribeChannelMembershipForAppInstanceUserResponse";
385
+ const _DCMR = "DeleteChannelMembershipRequest";
386
+ const _DCMRe = "DeleteChannelMessageRequest";
387
+ const _DCMRel = "DeleteChannelModeratorRequest";
388
+ const _DCMRes = "DescribeChannelMembershipRequest";
389
+ const _DCMResc = "DescribeChannelMembershipResponse";
390
+ const _DCMRescr = "DescribeChannelModeratorRequest";
391
+ const _DCMRescri = "DescribeChannelModeratorResponse";
392
+ const _DCMe = "DeleteChannelMessage";
393
+ const _DCMel = "DeleteChannelModerator";
394
+ const _DCMes = "DescribeChannelMembership";
395
+ const _DCMesc = "DescribeChannelModerator";
396
+ const _DCR = "DeleteChannelRequest";
397
+ const _DCRe = "DescribeChannelRequest";
398
+ const _DCRes = "DescribeChannelResponse";
399
+ const _DCe = "DescribeChannel";
400
+ const _DMSC = "DeleteMessagingStreamingConfigurations";
401
+ const _DMSCR = "DeleteMessagingStreamingConfigurationsRequest";
402
+ const _DR = "DeleteResource";
403
+ const _DT = "DataType";
404
+ const _E = "Errors";
405
+ const _EC = "ErrorCode";
406
+ const _ECC = "ElasticChannelConfiguration";
407
+ const _ECx = "ExpirationCriterion";
408
+ const _ED = "ExpirationDays";
409
+ const _EM = "ErrorMessage";
410
+ const _EO = "ExecutionOrder";
411
+ const _ES = "ExpirationSettings";
412
+ const _En = "Endpoint";
413
+ const _F = "Fields";
414
+ const _FA = "FallbackAction";
415
+ const _FE = "ForbiddenException";
416
+ const _FR = "FilterRule";
417
+ const _GCM = "GetChannelMessage";
418
+ const _GCMP = "GetChannelMembershipPreferences";
419
+ const _GCMPR = "GetChannelMembershipPreferencesRequest";
420
+ const _GCMPRe = "GetChannelMembershipPreferencesResponse";
421
+ const _GCMR = "GetChannelMessageRequest";
422
+ const _GCMRe = "GetChannelMessageResponse";
423
+ const _GCMS = "GetChannelMessageStatus";
424
+ const _GCMSR = "GetChannelMessageStatusRequest";
425
+ const _GCMSRe = "GetChannelMessageStatusResponse";
426
+ const _GMSC = "GetMessagingStreamingConfigurations";
427
+ const _GMSCR = "GetMessagingStreamingConfigurationsRequest";
428
+ const _GMSCRe = "GetMessagingStreamingConfigurationsResponse";
429
+ const _GMSE = "GetMessagingSessionEndpoint";
430
+ const _GMSER = "GetMessagingSessionEndpointRequest";
431
+ const _GMSERe = "GetMessagingSessionEndpointResponse";
432
+ const _I = "Identity";
433
+ const _IB = "InvitedBy";
434
+ const _IT = "InvocationType";
435
+ const _K = "Key";
436
+ const _L = "Lambda";
437
+ const _LC = "LambdaConfiguration";
438
+ const _LCAWCF = "ListChannelsAssociatedWithChannelFlow";
439
+ const _LCAWCFR = "ListChannelsAssociatedWithChannelFlowRequest";
440
+ const _LCAWCFRi = "ListChannelsAssociatedWithChannelFlowResponse";
441
+ const _LCB = "ListChannelBans";
442
+ const _LCBR = "ListChannelBansRequest";
443
+ const _LCBRi = "ListChannelBansResponse";
444
+ const _LCF = "ListChannelFlows";
445
+ const _LCFR = "ListChannelFlowsRequest";
446
+ const _LCFRi = "ListChannelFlowsResponse";
447
+ const _LCM = "ListChannelMemberships";
448
+ const _LCMBAIU = "ListChannelsModeratedByAppInstanceUser";
449
+ const _LCMBAIUR = "ListChannelsModeratedByAppInstanceUserRequest";
450
+ const _LCMBAIURi = "ListChannelsModeratedByAppInstanceUserResponse";
451
+ const _LCMFAIU = "ListChannelMembershipsForAppInstanceUser";
452
+ const _LCMFAIUR = "ListChannelMembershipsForAppInstanceUserRequest";
453
+ const _LCMFAIURi = "ListChannelMembershipsForAppInstanceUserResponse";
454
+ const _LCMR = "ListChannelMembershipsRequest";
455
+ const _LCMRi = "ListChannelMembershipsResponse";
456
+ const _LCMRis = "ListChannelMessagesRequest";
457
+ const _LCMRist = "ListChannelMessagesResponse";
458
+ const _LCMRisth = "ListChannelModeratorsRequest";
459
+ const _LCMRistha = "ListChannelModeratorsResponse";
460
+ const _LCMi = "ListChannelMessages";
461
+ const _LCMis = "ListChannelModerators";
462
+ const _LCR = "ListChannelsRequest";
463
+ const _LCRi = "ListChannelsResponse";
464
+ const _LCi = "ListChannels";
465
+ const _LET = "LastEditedTimestamp";
466
+ const _LMT = "LastMessageTimestamp";
467
+ const _LSC = "ListSubChannels";
468
+ const _LSCR = "ListSubChannelsRequest";
469
+ const _LSCRi = "ListSubChannelsResponse";
470
+ const _LTFR = "ListTagsForResource";
471
+ const _LTFRR = "ListTagsForResourceRequest";
472
+ const _LTFRRi = "ListTagsForResourceResponse";
473
+ const _LUT = "LastUpdatedTimestamp";
474
+ const _M = "Message";
475
+ const _MA = "MemberArn";
476
+ const _MAM = "MessageAttributeMap";
477
+ const _MAN = "MessageAttributeName";
478
+ const _MASV = "MessageAttributeStringValue";
479
+ const _MASVe = "MessageAttributeStringValues";
480
+ const _MAV = "MessageAttributeValue";
481
+ const _MAe = "MemberArns";
482
+ const _MAes = "MessageAttributes";
483
+ const _MAo = "ModeratorArns";
484
+ const _MC = "MembershipCount";
485
+ const _MI = "MessageId";
486
+ const _MMP = "MinimumMembershipPercentage";
487
+ const _MR = "MaxResults";
488
+ const _MSC = "MaximumSubChannels";
489
+ const _MSE = "MessagingSessionEndpoint";
490
+ const _Me = "Metadata";
491
+ const _Mem = "Members";
492
+ const _Memb = "Member";
493
+ const _Mo = "Mode";
494
+ const _Mod = "Moderator";
495
+ const _N = "Name";
496
+ const _NA = "NotAfter";
497
+ const _NB = "NotBefore";
498
+ const _NEC = "NonEmptyContent";
499
+ const _NERN = "NonEmptyResourceName";
500
+ const _NFE = "NotFoundException";
501
+ const _NT = "NextToken";
502
+ const _NTe = "NetworkType";
503
+ const _O = "Operator";
504
+ const _P = "Privacy";
505
+ const _PC = "ProcessorConfiguration";
506
+ const _PCES = "PutChannelExpirationSettings";
507
+ const _PCESR = "PutChannelExpirationSettingsRequest";
508
+ const _PCESRu = "PutChannelExpirationSettingsResponse";
509
+ const _PCMP = "PutChannelMembershipPreferences";
510
+ const _PCMPR = "PutChannelMembershipPreferencesRequest";
511
+ const _PCMPRu = "PutChannelMembershipPreferencesResponse";
512
+ const _PL = "ProcessorList";
513
+ const _PMSC = "PutMessagingStreamingConfigurations";
514
+ const _PMSCR = "PutMessagingStreamingConfigurationsRequest";
515
+ const _PMSCRu = "PutMessagingStreamingConfigurationsResponse";
516
+ const _PN = "PushNotifications";
517
+ const _PNB = "PushNotificationBody";
518
+ const _PNC = "PushNotificationConfiguration";
519
+ const _PNP = "PushNotificationPreferences";
520
+ const _PNT = "PushNotificationTitle";
521
+ const _PNu = "PushNotification";
522
+ const _Pe = "Persistence";
523
+ const _Pr = "Processors";
524
+ const _Pre = "Preferences";
525
+ const _Pro = "Processor";
526
+ const _R = "Redacted";
527
+ const _RA = "ResourceArn";
528
+ const _RARN = "ResourceARN";
529
+ const _RCM = "RedactChannelMessage";
530
+ const _RCMR = "RedactChannelMessageRequest";
531
+ const _RCMRe = "RedactChannelMessageResponse";
532
+ const _RLEE = "ResourceLimitExceededException";
533
+ const _RMT = "ReadMarkerTimestamp";
534
+ const _RN = "ResourceName";
535
+ const _S = "Sender";
536
+ const _SC = "StreamingConfigurations";
537
+ const _SCI = "SubChannelId";
538
+ const _SCL = "StreamingConfigurationList";
539
+ const _SCM = "SendChannelMessage";
540
+ const _SCMR = "SendChannelMessageRequest";
541
+ const _SCMRe = "SendChannelMessageResponse";
542
+ const _SCR = "SearchChannelsRequest";
543
+ const _SCRe = "SearchChannelsResponse";
544
+ const _SCS = "SubChannelSummary";
545
+ const _SCSL = "SubChannelSummaryList";
546
+ const _SCe = "SearchChannels";
547
+ const _SCt = "StreamingConfiguration";
548
+ const _SCu = "SubChannels";
549
+ const _SF = "SearchField";
550
+ const _SFE = "ServiceFailureException";
551
+ const _SFe = "SearchFields";
552
+ const _SO = "SortOrder";
553
+ const _SUE = "ServiceUnavailableException";
554
+ const _SV = "StringValues";
555
+ const _St = "Status";
556
+ const _T = "Type";
557
+ const _TCE = "ThrottledClientException";
558
+ const _TK = "TagKey";
559
+ const _TKL = "TagKeyList";
560
+ const _TKa = "TagKeys";
561
+ const _TL = "TagList";
562
+ const _TLa = "TargetList";
563
+ const _TMPSC = "TargetMembershipsPerSubChannel";
564
+ const _TR = "TagResource";
565
+ const _TRR = "TagResourceRequest";
566
+ const _TV = "TagValue";
567
+ const _Ta = "Target";
568
+ const _Tag = "Tags";
569
+ const _Tag_ = "Tag";
570
+ const _Ti = "Title";
571
+ const _U = "Url";
572
+ const _UC = "UpdateChannel";
573
+ const _UCE = "UnauthorizedClientException";
574
+ const _UCF = "UpdateChannelFlow";
575
+ const _UCFR = "UpdateChannelFlowRequest";
576
+ const _UCFRp = "UpdateChannelFlowResponse";
577
+ const _UCM = "UpdateChannelMessage";
578
+ const _UCMR = "UpdateChannelMessageRequest";
579
+ const _UCMRp = "UpdateChannelMessageResponse";
580
+ const _UCR = "UpdateChannelRequest";
581
+ const _UCRM = "UpdateChannelReadMarker";
582
+ const _UCRMR = "UpdateChannelReadMarkerRequest";
583
+ const _UCRMRp = "UpdateChannelReadMarkerResponse";
584
+ const _UCRp = "UpdateChannelResponse";
585
+ const _UR = "UntagResource";
586
+ const _URR = "UntagResourceRequest";
587
+ const _V = "Value";
588
+ const _Va = "Values";
589
+ const _a = "arn";
590
+ const _aia = "app-instance-arn";
591
+ const _aiua = "app-instance-user-arn";
592
+ const _c = "client";
593
+ const _cfa = "channel-flow-arn";
594
+ const _e = "error";
595
+ const _h = "http";
596
+ const _hE = "httpError";
597
+ const _hH = "httpHeader";
598
+ const _hQ = "httpQuery";
599
+ const _mr = "max-results";
600
+ const _na = "not-after";
601
+ const _nb = "not-before";
602
+ const _nt = "network-type";
603
+ const _nt_ = "next-token";
604
+ const _p = "privacy";
605
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkmessaging";
606
+ const _sci = "sub-channel-id";
607
+ const _se = "server";
608
+ const _so = "sort-order";
609
+ const _t = "type";
610
+ const _xacb = "x-amz-chime-bearer";
611
+ const n0 = "com.amazonaws.chimesdkmessaging";
612
+ const _s_registry = TypeRegistry.for(_s);
613
+ var ChimeSDKMessagingServiceException$ = [-3, _s, "ChimeSDKMessagingServiceException", 0, [], []];
614
+ _s_registry.registerError(ChimeSDKMessagingServiceException$, ChimeSDKMessagingServiceException);
615
+ const n0_registry = TypeRegistry.for(n0);
616
+ var BadRequestException$ = [-3, n0, _BRE,
617
+ { [_e]: _c, [_hE]: 400 },
618
+ [_C, _M],
619
+ [0, 0]
620
+ ];
621
+ n0_registry.registerError(BadRequestException$, BadRequestException);
622
+ var ConflictException$ = [-3, n0, _CE,
623
+ { [_e]: _c, [_hE]: 409 },
624
+ [_C, _M],
625
+ [0, 0]
626
+ ];
627
+ n0_registry.registerError(ConflictException$, ConflictException);
628
+ var ForbiddenException$ = [-3, n0, _FE,
629
+ { [_e]: _c, [_hE]: 403 },
630
+ [_C, _M],
631
+ [0, 0]
632
+ ];
633
+ n0_registry.registerError(ForbiddenException$, ForbiddenException);
634
+ var NotFoundException$ = [-3, n0, _NFE,
635
+ { [_e]: _c, [_hE]: 404 },
636
+ [_C, _M],
637
+ [0, 0]
638
+ ];
639
+ n0_registry.registerError(NotFoundException$, NotFoundException);
640
+ var ResourceLimitExceededException$ = [-3, n0, _RLEE,
641
+ { [_e]: _c, [_hE]: 400 },
642
+ [_C, _M],
643
+ [0, 0]
644
+ ];
645
+ n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
646
+ var ServiceFailureException$ = [-3, n0, _SFE,
647
+ { [_e]: _se, [_hE]: 500 },
648
+ [_C, _M],
649
+ [0, 0]
650
+ ];
651
+ n0_registry.registerError(ServiceFailureException$, ServiceFailureException);
652
+ var ServiceUnavailableException$ = [-3, n0, _SUE,
653
+ { [_e]: _se, [_hE]: 503 },
654
+ [_C, _M],
655
+ [0, 0]
656
+ ];
657
+ n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
658
+ var ThrottledClientException$ = [-3, n0, _TCE,
659
+ { [_e]: _c, [_hE]: 429 },
660
+ [_C, _M],
661
+ [0, 0]
662
+ ];
663
+ n0_registry.registerError(ThrottledClientException$, ThrottledClientException);
664
+ var UnauthorizedClientException$ = [-3, n0, _UCE,
665
+ { [_e]: _c, [_hE]: 401 },
666
+ [_C, _M],
667
+ [0, 0]
668
+ ];
669
+ n0_registry.registerError(UnauthorizedClientException$, UnauthorizedClientException);
670
+ const errorTypeRegistries = [
671
+ _s_registry,
672
+ n0_registry,
673
+ ];
674
+ var ChannelId = [0, n0, _CI, 8, 0];
675
+ var ClientRequestToken = [0, n0, _CRT, 8, 0];
676
+ var Content = [0, n0, _Co, 8, 0];
677
+ var ContentType = [0, n0, _CT, 8, 0];
678
+ var FilterRule = [0, n0, _FR, 8, 0];
679
+ var MessageAttributeName = [0, n0, _MAN, 8, 0];
680
+ var MessageAttributeStringValue = [0, n0, _MASV, 8, 0];
681
+ var Metadata = [0, n0, _Me, 8, 0];
682
+ var NextToken = [0, n0, _NT, 8, 0];
683
+ var NonEmptyContent = [0, n0, _NEC, 8, 0];
684
+ var NonEmptyResourceName = [0, n0, _NERN, 8, 0];
685
+ var PushNotificationBody = [0, n0, _PNB, 8, 0];
686
+ var PushNotificationTitle = [0, n0, _PNT, 8, 0];
687
+ var ResourceName = [0, n0, _RN, 8, 0];
688
+ var TagKey = [0, n0, _TK, 8, 0];
689
+ var TagValue = [0, n0, _TV, 8, 0];
690
+ var AppInstanceUserMembershipSummary$ = [3, n0, _AIUMS,
691
+ 0,
692
+ [_T, _RMT, _SCI],
693
+ [0, 4, 0]
694
+ ];
695
+ var AssociateChannelFlowRequest$ = [3, n0, _ACFR,
696
+ 0,
697
+ [_CA, _CFA, _CB],
698
+ [[0, 1], 0, [0, { [_hH]: _xacb }]], 3
699
+ ];
700
+ var BatchChannelMemberships$ = [3, n0, _BCM,
701
+ 0,
702
+ [_IB, _T, _Mem, _CA, _SCI],
703
+ [[() => Identity$, 0], 0, [() => Members, 0], 0, 0]
704
+ ];
705
+ var BatchCreateChannelMembershipError$ = [3, n0, _BCCME,
706
+ 0,
707
+ [_MA, _EC, _EM],
708
+ [0, 0, 0]
709
+ ];
710
+ var BatchCreateChannelMembershipRequest$ = [3, n0, _BCCMR,
711
+ 0,
712
+ [_CA, _MAe, _CB, _T, _SCI],
713
+ [[0, 1], 64 | 0, [0, { [_hH]: _xacb }], 0, 0], 3
714
+ ];
715
+ var BatchCreateChannelMembershipResponse$ = [3, n0, _BCCMRa,
716
+ 0,
717
+ [_BCM, _E],
718
+ [[() => BatchChannelMemberships$, 0], () => BatchCreateChannelMembershipErrors]
719
+ ];
720
+ var Channel$ = [3, n0, _Ch,
721
+ 0,
722
+ [_N, _CA, _Mo, _P, _Me, _CBr, _CTr, _LMT, _LUT, _CFA, _ECC, _ES],
723
+ [[() => NonEmptyResourceName, 0], 0, 0, 0, [() => Metadata, 0], [() => Identity$, 0], 4, 4, 4, 0, () => ElasticChannelConfiguration$, () => ExpirationSettings$]
724
+ ];
725
+ var ChannelAssociatedWithFlowSummary$ = [3, n0, _CAWFS,
726
+ 0,
727
+ [_N, _CA, _Mo, _P, _Me],
728
+ [[() => NonEmptyResourceName, 0], 0, 0, 0, [() => Metadata, 0]]
729
+ ];
730
+ var ChannelBan$ = [3, n0, _CBh,
731
+ 0,
732
+ [_Memb, _CA, _CTr, _CBr],
733
+ [[() => Identity$, 0], 0, 4, [() => Identity$, 0]]
734
+ ];
735
+ var ChannelBanSummary$ = [3, n0, _CBS,
736
+ 0,
737
+ [_Memb],
738
+ [[() => Identity$, 0]]
739
+ ];
740
+ var ChannelFlow$ = [3, n0, _CF,
741
+ 0,
742
+ [_CFA, _Pr, _N, _CTr, _LUT],
743
+ [0, [() => ProcessorList, 0], [() => NonEmptyResourceName, 0], 4, 4]
744
+ ];
745
+ var ChannelFlowCallbackRequest$ = [3, n0, _CFCR,
746
+ 0,
747
+ [_CA, _CM, _CIa, _DR],
748
+ [[0, 1], [() => ChannelMessageCallback$, 0], [0, 4], 2], 2
749
+ ];
750
+ var ChannelFlowCallbackResponse$ = [3, n0, _CFCRh,
751
+ 0,
752
+ [_CA, _CIa],
753
+ [0, 0]
754
+ ];
755
+ var ChannelFlowSummary$ = [3, n0, _CFS,
756
+ 0,
757
+ [_CFA, _N, _Pr],
758
+ [0, [() => NonEmptyResourceName, 0], [() => ProcessorList, 0]]
759
+ ];
760
+ var ChannelMembership$ = [3, n0, _CMh,
761
+ 0,
762
+ [_IB, _T, _Memb, _CA, _CTr, _LUT, _SCI],
763
+ [[() => Identity$, 0], 0, [() => Identity$, 0], 0, 4, 4, 0]
764
+ ];
765
+ var ChannelMembershipForAppInstanceUserSummary$ = [3, n0, _CMFAIUS,
766
+ 0,
767
+ [_CS, _AIUMS],
768
+ [[() => ChannelSummary$, 0], () => AppInstanceUserMembershipSummary$]
769
+ ];
770
+ var ChannelMembershipPreferences$ = [3, n0, _CMP,
771
+ 0,
772
+ [_PN],
773
+ [[() => PushNotificationPreferences$, 0]]
774
+ ];
775
+ var ChannelMembershipSummary$ = [3, n0, _CMS,
776
+ 0,
777
+ [_Memb],
778
+ [[() => Identity$, 0]]
779
+ ];
780
+ var ChannelMessage$ = [3, n0, _CM,
781
+ 0,
782
+ [_CA, _MI, _Co, _Me, _T, _CTr, _LET, _LUT, _S, _R, _Pe, _St, _MAes, _SCI, _CT, _Ta],
783
+ [0, 0, [() => Content, 0], [() => Metadata, 0], 0, 4, 4, 4, [() => Identity$, 0], 2, 0, () => ChannelMessageStatusStructure$, [() => MessageAttributeMap, 0], 0, [() => ContentType, 0], () => TargetList]
784
+ ];
785
+ var ChannelMessageCallback$ = [3, n0, _CMC,
786
+ 0,
787
+ [_MI, _Co, _Me, _PNu, _MAes, _SCI, _CT],
788
+ [0, [() => NonEmptyContent, 0], [() => Metadata, 0], [() => PushNotificationConfiguration$, 0], [() => MessageAttributeMap, 0], 0, [() => ContentType, 0]], 1
789
+ ];
790
+ var ChannelMessageStatusStructure$ = [3, n0, _CMSS,
791
+ 0,
792
+ [_V, _D],
793
+ [0, 0]
794
+ ];
795
+ var ChannelMessageSummary$ = [3, n0, _CMSh,
796
+ 0,
797
+ [_MI, _Co, _Me, _T, _CTr, _LUT, _LET, _S, _R, _St, _MAes, _CT, _Ta],
798
+ [0, [() => Content, 0], [() => Metadata, 0], 0, 4, 4, 4, [() => Identity$, 0], 2, () => ChannelMessageStatusStructure$, [() => MessageAttributeMap, 0], [() => ContentType, 0], () => TargetList]
799
+ ];
800
+ var ChannelModeratedByAppInstanceUserSummary$ = [3, n0, _CMBAIUS,
801
+ 0,
802
+ [_CS],
803
+ [[() => ChannelSummary$, 0]]
804
+ ];
805
+ var ChannelModerator$ = [3, n0, _CMha,
806
+ 0,
807
+ [_Mod, _CA, _CTr, _CBr],
808
+ [[() => Identity$, 0], 0, 4, [() => Identity$, 0]]
809
+ ];
810
+ var ChannelModeratorSummary$ = [3, n0, _CMSha,
811
+ 0,
812
+ [_Mod],
813
+ [[() => Identity$, 0]]
814
+ ];
815
+ var ChannelSummary$ = [3, n0, _CS,
816
+ 0,
817
+ [_N, _CA, _Mo, _P, _Me, _LMT],
818
+ [[() => NonEmptyResourceName, 0], 0, 0, 0, [() => Metadata, 0], 4]
819
+ ];
820
+ var CreateChannelBanRequest$ = [3, n0, _CCBR,
821
+ 0,
822
+ [_CA, _MA, _CB],
823
+ [[0, 1], 0, [0, { [_hH]: _xacb }]], 3
824
+ ];
825
+ var CreateChannelBanResponse$ = [3, n0, _CCBRr,
826
+ 0,
827
+ [_CA, _Memb],
828
+ [0, [() => Identity$, 0]]
829
+ ];
830
+ var CreateChannelFlowRequest$ = [3, n0, _CCFR,
831
+ 0,
832
+ [_AIA, _Pr, _N, _Tag, _CRT],
833
+ [0, [() => ProcessorList, 0], [() => NonEmptyResourceName, 0], [() => TagList, 0], [() => ClientRequestToken, 4]], 3
834
+ ];
835
+ var CreateChannelFlowResponse$ = [3, n0, _CCFRr,
836
+ 0,
837
+ [_CFA],
838
+ [0]
839
+ ];
840
+ var CreateChannelMembershipRequest$ = [3, n0, _CCMR,
841
+ 0,
842
+ [_CA, _MA, _T, _CB, _SCI],
843
+ [[0, 1], 0, 0, [0, { [_hH]: _xacb }], 0], 4
844
+ ];
845
+ var CreateChannelMembershipResponse$ = [3, n0, _CCMRr,
846
+ 0,
847
+ [_CA, _Memb, _SCI],
848
+ [0, [() => Identity$, 0], 0]
849
+ ];
850
+ var CreateChannelModeratorRequest$ = [3, n0, _CCMRre,
851
+ 0,
852
+ [_CA, _CMA, _CB],
853
+ [[0, 1], 0, [0, { [_hH]: _xacb }]], 3
854
+ ];
855
+ var CreateChannelModeratorResponse$ = [3, n0, _CCMRrea,
856
+ 0,
857
+ [_CA, _CMha],
858
+ [0, [() => Identity$, 0]]
859
+ ];
860
+ var CreateChannelRequest$ = [3, n0, _CCR,
861
+ 0,
862
+ [_AIA, _N, _CB, _Mo, _P, _Me, _CRT, _Tag, _CI, _MAe, _MAo, _ECC, _ES],
863
+ [0, [() => NonEmptyResourceName, 0], [0, { [_hH]: _xacb }], 0, 0, [() => Metadata, 0], [() => ClientRequestToken, 4], [() => TagList, 0], [() => ChannelId, 0], 64 | 0, 64 | 0, () => ElasticChannelConfiguration$, () => ExpirationSettings$], 3
864
+ ];
865
+ var CreateChannelResponse$ = [3, n0, _CCRr,
866
+ 0,
867
+ [_CA],
868
+ [0]
869
+ ];
870
+ var DeleteChannelBanRequest$ = [3, n0, _DCBR,
871
+ 0,
872
+ [_CA, _MA, _CB],
873
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }]], 3
874
+ ];
875
+ var DeleteChannelFlowRequest$ = [3, n0, _DCFR,
876
+ 0,
877
+ [_CFA],
878
+ [[0, 1]], 1
879
+ ];
880
+ var DeleteChannelMembershipRequest$ = [3, n0, _DCMR,
881
+ 0,
882
+ [_CA, _MA, _CB, _SCI],
883
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _sci }]], 3
884
+ ];
885
+ var DeleteChannelMessageRequest$ = [3, n0, _DCMRe,
886
+ 0,
887
+ [_CA, _MI, _CB, _SCI],
888
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _sci }]], 3
889
+ ];
890
+ var DeleteChannelModeratorRequest$ = [3, n0, _DCMRel,
891
+ 0,
892
+ [_CA, _CMA, _CB],
893
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }]], 3
894
+ ];
895
+ var DeleteChannelRequest$ = [3, n0, _DCR,
896
+ 0,
897
+ [_CA, _CB],
898
+ [[0, 1], [0, { [_hH]: _xacb }]], 2
899
+ ];
900
+ var DeleteMessagingStreamingConfigurationsRequest$ = [3, n0, _DMSCR,
901
+ 0,
902
+ [_AIA],
903
+ [[0, 1]], 1
904
+ ];
905
+ var DescribeChannelBanRequest$ = [3, n0, _DCBRe,
906
+ 0,
907
+ [_CA, _MA, _CB],
908
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }]], 3
909
+ ];
910
+ var DescribeChannelBanResponse$ = [3, n0, _DCBRes,
911
+ 0,
912
+ [_CBh],
913
+ [[() => ChannelBan$, 0]]
914
+ ];
915
+ var DescribeChannelFlowRequest$ = [3, n0, _DCFRe,
916
+ 0,
917
+ [_CFA],
918
+ [[0, 1]], 1
919
+ ];
920
+ var DescribeChannelFlowResponse$ = [3, n0, _DCFRes,
921
+ 0,
922
+ [_CF],
923
+ [[() => ChannelFlow$, 0]]
924
+ ];
925
+ var DescribeChannelMembershipForAppInstanceUserRequest$ = [3, n0, _DCMFAIUR,
926
+ 0,
927
+ [_CA, _AIUA, _CB],
928
+ [[0, 1], [0, { [_hQ]: _aiua }], [0, { [_hH]: _xacb }]], 3
929
+ ];
930
+ var DescribeChannelMembershipForAppInstanceUserResponse$ = [3, n0, _DCMFAIURe,
931
+ 0,
932
+ [_CMh],
933
+ [[() => ChannelMembershipForAppInstanceUserSummary$, 0]]
934
+ ];
935
+ var DescribeChannelMembershipRequest$ = [3, n0, _DCMRes,
936
+ 0,
937
+ [_CA, _MA, _CB, _SCI],
938
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _sci }]], 3
939
+ ];
940
+ var DescribeChannelMembershipResponse$ = [3, n0, _DCMResc,
941
+ 0,
942
+ [_CMh],
943
+ [[() => ChannelMembership$, 0]]
944
+ ];
945
+ var DescribeChannelModeratedByAppInstanceUserRequest$ = [3, n0, _DCMBAIUR,
946
+ 0,
947
+ [_CA, _AIUA, _CB],
948
+ [[0, 1], [0, { [_hQ]: _aiua }], [0, { [_hH]: _xacb }]], 3
949
+ ];
950
+ var DescribeChannelModeratedByAppInstanceUserResponse$ = [3, n0, _DCMBAIURe,
951
+ 0,
952
+ [_Ch],
953
+ [[() => ChannelModeratedByAppInstanceUserSummary$, 0]]
954
+ ];
955
+ var DescribeChannelModeratorRequest$ = [3, n0, _DCMRescr,
956
+ 0,
957
+ [_CA, _CMA, _CB],
958
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }]], 3
959
+ ];
960
+ var DescribeChannelModeratorResponse$ = [3, n0, _DCMRescri,
961
+ 0,
962
+ [_CMha],
963
+ [[() => ChannelModerator$, 0]]
964
+ ];
965
+ var DescribeChannelRequest$ = [3, n0, _DCRe,
966
+ 0,
967
+ [_CA, _CB],
968
+ [[0, 1], [0, { [_hH]: _xacb }]], 2
969
+ ];
970
+ var DescribeChannelResponse$ = [3, n0, _DCRes,
971
+ 0,
972
+ [_Ch],
973
+ [[() => Channel$, 0]]
974
+ ];
975
+ var DisassociateChannelFlowRequest$ = [3, n0, _DCFRi,
976
+ 0,
977
+ [_CA, _CFA, _CB],
978
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }]], 3
979
+ ];
980
+ var ElasticChannelConfiguration$ = [3, n0, _ECC,
981
+ 0,
982
+ [_MSC, _TMPSC, _MMP],
983
+ [1, 1, 1], 3
984
+ ];
985
+ var ExpirationSettings$ = [3, n0, _ES,
986
+ 0,
987
+ [_ED, _ECx],
988
+ [1, 0], 2
989
+ ];
990
+ var GetChannelMembershipPreferencesRequest$ = [3, n0, _GCMPR,
991
+ 0,
992
+ [_CA, _MA, _CB],
993
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }]], 3
994
+ ];
995
+ var GetChannelMembershipPreferencesResponse$ = [3, n0, _GCMPRe,
996
+ 0,
997
+ [_CA, _Memb, _Pre],
998
+ [0, [() => Identity$, 0], [() => ChannelMembershipPreferences$, 0]]
999
+ ];
1000
+ var GetChannelMessageRequest$ = [3, n0, _GCMR,
1001
+ 0,
1002
+ [_CA, _MI, _CB, _SCI],
1003
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _sci }]], 3
1004
+ ];
1005
+ var GetChannelMessageResponse$ = [3, n0, _GCMRe,
1006
+ 0,
1007
+ [_CM],
1008
+ [[() => ChannelMessage$, 0]]
1009
+ ];
1010
+ var GetChannelMessageStatusRequest$ = [3, n0, _GCMSR,
1011
+ 0,
1012
+ [_CA, _MI, _CB, _SCI],
1013
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _sci }]], 3
1014
+ ];
1015
+ var GetChannelMessageStatusResponse$ = [3, n0, _GCMSRe,
1016
+ 0,
1017
+ [_St],
1018
+ [() => ChannelMessageStatusStructure$]
1019
+ ];
1020
+ var GetMessagingSessionEndpointRequest$ = [3, n0, _GMSER,
1021
+ 0,
1022
+ [_NTe],
1023
+ [[0, { [_hQ]: _nt }]]
1024
+ ];
1025
+ var GetMessagingSessionEndpointResponse$ = [3, n0, _GMSERe,
1026
+ 0,
1027
+ [_En],
1028
+ [() => MessagingSessionEndpoint$]
1029
+ ];
1030
+ var GetMessagingStreamingConfigurationsRequest$ = [3, n0, _GMSCR,
1031
+ 0,
1032
+ [_AIA],
1033
+ [[0, 1]], 1
1034
+ ];
1035
+ var GetMessagingStreamingConfigurationsResponse$ = [3, n0, _GMSCRe,
1036
+ 0,
1037
+ [_SC],
1038
+ [() => StreamingConfigurationList]
1039
+ ];
1040
+ var Identity$ = [3, n0, _I,
1041
+ 0,
1042
+ [_A, _N],
1043
+ [0, [() => ResourceName, 0]]
1044
+ ];
1045
+ var LambdaConfiguration$ = [3, n0, _LC,
1046
+ 0,
1047
+ [_RA, _IT],
1048
+ [0, 0], 2
1049
+ ];
1050
+ var ListChannelBansRequest$ = [3, n0, _LCBR,
1051
+ 0,
1052
+ [_CA, _CB, _MR, _NT],
1053
+ [[0, 1], [0, { [_hH]: _xacb }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 2
1054
+ ];
1055
+ var ListChannelBansResponse$ = [3, n0, _LCBRi,
1056
+ 0,
1057
+ [_CA, _NT, _CBha],
1058
+ [0, [() => NextToken, 0], [() => ChannelBanSummaryList, 0]]
1059
+ ];
1060
+ var ListChannelFlowsRequest$ = [3, n0, _LCFR,
1061
+ 0,
1062
+ [_AIA, _MR, _NT],
1063
+ [[0, { [_hQ]: _aia }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 1
1064
+ ];
1065
+ var ListChannelFlowsResponse$ = [3, n0, _LCFRi,
1066
+ 0,
1067
+ [_CFh, _NT],
1068
+ [[() => ChannelFlowSummaryList, 0], [() => NextToken, 0]]
1069
+ ];
1070
+ var ListChannelMembershipsForAppInstanceUserRequest$ = [3, n0, _LCMFAIUR,
1071
+ 0,
1072
+ [_CB, _AIUA, _MR, _NT],
1073
+ [[0, { [_hH]: _xacb }], [0, { [_hQ]: _aiua }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 1
1074
+ ];
1075
+ var ListChannelMembershipsForAppInstanceUserResponse$ = [3, n0, _LCMFAIURi,
1076
+ 0,
1077
+ [_CMhan, _NT],
1078
+ [[() => ChannelMembershipForAppInstanceUserSummaryList, 0], [() => NextToken, 0]]
1079
+ ];
1080
+ var ListChannelMembershipsRequest$ = [3, n0, _LCMR,
1081
+ 0,
1082
+ [_CA, _CB, _T, _MR, _NT, _SCI],
1083
+ [[0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _t }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }], [0, { [_hQ]: _sci }]], 2
1084
+ ];
1085
+ var ListChannelMembershipsResponse$ = [3, n0, _LCMRi,
1086
+ 0,
1087
+ [_CA, _CMhan, _NT],
1088
+ [0, [() => ChannelMembershipSummaryList, 0], [() => NextToken, 0]]
1089
+ ];
1090
+ var ListChannelMessagesRequest$ = [3, n0, _LCMRis,
1091
+ 0,
1092
+ [_CA, _CB, _SO, _NB, _NA, _MR, _NT, _SCI],
1093
+ [[0, 1], [0, { [_hH]: _xacb }], [0, { [_hQ]: _so }], [4, { [_hQ]: _nb }], [4, { [_hQ]: _na }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }], [0, { [_hQ]: _sci }]], 2
1094
+ ];
1095
+ var ListChannelMessagesResponse$ = [3, n0, _LCMRist,
1096
+ 0,
1097
+ [_CA, _NT, _CMhann, _SCI],
1098
+ [0, [() => NextToken, 0], [() => ChannelMessageSummaryList, 0], 0]
1099
+ ];
1100
+ var ListChannelModeratorsRequest$ = [3, n0, _LCMRisth,
1101
+ 0,
1102
+ [_CA, _CB, _MR, _NT],
1103
+ [[0, 1], [0, { [_hH]: _xacb }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 2
1104
+ ];
1105
+ var ListChannelModeratorsResponse$ = [3, n0, _LCMRistha,
1106
+ 0,
1107
+ [_CA, _NT, _CMhanne],
1108
+ [0, [() => NextToken, 0], [() => ChannelModeratorSummaryList, 0]]
1109
+ ];
1110
+ var ListChannelsAssociatedWithChannelFlowRequest$ = [3, n0, _LCAWCFR,
1111
+ 0,
1112
+ [_CFA, _MR, _NT],
1113
+ [[0, { [_hQ]: _cfa }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 1
1114
+ ];
1115
+ var ListChannelsAssociatedWithChannelFlowResponse$ = [3, n0, _LCAWCFRi,
1116
+ 0,
1117
+ [_Cha, _NT],
1118
+ [[() => ChannelAssociatedWithFlowSummaryList, 0], [() => NextToken, 0]]
1119
+ ];
1120
+ var ListChannelsModeratedByAppInstanceUserRequest$ = [3, n0, _LCMBAIUR,
1121
+ 0,
1122
+ [_CB, _AIUA, _MR, _NT],
1123
+ [[0, { [_hH]: _xacb }], [0, { [_hQ]: _aiua }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 1
1124
+ ];
1125
+ var ListChannelsModeratedByAppInstanceUserResponse$ = [3, n0, _LCMBAIURi,
1126
+ 0,
1127
+ [_Cha, _NT],
1128
+ [[() => ChannelModeratedByAppInstanceUserSummaryList, 0], [() => NextToken, 0]]
1129
+ ];
1130
+ var ListChannelsRequest$ = [3, n0, _LCR,
1131
+ 0,
1132
+ [_AIA, _CB, _P, _MR, _NT],
1133
+ [[0, { [_hQ]: _aia }], [0, { [_hH]: _xacb }], [0, { [_hQ]: _p }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 2
1134
+ ];
1135
+ var ListChannelsResponse$ = [3, n0, _LCRi,
1136
+ 0,
1137
+ [_Cha, _NT],
1138
+ [[() => ChannelSummaryList, 0], [() => NextToken, 0]]
1139
+ ];
1140
+ var ListSubChannelsRequest$ = [3, n0, _LSCR,
1141
+ 0,
1142
+ [_CA, _CB, _MR, _NT],
1143
+ [[0, 1], [0, { [_hH]: _xacb }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 2
1144
+ ];
1145
+ var ListSubChannelsResponse$ = [3, n0, _LSCRi,
1146
+ 0,
1147
+ [_CA, _SCu, _NT],
1148
+ [0, () => SubChannelSummaryList, [() => NextToken, 0]]
1149
+ ];
1150
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1151
+ 0,
1152
+ [_RARN],
1153
+ [[0, { [_hQ]: _a }]], 1
1154
+ ];
1155
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1156
+ 0,
1157
+ [_Tag],
1158
+ [[() => TagList, 0]]
1159
+ ];
1160
+ var MessageAttributeValue$ = [3, n0, _MAV,
1161
+ 0,
1162
+ [_SV],
1163
+ [[() => MessageAttributeStringValues, 0]]
1164
+ ];
1165
+ var MessagingSessionEndpoint$ = [3, n0, _MSE,
1166
+ 0,
1167
+ [_U],
1168
+ [0]
1169
+ ];
1170
+ var Processor$ = [3, n0, _Pro,
1171
+ 0,
1172
+ [_N, _Con, _EO, _FA],
1173
+ [[() => NonEmptyResourceName, 0], () => ProcessorConfiguration$, 1, 0], 4
1174
+ ];
1175
+ var ProcessorConfiguration$ = [3, n0, _PC,
1176
+ 0,
1177
+ [_L],
1178
+ [() => LambdaConfiguration$], 1
1179
+ ];
1180
+ var PushNotificationConfiguration$ = [3, n0, _PNC,
1181
+ 0,
1182
+ [_Ti, _B, _T],
1183
+ [[() => PushNotificationTitle, 0], [() => PushNotificationBody, 0], 0]
1184
+ ];
1185
+ var PushNotificationPreferences$ = [3, n0, _PNP,
1186
+ 0,
1187
+ [_AN, _FR],
1188
+ [0, [() => FilterRule, 0]], 1
1189
+ ];
1190
+ var PutChannelExpirationSettingsRequest$ = [3, n0, _PCESR,
1191
+ 0,
1192
+ [_CA, _CB, _ES],
1193
+ [[0, 1], [0, { [_hH]: _xacb }], () => ExpirationSettings$], 1
1194
+ ];
1195
+ var PutChannelExpirationSettingsResponse$ = [3, n0, _PCESRu,
1196
+ 0,
1197
+ [_CA, _ES],
1198
+ [0, () => ExpirationSettings$]
1199
+ ];
1200
+ var PutChannelMembershipPreferencesRequest$ = [3, n0, _PCMPR,
1201
+ 0,
1202
+ [_CA, _MA, _CB, _Pre],
1203
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], [() => ChannelMembershipPreferences$, 0]], 4
1204
+ ];
1205
+ var PutChannelMembershipPreferencesResponse$ = [3, n0, _PCMPRu,
1206
+ 0,
1207
+ [_CA, _Memb, _Pre],
1208
+ [0, [() => Identity$, 0], [() => ChannelMembershipPreferences$, 0]]
1209
+ ];
1210
+ var PutMessagingStreamingConfigurationsRequest$ = [3, n0, _PMSCR,
1211
+ 0,
1212
+ [_AIA, _SC],
1213
+ [[0, 1], () => StreamingConfigurationList], 2
1214
+ ];
1215
+ var PutMessagingStreamingConfigurationsResponse$ = [3, n0, _PMSCRu,
1216
+ 0,
1217
+ [_SC],
1218
+ [() => StreamingConfigurationList]
1219
+ ];
1220
+ var RedactChannelMessageRequest$ = [3, n0, _RCMR,
1221
+ 0,
1222
+ [_CA, _MI, _CB, _SCI],
1223
+ [[0, 1], [0, 1], [0, { [_hH]: _xacb }], 0], 3
1224
+ ];
1225
+ var RedactChannelMessageResponse$ = [3, n0, _RCMRe,
1226
+ 0,
1227
+ [_CA, _MI, _SCI],
1228
+ [0, 0, 0]
1229
+ ];
1230
+ var SearchChannelsRequest$ = [3, n0, _SCR,
1231
+ 0,
1232
+ [_F, _CB, _MR, _NT],
1233
+ [() => SearchFields, [0, { [_hH]: _xacb }], [1, { [_hQ]: _mr }], [() => NextToken, { [_hQ]: _nt_ }]], 1
1234
+ ];
1235
+ var SearchChannelsResponse$ = [3, n0, _SCRe,
1236
+ 0,
1237
+ [_Cha, _NT],
1238
+ [[() => ChannelSummaryList, 0], [() => NextToken, 0]]
1239
+ ];
1240
+ var SearchField$ = [3, n0, _SF,
1241
+ 0,
1242
+ [_K, _Va, _O],
1243
+ [0, 64 | 0, 0], 3
1244
+ ];
1245
+ var SendChannelMessageRequest$ = [3, n0, _SCMR,
1246
+ 0,
1247
+ [_CA, _Co, _T, _Pe, _CB, _Me, _CRT, _PNu, _MAes, _SCI, _CT, _Ta],
1248
+ [[0, 1], [() => NonEmptyContent, 0], 0, 0, [0, { [_hH]: _xacb }], [() => Metadata, 0], [() => ClientRequestToken, 4], [() => PushNotificationConfiguration$, 0], [() => MessageAttributeMap, 0], 0, [() => ContentType, 0], () => TargetList], 5
1249
+ ];
1250
+ var SendChannelMessageResponse$ = [3, n0, _SCMRe,
1251
+ 0,
1252
+ [_CA, _MI, _St, _SCI],
1253
+ [0, 0, () => ChannelMessageStatusStructure$, 0]
1254
+ ];
1255
+ var StreamingConfiguration$ = [3, n0, _SCt,
1256
+ 0,
1257
+ [_DT, _RA],
1258
+ [0, 0], 2
1259
+ ];
1260
+ var SubChannelSummary$ = [3, n0, _SCS,
1261
+ 0,
1262
+ [_SCI, _MC],
1263
+ [0, 1]
1264
+ ];
1265
+ var Tag$ = [3, n0, _Tag_,
1266
+ 0,
1267
+ [_K, _V],
1268
+ [[() => TagKey, 0], [() => TagValue, 0]], 2
1269
+ ];
1270
+ var TagResourceRequest$ = [3, n0, _TRR,
1271
+ 0,
1272
+ [_RARN, _Tag],
1273
+ [0, [() => TagList, 0]], 2
1274
+ ];
1275
+ var Target$ = [3, n0, _Ta,
1276
+ 0,
1277
+ [_MA],
1278
+ [0]
1279
+ ];
1280
+ var UntagResourceRequest$ = [3, n0, _URR,
1281
+ 0,
1282
+ [_RARN, _TKa],
1283
+ [0, [() => TagKeyList, 0]], 2
1284
+ ];
1285
+ var UpdateChannelFlowRequest$ = [3, n0, _UCFR,
1286
+ 0,
1287
+ [_CFA, _Pr, _N],
1288
+ [[0, 1], [() => ProcessorList, 0], [() => NonEmptyResourceName, 0]], 3
1289
+ ];
1290
+ var UpdateChannelFlowResponse$ = [3, n0, _UCFRp,
1291
+ 0,
1292
+ [_CFA],
1293
+ [0]
1294
+ ];
1295
+ var UpdateChannelMessageRequest$ = [3, n0, _UCMR,
1296
+ 0,
1297
+ [_CA, _MI, _Co, _CB, _Me, _SCI, _CT],
1298
+ [[0, 1], [0, 1], [() => NonEmptyContent, 0], [0, { [_hH]: _xacb }], [() => Metadata, 0], 0, [() => ContentType, 0]], 4
1299
+ ];
1300
+ var UpdateChannelMessageResponse$ = [3, n0, _UCMRp,
1301
+ 0,
1302
+ [_CA, _MI, _St, _SCI],
1303
+ [0, 0, () => ChannelMessageStatusStructure$, 0]
1304
+ ];
1305
+ var UpdateChannelReadMarkerRequest$ = [3, n0, _UCRMR,
1306
+ 0,
1307
+ [_CA, _CB],
1308
+ [[0, 1], [0, { [_hH]: _xacb }]], 2
1309
+ ];
1310
+ var UpdateChannelReadMarkerResponse$ = [3, n0, _UCRMRp,
1311
+ 0,
1312
+ [_CA],
1313
+ [0]
1314
+ ];
1315
+ var UpdateChannelRequest$ = [3, n0, _UCR,
1316
+ 0,
1317
+ [_CA, _CB, _N, _Mo, _Me],
1318
+ [[0, 1], [0, { [_hH]: _xacb }], [() => NonEmptyResourceName, 0], 0, [() => Metadata, 0]], 2
1319
+ ];
1320
+ var UpdateChannelResponse$ = [3, n0, _UCRp,
1321
+ 0,
1322
+ [_CA],
1323
+ [0]
1324
+ ];
1325
+ var __Unit = "unit";
1326
+ var BatchCreateChannelMembershipErrors = [1, n0, _BCCMEa,
1327
+ 0, () => BatchCreateChannelMembershipError$
1328
+ ];
1329
+ var ChannelAssociatedWithFlowSummaryList = [1, n0, _CAWFSL,
1330
+ 0, [() => ChannelAssociatedWithFlowSummary$,
1331
+ 0]
1332
+ ];
1333
+ var ChannelBanSummaryList = [1, n0, _CBSL,
1334
+ 0, [() => ChannelBanSummary$,
1335
+ 0]
1336
+ ];
1337
+ var ChannelFlowSummaryList = [1, n0, _CFSL,
1338
+ 0, [() => ChannelFlowSummary$,
1339
+ 0]
1340
+ ];
1341
+ var ChannelMembershipForAppInstanceUserSummaryList = [1, n0, _CMFAIUSL,
1342
+ 0, [() => ChannelMembershipForAppInstanceUserSummary$,
1343
+ 0]
1344
+ ];
1345
+ var ChannelMembershipSummaryList = [1, n0, _CMSL,
1346
+ 0, [() => ChannelMembershipSummary$,
1347
+ 0]
1348
+ ];
1349
+ var ChannelMessageSummaryList = [1, n0, _CMSLh,
1350
+ 0, [() => ChannelMessageSummary$,
1351
+ 0]
1352
+ ];
1353
+ var ChannelModeratedByAppInstanceUserSummaryList = [1, n0, _CMBAIUSL,
1354
+ 0, [() => ChannelModeratedByAppInstanceUserSummary$,
1355
+ 0]
1356
+ ];
1357
+ var ChannelModeratorSummaryList = [1, n0, _CMSLha,
1358
+ 0, [() => ChannelModeratorSummary$,
1359
+ 0]
1360
+ ];
1361
+ var ChannelSummaryList = [1, n0, _CSL,
1362
+ 0, [() => ChannelSummary$,
1363
+ 0]
1364
+ ];
1365
+ var Members = [1, n0, _Mem,
1366
+ 0, [() => Identity$,
1367
+ 0]
1368
+ ];
1369
+ var MessageAttributeStringValues = [1, n0, _MASVe,
1370
+ 0, [() => MessageAttributeStringValue,
1371
+ 0]
1372
+ ];
1373
+ var ProcessorList = [1, n0, _PL,
1374
+ 0, [() => Processor$,
1375
+ 0]
1376
+ ];
1377
+ var SearchFields = [1, n0, _SFe,
1378
+ 0, () => SearchField$
1379
+ ];
1380
+ var StreamingConfigurationList = [1, n0, _SCL,
1381
+ 0, () => StreamingConfiguration$
1382
+ ];
1383
+ var SubChannelSummaryList = [1, n0, _SCSL,
1384
+ 0, () => SubChannelSummary$
1385
+ ];
1386
+ var TagKeyList = [1, n0, _TKL,
1387
+ 0, [() => TagKey,
1388
+ 0]
1389
+ ];
1390
+ var TagList = [1, n0, _TL,
1391
+ 0, [() => Tag$,
1392
+ 0]
1393
+ ];
1394
+ var TargetList = [1, n0, _TLa,
1395
+ 0, () => Target$
1396
+ ];
1397
+ var MessageAttributeMap = [2, n0, _MAM,
1398
+ 0, [() => MessageAttributeName,
1399
+ 0],
1400
+ [() => MessageAttributeValue$,
1401
+ 0]
1402
+ ];
1403
+ var AssociateChannelFlow$ = [9, n0, _ACF,
1404
+ { [_h]: ["PUT", "/channels/{ChannelArn}/channel-flow", 200] }, () => AssociateChannelFlowRequest$, () => __Unit
1405
+ ];
1406
+ var BatchCreateChannelMembership$ = [9, n0, _BCCM,
1407
+ { [_h]: ["POST", "/channels/{ChannelArn}/memberships?operation=batch-create", 200] }, () => BatchCreateChannelMembershipRequest$, () => BatchCreateChannelMembershipResponse$
1408
+ ];
1409
+ var ChannelFlowCallback$ = [9, n0, _CFC,
1410
+ { [_h]: ["POST", "/channels/{ChannelArn}?operation=channel-flow-callback", 200] }, () => ChannelFlowCallbackRequest$, () => ChannelFlowCallbackResponse$
1411
+ ];
1412
+ var CreateChannel$ = [9, n0, _CC,
1413
+ { [_h]: ["POST", "/channels", 201] }, () => CreateChannelRequest$, () => CreateChannelResponse$
1414
+ ];
1415
+ var CreateChannelBan$ = [9, n0, _CCB,
1416
+ { [_h]: ["POST", "/channels/{ChannelArn}/bans", 201] }, () => CreateChannelBanRequest$, () => CreateChannelBanResponse$
1417
+ ];
1418
+ var CreateChannelFlow$ = [9, n0, _CCF,
1419
+ { [_h]: ["POST", "/channel-flows", 201] }, () => CreateChannelFlowRequest$, () => CreateChannelFlowResponse$
1420
+ ];
1421
+ var CreateChannelMembership$ = [9, n0, _CCM,
1422
+ { [_h]: ["POST", "/channels/{ChannelArn}/memberships", 201] }, () => CreateChannelMembershipRequest$, () => CreateChannelMembershipResponse$
1423
+ ];
1424
+ var CreateChannelModerator$ = [9, n0, _CCMr,
1425
+ { [_h]: ["POST", "/channels/{ChannelArn}/moderators", 201] }, () => CreateChannelModeratorRequest$, () => CreateChannelModeratorResponse$
1426
+ ];
1427
+ var DeleteChannel$ = [9, n0, _DC,
1428
+ { [_h]: ["DELETE", "/channels/{ChannelArn}", 204] }, () => DeleteChannelRequest$, () => __Unit
1429
+ ];
1430
+ var DeleteChannelBan$ = [9, n0, _DCB,
1431
+ { [_h]: ["DELETE", "/channels/{ChannelArn}/bans/{MemberArn}", 204] }, () => DeleteChannelBanRequest$, () => __Unit
1432
+ ];
1433
+ var DeleteChannelFlow$ = [9, n0, _DCF,
1434
+ { [_h]: ["DELETE", "/channel-flows/{ChannelFlowArn}", 204] }, () => DeleteChannelFlowRequest$, () => __Unit
1435
+ ];
1436
+ var DeleteChannelMembership$ = [9, n0, _DCM,
1437
+ { [_h]: ["DELETE", "/channels/{ChannelArn}/memberships/{MemberArn}", 204] }, () => DeleteChannelMembershipRequest$, () => __Unit
1438
+ ];
1439
+ var DeleteChannelMessage$ = [9, n0, _DCMe,
1440
+ { [_h]: ["DELETE", "/channels/{ChannelArn}/messages/{MessageId}", 204] }, () => DeleteChannelMessageRequest$, () => __Unit
1441
+ ];
1442
+ var DeleteChannelModerator$ = [9, n0, _DCMel,
1443
+ { [_h]: ["DELETE", "/channels/{ChannelArn}/moderators/{ChannelModeratorArn}", 204] }, () => DeleteChannelModeratorRequest$, () => __Unit
1444
+ ];
1445
+ var DeleteMessagingStreamingConfigurations$ = [9, n0, _DMSC,
1446
+ { [_h]: ["DELETE", "/app-instances/{AppInstanceArn}/streaming-configurations", 204] }, () => DeleteMessagingStreamingConfigurationsRequest$, () => __Unit
1447
+ ];
1448
+ var DescribeChannel$ = [9, n0, _DCe,
1449
+ { [_h]: ["GET", "/channels/{ChannelArn}", 200] }, () => DescribeChannelRequest$, () => DescribeChannelResponse$
1450
+ ];
1451
+ var DescribeChannelBan$ = [9, n0, _DCBe,
1452
+ { [_h]: ["GET", "/channels/{ChannelArn}/bans/{MemberArn}", 200] }, () => DescribeChannelBanRequest$, () => DescribeChannelBanResponse$
1453
+ ];
1454
+ var DescribeChannelFlow$ = [9, n0, _DCFe,
1455
+ { [_h]: ["GET", "/channel-flows/{ChannelFlowArn}", 200] }, () => DescribeChannelFlowRequest$, () => DescribeChannelFlowResponse$
1456
+ ];
1457
+ var DescribeChannelMembership$ = [9, n0, _DCMes,
1458
+ { [_h]: ["GET", "/channels/{ChannelArn}/memberships/{MemberArn}", 200] }, () => DescribeChannelMembershipRequest$, () => DescribeChannelMembershipResponse$
1459
+ ];
1460
+ var DescribeChannelMembershipForAppInstanceUser$ = [9, n0, _DCMFAIU,
1461
+ { [_h]: ["GET", "/channels/{ChannelArn}?scope=app-instance-user-membership", 200] }, () => DescribeChannelMembershipForAppInstanceUserRequest$, () => DescribeChannelMembershipForAppInstanceUserResponse$
1462
+ ];
1463
+ var DescribeChannelModeratedByAppInstanceUser$ = [9, n0, _DCMBAIU,
1464
+ { [_h]: ["GET", "/channels/{ChannelArn}?scope=app-instance-user-moderated-channel", 200] }, () => DescribeChannelModeratedByAppInstanceUserRequest$, () => DescribeChannelModeratedByAppInstanceUserResponse$
1465
+ ];
1466
+ var DescribeChannelModerator$ = [9, n0, _DCMesc,
1467
+ { [_h]: ["GET", "/channels/{ChannelArn}/moderators/{ChannelModeratorArn}", 200] }, () => DescribeChannelModeratorRequest$, () => DescribeChannelModeratorResponse$
1468
+ ];
1469
+ var DisassociateChannelFlow$ = [9, n0, _DCFi,
1470
+ { [_h]: ["DELETE", "/channels/{ChannelArn}/channel-flow/{ChannelFlowArn}", 204] }, () => DisassociateChannelFlowRequest$, () => __Unit
1471
+ ];
1472
+ var GetChannelMembershipPreferences$ = [9, n0, _GCMP,
1473
+ { [_h]: ["GET", "/channels/{ChannelArn}/memberships/{MemberArn}/preferences", 200] }, () => GetChannelMembershipPreferencesRequest$, () => GetChannelMembershipPreferencesResponse$
1474
+ ];
1475
+ var GetChannelMessage$ = [9, n0, _GCM,
1476
+ { [_h]: ["GET", "/channels/{ChannelArn}/messages/{MessageId}", 200] }, () => GetChannelMessageRequest$, () => GetChannelMessageResponse$
1477
+ ];
1478
+ var GetChannelMessageStatus$ = [9, n0, _GCMS,
1479
+ { [_h]: ["GET", "/channels/{ChannelArn}/messages/{MessageId}?scope=message-status", 200] }, () => GetChannelMessageStatusRequest$, () => GetChannelMessageStatusResponse$
1480
+ ];
1481
+ var GetMessagingSessionEndpoint$ = [9, n0, _GMSE,
1482
+ { [_h]: ["GET", "/endpoints/messaging-session", 200] }, () => GetMessagingSessionEndpointRequest$, () => GetMessagingSessionEndpointResponse$
1483
+ ];
1484
+ var GetMessagingStreamingConfigurations$ = [9, n0, _GMSC,
1485
+ { [_h]: ["GET", "/app-instances/{AppInstanceArn}/streaming-configurations", 200] }, () => GetMessagingStreamingConfigurationsRequest$, () => GetMessagingStreamingConfigurationsResponse$
1486
+ ];
1487
+ var ListChannelBans$ = [9, n0, _LCB,
1488
+ { [_h]: ["GET", "/channels/{ChannelArn}/bans", 200] }, () => ListChannelBansRequest$, () => ListChannelBansResponse$
1489
+ ];
1490
+ var ListChannelFlows$ = [9, n0, _LCF,
1491
+ { [_h]: ["GET", "/channel-flows", 200] }, () => ListChannelFlowsRequest$, () => ListChannelFlowsResponse$
1492
+ ];
1493
+ var ListChannelMemberships$ = [9, n0, _LCM,
1494
+ { [_h]: ["GET", "/channels/{ChannelArn}/memberships", 200] }, () => ListChannelMembershipsRequest$, () => ListChannelMembershipsResponse$
1495
+ ];
1496
+ var ListChannelMembershipsForAppInstanceUser$ = [9, n0, _LCMFAIU,
1497
+ { [_h]: ["GET", "/channels?scope=app-instance-user-memberships", 200] }, () => ListChannelMembershipsForAppInstanceUserRequest$, () => ListChannelMembershipsForAppInstanceUserResponse$
1498
+ ];
1499
+ var ListChannelMessages$ = [9, n0, _LCMi,
1500
+ { [_h]: ["GET", "/channels/{ChannelArn}/messages", 200] }, () => ListChannelMessagesRequest$, () => ListChannelMessagesResponse$
1501
+ ];
1502
+ var ListChannelModerators$ = [9, n0, _LCMis,
1503
+ { [_h]: ["GET", "/channels/{ChannelArn}/moderators", 200] }, () => ListChannelModeratorsRequest$, () => ListChannelModeratorsResponse$
1504
+ ];
1505
+ var ListChannels$ = [9, n0, _LCi,
1506
+ { [_h]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
1507
+ ];
1508
+ var ListChannelsAssociatedWithChannelFlow$ = [9, n0, _LCAWCF,
1509
+ { [_h]: ["GET", "/channels?scope=channel-flow-associations", 200] }, () => ListChannelsAssociatedWithChannelFlowRequest$, () => ListChannelsAssociatedWithChannelFlowResponse$
1510
+ ];
1511
+ var ListChannelsModeratedByAppInstanceUser$ = [9, n0, _LCMBAIU,
1512
+ { [_h]: ["GET", "/channels?scope=app-instance-user-moderated-channels", 200] }, () => ListChannelsModeratedByAppInstanceUserRequest$, () => ListChannelsModeratedByAppInstanceUserResponse$
1513
+ ];
1514
+ var ListSubChannels$ = [9, n0, _LSC,
1515
+ { [_h]: ["GET", "/channels/{ChannelArn}/subchannels", 200] }, () => ListSubChannelsRequest$, () => ListSubChannelsResponse$
1516
+ ];
1517
+ var ListTagsForResource$ = [9, n0, _LTFR,
1518
+ { [_h]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1519
+ ];
1520
+ var PutChannelExpirationSettings$ = [9, n0, _PCES,
1521
+ { [_h]: ["PUT", "/channels/{ChannelArn}/expiration-settings", 200] }, () => PutChannelExpirationSettingsRequest$, () => PutChannelExpirationSettingsResponse$
1522
+ ];
1523
+ var PutChannelMembershipPreferences$ = [9, n0, _PCMP,
1524
+ { [_h]: ["PUT", "/channels/{ChannelArn}/memberships/{MemberArn}/preferences", 200] }, () => PutChannelMembershipPreferencesRequest$, () => PutChannelMembershipPreferencesResponse$
1525
+ ];
1526
+ var PutMessagingStreamingConfigurations$ = [9, n0, _PMSC,
1527
+ { [_h]: ["PUT", "/app-instances/{AppInstanceArn}/streaming-configurations", 200] }, () => PutMessagingStreamingConfigurationsRequest$, () => PutMessagingStreamingConfigurationsResponse$
1528
+ ];
1529
+ var RedactChannelMessage$ = [9, n0, _RCM,
1530
+ { [_h]: ["POST", "/channels/{ChannelArn}/messages/{MessageId}?operation=redact", 200] }, () => RedactChannelMessageRequest$, () => RedactChannelMessageResponse$
1531
+ ];
1532
+ var SearchChannels$ = [9, n0, _SCe,
1533
+ { [_h]: ["POST", "/channels?operation=search", 200] }, () => SearchChannelsRequest$, () => SearchChannelsResponse$
1534
+ ];
1535
+ var SendChannelMessage$ = [9, n0, _SCM,
1536
+ { [_h]: ["POST", "/channels/{ChannelArn}/messages", 201] }, () => SendChannelMessageRequest$, () => SendChannelMessageResponse$
1537
+ ];
1538
+ var TagResource$ = [9, n0, _TR,
1539
+ { [_h]: ["POST", "/tags?operation=tag-resource", 204] }, () => TagResourceRequest$, () => __Unit
1540
+ ];
1541
+ var UntagResource$ = [9, n0, _UR,
1542
+ { [_h]: ["POST", "/tags?operation=untag-resource", 204] }, () => UntagResourceRequest$, () => __Unit
1543
+ ];
1544
+ var UpdateChannel$ = [9, n0, _UC,
1545
+ { [_h]: ["PUT", "/channels/{ChannelArn}", 200] }, () => UpdateChannelRequest$, () => UpdateChannelResponse$
1546
+ ];
1547
+ var UpdateChannelFlow$ = [9, n0, _UCF,
1548
+ { [_h]: ["PUT", "/channel-flows/{ChannelFlowArn}", 200] }, () => UpdateChannelFlowRequest$, () => UpdateChannelFlowResponse$
1549
+ ];
1550
+ var UpdateChannelMessage$ = [9, n0, _UCM,
1551
+ { [_h]: ["PUT", "/channels/{ChannelArn}/messages/{MessageId}", 200] }, () => UpdateChannelMessageRequest$, () => UpdateChannelMessageResponse$
1552
+ ];
1553
+ var UpdateChannelReadMarker$ = [9, n0, _UCRM,
1554
+ { [_h]: ["PUT", "/channels/{ChannelArn}/readMarker", 200] }, () => UpdateChannelReadMarkerRequest$, () => UpdateChannelReadMarkerResponse$
1555
+ ];
1556
+
1557
+ const getRuntimeConfig$1 = (config) => {
1558
+ return {
1559
+ apiVersion: "2021-05-15",
1560
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1561
+ base64Encoder: config?.base64Encoder ?? toBase64,
1562
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1563
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1564
+ extensions: config?.extensions ?? [],
1565
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultChimeSDKMessagingHttpAuthSchemeProvider,
1566
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1567
+ {
1568
+ schemeId: "aws.auth#sigv4",
1569
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1570
+ signer: new AwsSdkSigV4Signer(),
1571
+ },
1572
+ ],
1573
+ logger: config?.logger ?? new NoOpLogger(),
1574
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1575
+ protocolSettings: config?.protocolSettings ?? {
1576
+ defaultNamespace: "com.amazonaws.chimesdkmessaging",
1577
+ errorTypeRegistries,
1578
+ version: "2021-05-15",
1579
+ serviceTarget: "ChimeMessagingService",
1580
+ },
1581
+ serviceId: config?.serviceId ?? "Chime SDK Messaging",
1582
+ urlParser: config?.urlParser ?? parseUrl,
1583
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1584
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1585
+ };
1586
+ };
1587
+
1588
+ const getRuntimeConfig = (config) => {
1589
+ emitWarningIfUnsupportedVersion(process.version);
1590
+ const defaultsMode = resolveDefaultsModeConfig(config);
1591
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1592
+ const clientSharedValues = getRuntimeConfig$1(config);
1593
+ emitWarningIfUnsupportedVersion$1(process.version);
1594
+ const loaderConfig = {
1595
+ profile: config?.profile,
1596
+ logger: clientSharedValues.logger,
1597
+ };
1598
+ return {
1599
+ ...clientSharedValues,
1600
+ ...config,
1601
+ runtime: "node",
1602
+ defaultsMode,
1603
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1604
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1605
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1606
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1607
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1608
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1609
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1610
+ retryMode: config?.retryMode ??
1611
+ loadConfig({
1612
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1613
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1614
+ }, config),
1615
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1616
+ streamCollector: config?.streamCollector ?? streamCollector,
1617
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1618
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1619
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1620
+ };
1621
+ };
1622
+
34
1623
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1624
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1625
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -899,75 +2488,274 @@ const SearchFieldOperator = {
899
2488
  };
900
2489
 
901
2490
  exports.AllowNotifications = AllowNotifications;
2491
+ exports.AppInstanceUserMembershipSummary$ = AppInstanceUserMembershipSummary$;
2492
+ exports.AssociateChannelFlow$ = AssociateChannelFlow$;
902
2493
  exports.AssociateChannelFlowCommand = AssociateChannelFlowCommand;
2494
+ exports.AssociateChannelFlowRequest$ = AssociateChannelFlowRequest$;
2495
+ exports.BadRequestException = BadRequestException;
2496
+ exports.BadRequestException$ = BadRequestException$;
2497
+ exports.BatchChannelMemberships$ = BatchChannelMemberships$;
2498
+ exports.BatchCreateChannelMembership$ = BatchCreateChannelMembership$;
903
2499
  exports.BatchCreateChannelMembershipCommand = BatchCreateChannelMembershipCommand;
2500
+ exports.BatchCreateChannelMembershipError$ = BatchCreateChannelMembershipError$;
2501
+ exports.BatchCreateChannelMembershipRequest$ = BatchCreateChannelMembershipRequest$;
2502
+ exports.BatchCreateChannelMembershipResponse$ = BatchCreateChannelMembershipResponse$;
2503
+ exports.Channel$ = Channel$;
2504
+ exports.ChannelAssociatedWithFlowSummary$ = ChannelAssociatedWithFlowSummary$;
2505
+ exports.ChannelBan$ = ChannelBan$;
2506
+ exports.ChannelBanSummary$ = ChannelBanSummary$;
2507
+ exports.ChannelFlow$ = ChannelFlow$;
2508
+ exports.ChannelFlowCallback$ = ChannelFlowCallback$;
904
2509
  exports.ChannelFlowCallbackCommand = ChannelFlowCallbackCommand;
2510
+ exports.ChannelFlowCallbackRequest$ = ChannelFlowCallbackRequest$;
2511
+ exports.ChannelFlowCallbackResponse$ = ChannelFlowCallbackResponse$;
2512
+ exports.ChannelFlowSummary$ = ChannelFlowSummary$;
2513
+ exports.ChannelMembership$ = ChannelMembership$;
2514
+ exports.ChannelMembershipForAppInstanceUserSummary$ = ChannelMembershipForAppInstanceUserSummary$;
2515
+ exports.ChannelMembershipPreferences$ = ChannelMembershipPreferences$;
2516
+ exports.ChannelMembershipSummary$ = ChannelMembershipSummary$;
905
2517
  exports.ChannelMembershipType = ChannelMembershipType;
2518
+ exports.ChannelMessage$ = ChannelMessage$;
2519
+ exports.ChannelMessageCallback$ = ChannelMessageCallback$;
906
2520
  exports.ChannelMessagePersistenceType = ChannelMessagePersistenceType;
907
2521
  exports.ChannelMessageStatus = ChannelMessageStatus;
2522
+ exports.ChannelMessageStatusStructure$ = ChannelMessageStatusStructure$;
2523
+ exports.ChannelMessageSummary$ = ChannelMessageSummary$;
908
2524
  exports.ChannelMessageType = ChannelMessageType;
909
2525
  exports.ChannelMode = ChannelMode;
2526
+ exports.ChannelModeratedByAppInstanceUserSummary$ = ChannelModeratedByAppInstanceUserSummary$;
2527
+ exports.ChannelModerator$ = ChannelModerator$;
2528
+ exports.ChannelModeratorSummary$ = ChannelModeratorSummary$;
910
2529
  exports.ChannelPrivacy = ChannelPrivacy;
2530
+ exports.ChannelSummary$ = ChannelSummary$;
911
2531
  exports.ChimeSDKMessaging = ChimeSDKMessaging;
912
2532
  exports.ChimeSDKMessagingClient = ChimeSDKMessagingClient;
2533
+ exports.ChimeSDKMessagingServiceException = ChimeSDKMessagingServiceException;
2534
+ exports.ChimeSDKMessagingServiceException$ = ChimeSDKMessagingServiceException$;
2535
+ exports.ConflictException = ConflictException;
2536
+ exports.ConflictException$ = ConflictException$;
2537
+ exports.CreateChannel$ = CreateChannel$;
2538
+ exports.CreateChannelBan$ = CreateChannelBan$;
913
2539
  exports.CreateChannelBanCommand = CreateChannelBanCommand;
2540
+ exports.CreateChannelBanRequest$ = CreateChannelBanRequest$;
2541
+ exports.CreateChannelBanResponse$ = CreateChannelBanResponse$;
914
2542
  exports.CreateChannelCommand = CreateChannelCommand;
2543
+ exports.CreateChannelFlow$ = CreateChannelFlow$;
915
2544
  exports.CreateChannelFlowCommand = CreateChannelFlowCommand;
2545
+ exports.CreateChannelFlowRequest$ = CreateChannelFlowRequest$;
2546
+ exports.CreateChannelFlowResponse$ = CreateChannelFlowResponse$;
2547
+ exports.CreateChannelMembership$ = CreateChannelMembership$;
916
2548
  exports.CreateChannelMembershipCommand = CreateChannelMembershipCommand;
2549
+ exports.CreateChannelMembershipRequest$ = CreateChannelMembershipRequest$;
2550
+ exports.CreateChannelMembershipResponse$ = CreateChannelMembershipResponse$;
2551
+ exports.CreateChannelModerator$ = CreateChannelModerator$;
917
2552
  exports.CreateChannelModeratorCommand = CreateChannelModeratorCommand;
2553
+ exports.CreateChannelModeratorRequest$ = CreateChannelModeratorRequest$;
2554
+ exports.CreateChannelModeratorResponse$ = CreateChannelModeratorResponse$;
2555
+ exports.CreateChannelRequest$ = CreateChannelRequest$;
2556
+ exports.CreateChannelResponse$ = CreateChannelResponse$;
2557
+ exports.DeleteChannel$ = DeleteChannel$;
2558
+ exports.DeleteChannelBan$ = DeleteChannelBan$;
918
2559
  exports.DeleteChannelBanCommand = DeleteChannelBanCommand;
2560
+ exports.DeleteChannelBanRequest$ = DeleteChannelBanRequest$;
919
2561
  exports.DeleteChannelCommand = DeleteChannelCommand;
2562
+ exports.DeleteChannelFlow$ = DeleteChannelFlow$;
920
2563
  exports.DeleteChannelFlowCommand = DeleteChannelFlowCommand;
2564
+ exports.DeleteChannelFlowRequest$ = DeleteChannelFlowRequest$;
2565
+ exports.DeleteChannelMembership$ = DeleteChannelMembership$;
921
2566
  exports.DeleteChannelMembershipCommand = DeleteChannelMembershipCommand;
2567
+ exports.DeleteChannelMembershipRequest$ = DeleteChannelMembershipRequest$;
2568
+ exports.DeleteChannelMessage$ = DeleteChannelMessage$;
922
2569
  exports.DeleteChannelMessageCommand = DeleteChannelMessageCommand;
2570
+ exports.DeleteChannelMessageRequest$ = DeleteChannelMessageRequest$;
2571
+ exports.DeleteChannelModerator$ = DeleteChannelModerator$;
923
2572
  exports.DeleteChannelModeratorCommand = DeleteChannelModeratorCommand;
2573
+ exports.DeleteChannelModeratorRequest$ = DeleteChannelModeratorRequest$;
2574
+ exports.DeleteChannelRequest$ = DeleteChannelRequest$;
2575
+ exports.DeleteMessagingStreamingConfigurations$ = DeleteMessagingStreamingConfigurations$;
924
2576
  exports.DeleteMessagingStreamingConfigurationsCommand = DeleteMessagingStreamingConfigurationsCommand;
2577
+ exports.DeleteMessagingStreamingConfigurationsRequest$ = DeleteMessagingStreamingConfigurationsRequest$;
2578
+ exports.DescribeChannel$ = DescribeChannel$;
2579
+ exports.DescribeChannelBan$ = DescribeChannelBan$;
925
2580
  exports.DescribeChannelBanCommand = DescribeChannelBanCommand;
2581
+ exports.DescribeChannelBanRequest$ = DescribeChannelBanRequest$;
2582
+ exports.DescribeChannelBanResponse$ = DescribeChannelBanResponse$;
926
2583
  exports.DescribeChannelCommand = DescribeChannelCommand;
2584
+ exports.DescribeChannelFlow$ = DescribeChannelFlow$;
927
2585
  exports.DescribeChannelFlowCommand = DescribeChannelFlowCommand;
2586
+ exports.DescribeChannelFlowRequest$ = DescribeChannelFlowRequest$;
2587
+ exports.DescribeChannelFlowResponse$ = DescribeChannelFlowResponse$;
2588
+ exports.DescribeChannelMembership$ = DescribeChannelMembership$;
928
2589
  exports.DescribeChannelMembershipCommand = DescribeChannelMembershipCommand;
2590
+ exports.DescribeChannelMembershipForAppInstanceUser$ = DescribeChannelMembershipForAppInstanceUser$;
929
2591
  exports.DescribeChannelMembershipForAppInstanceUserCommand = DescribeChannelMembershipForAppInstanceUserCommand;
2592
+ exports.DescribeChannelMembershipForAppInstanceUserRequest$ = DescribeChannelMembershipForAppInstanceUserRequest$;
2593
+ exports.DescribeChannelMembershipForAppInstanceUserResponse$ = DescribeChannelMembershipForAppInstanceUserResponse$;
2594
+ exports.DescribeChannelMembershipRequest$ = DescribeChannelMembershipRequest$;
2595
+ exports.DescribeChannelMembershipResponse$ = DescribeChannelMembershipResponse$;
2596
+ exports.DescribeChannelModeratedByAppInstanceUser$ = DescribeChannelModeratedByAppInstanceUser$;
930
2597
  exports.DescribeChannelModeratedByAppInstanceUserCommand = DescribeChannelModeratedByAppInstanceUserCommand;
2598
+ exports.DescribeChannelModeratedByAppInstanceUserRequest$ = DescribeChannelModeratedByAppInstanceUserRequest$;
2599
+ exports.DescribeChannelModeratedByAppInstanceUserResponse$ = DescribeChannelModeratedByAppInstanceUserResponse$;
2600
+ exports.DescribeChannelModerator$ = DescribeChannelModerator$;
931
2601
  exports.DescribeChannelModeratorCommand = DescribeChannelModeratorCommand;
2602
+ exports.DescribeChannelModeratorRequest$ = DescribeChannelModeratorRequest$;
2603
+ exports.DescribeChannelModeratorResponse$ = DescribeChannelModeratorResponse$;
2604
+ exports.DescribeChannelRequest$ = DescribeChannelRequest$;
2605
+ exports.DescribeChannelResponse$ = DescribeChannelResponse$;
2606
+ exports.DisassociateChannelFlow$ = DisassociateChannelFlow$;
932
2607
  exports.DisassociateChannelFlowCommand = DisassociateChannelFlowCommand;
2608
+ exports.DisassociateChannelFlowRequest$ = DisassociateChannelFlowRequest$;
2609
+ exports.ElasticChannelConfiguration$ = ElasticChannelConfiguration$;
933
2610
  exports.ErrorCode = ErrorCode;
934
2611
  exports.ExpirationCriterion = ExpirationCriterion;
2612
+ exports.ExpirationSettings$ = ExpirationSettings$;
935
2613
  exports.FallbackAction = FallbackAction;
2614
+ exports.ForbiddenException = ForbiddenException;
2615
+ exports.ForbiddenException$ = ForbiddenException$;
2616
+ exports.GetChannelMembershipPreferences$ = GetChannelMembershipPreferences$;
936
2617
  exports.GetChannelMembershipPreferencesCommand = GetChannelMembershipPreferencesCommand;
2618
+ exports.GetChannelMembershipPreferencesRequest$ = GetChannelMembershipPreferencesRequest$;
2619
+ exports.GetChannelMembershipPreferencesResponse$ = GetChannelMembershipPreferencesResponse$;
2620
+ exports.GetChannelMessage$ = GetChannelMessage$;
937
2621
  exports.GetChannelMessageCommand = GetChannelMessageCommand;
2622
+ exports.GetChannelMessageRequest$ = GetChannelMessageRequest$;
2623
+ exports.GetChannelMessageResponse$ = GetChannelMessageResponse$;
2624
+ exports.GetChannelMessageStatus$ = GetChannelMessageStatus$;
938
2625
  exports.GetChannelMessageStatusCommand = GetChannelMessageStatusCommand;
2626
+ exports.GetChannelMessageStatusRequest$ = GetChannelMessageStatusRequest$;
2627
+ exports.GetChannelMessageStatusResponse$ = GetChannelMessageStatusResponse$;
2628
+ exports.GetMessagingSessionEndpoint$ = GetMessagingSessionEndpoint$;
939
2629
  exports.GetMessagingSessionEndpointCommand = GetMessagingSessionEndpointCommand;
2630
+ exports.GetMessagingSessionEndpointRequest$ = GetMessagingSessionEndpointRequest$;
2631
+ exports.GetMessagingSessionEndpointResponse$ = GetMessagingSessionEndpointResponse$;
2632
+ exports.GetMessagingStreamingConfigurations$ = GetMessagingStreamingConfigurations$;
940
2633
  exports.GetMessagingStreamingConfigurationsCommand = GetMessagingStreamingConfigurationsCommand;
2634
+ exports.GetMessagingStreamingConfigurationsRequest$ = GetMessagingStreamingConfigurationsRequest$;
2635
+ exports.GetMessagingStreamingConfigurationsResponse$ = GetMessagingStreamingConfigurationsResponse$;
2636
+ exports.Identity$ = Identity$;
941
2637
  exports.InvocationType = InvocationType;
2638
+ exports.LambdaConfiguration$ = LambdaConfiguration$;
2639
+ exports.ListChannelBans$ = ListChannelBans$;
942
2640
  exports.ListChannelBansCommand = ListChannelBansCommand;
2641
+ exports.ListChannelBansRequest$ = ListChannelBansRequest$;
2642
+ exports.ListChannelBansResponse$ = ListChannelBansResponse$;
2643
+ exports.ListChannelFlows$ = ListChannelFlows$;
943
2644
  exports.ListChannelFlowsCommand = ListChannelFlowsCommand;
2645
+ exports.ListChannelFlowsRequest$ = ListChannelFlowsRequest$;
2646
+ exports.ListChannelFlowsResponse$ = ListChannelFlowsResponse$;
2647
+ exports.ListChannelMemberships$ = ListChannelMemberships$;
944
2648
  exports.ListChannelMembershipsCommand = ListChannelMembershipsCommand;
2649
+ exports.ListChannelMembershipsForAppInstanceUser$ = ListChannelMembershipsForAppInstanceUser$;
945
2650
  exports.ListChannelMembershipsForAppInstanceUserCommand = ListChannelMembershipsForAppInstanceUserCommand;
2651
+ exports.ListChannelMembershipsForAppInstanceUserRequest$ = ListChannelMembershipsForAppInstanceUserRequest$;
2652
+ exports.ListChannelMembershipsForAppInstanceUserResponse$ = ListChannelMembershipsForAppInstanceUserResponse$;
2653
+ exports.ListChannelMembershipsRequest$ = ListChannelMembershipsRequest$;
2654
+ exports.ListChannelMembershipsResponse$ = ListChannelMembershipsResponse$;
2655
+ exports.ListChannelMessages$ = ListChannelMessages$;
946
2656
  exports.ListChannelMessagesCommand = ListChannelMessagesCommand;
2657
+ exports.ListChannelMessagesRequest$ = ListChannelMessagesRequest$;
2658
+ exports.ListChannelMessagesResponse$ = ListChannelMessagesResponse$;
2659
+ exports.ListChannelModerators$ = ListChannelModerators$;
947
2660
  exports.ListChannelModeratorsCommand = ListChannelModeratorsCommand;
2661
+ exports.ListChannelModeratorsRequest$ = ListChannelModeratorsRequest$;
2662
+ exports.ListChannelModeratorsResponse$ = ListChannelModeratorsResponse$;
2663
+ exports.ListChannels$ = ListChannels$;
2664
+ exports.ListChannelsAssociatedWithChannelFlow$ = ListChannelsAssociatedWithChannelFlow$;
948
2665
  exports.ListChannelsAssociatedWithChannelFlowCommand = ListChannelsAssociatedWithChannelFlowCommand;
2666
+ exports.ListChannelsAssociatedWithChannelFlowRequest$ = ListChannelsAssociatedWithChannelFlowRequest$;
2667
+ exports.ListChannelsAssociatedWithChannelFlowResponse$ = ListChannelsAssociatedWithChannelFlowResponse$;
949
2668
  exports.ListChannelsCommand = ListChannelsCommand;
2669
+ exports.ListChannelsModeratedByAppInstanceUser$ = ListChannelsModeratedByAppInstanceUser$;
950
2670
  exports.ListChannelsModeratedByAppInstanceUserCommand = ListChannelsModeratedByAppInstanceUserCommand;
2671
+ exports.ListChannelsModeratedByAppInstanceUserRequest$ = ListChannelsModeratedByAppInstanceUserRequest$;
2672
+ exports.ListChannelsModeratedByAppInstanceUserResponse$ = ListChannelsModeratedByAppInstanceUserResponse$;
2673
+ exports.ListChannelsRequest$ = ListChannelsRequest$;
2674
+ exports.ListChannelsResponse$ = ListChannelsResponse$;
2675
+ exports.ListSubChannels$ = ListSubChannels$;
951
2676
  exports.ListSubChannelsCommand = ListSubChannelsCommand;
2677
+ exports.ListSubChannelsRequest$ = ListSubChannelsRequest$;
2678
+ exports.ListSubChannelsResponse$ = ListSubChannelsResponse$;
2679
+ exports.ListTagsForResource$ = ListTagsForResource$;
952
2680
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2681
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2682
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2683
+ exports.MessageAttributeValue$ = MessageAttributeValue$;
953
2684
  exports.MessagingDataType = MessagingDataType;
2685
+ exports.MessagingSessionEndpoint$ = MessagingSessionEndpoint$;
954
2686
  exports.NetworkType = NetworkType;
2687
+ exports.NotFoundException = NotFoundException;
2688
+ exports.NotFoundException$ = NotFoundException$;
2689
+ exports.Processor$ = Processor$;
2690
+ exports.ProcessorConfiguration$ = ProcessorConfiguration$;
2691
+ exports.PushNotificationConfiguration$ = PushNotificationConfiguration$;
2692
+ exports.PushNotificationPreferences$ = PushNotificationPreferences$;
955
2693
  exports.PushNotificationType = PushNotificationType;
2694
+ exports.PutChannelExpirationSettings$ = PutChannelExpirationSettings$;
956
2695
  exports.PutChannelExpirationSettingsCommand = PutChannelExpirationSettingsCommand;
2696
+ exports.PutChannelExpirationSettingsRequest$ = PutChannelExpirationSettingsRequest$;
2697
+ exports.PutChannelExpirationSettingsResponse$ = PutChannelExpirationSettingsResponse$;
2698
+ exports.PutChannelMembershipPreferences$ = PutChannelMembershipPreferences$;
957
2699
  exports.PutChannelMembershipPreferencesCommand = PutChannelMembershipPreferencesCommand;
2700
+ exports.PutChannelMembershipPreferencesRequest$ = PutChannelMembershipPreferencesRequest$;
2701
+ exports.PutChannelMembershipPreferencesResponse$ = PutChannelMembershipPreferencesResponse$;
2702
+ exports.PutMessagingStreamingConfigurations$ = PutMessagingStreamingConfigurations$;
958
2703
  exports.PutMessagingStreamingConfigurationsCommand = PutMessagingStreamingConfigurationsCommand;
2704
+ exports.PutMessagingStreamingConfigurationsRequest$ = PutMessagingStreamingConfigurationsRequest$;
2705
+ exports.PutMessagingStreamingConfigurationsResponse$ = PutMessagingStreamingConfigurationsResponse$;
2706
+ exports.RedactChannelMessage$ = RedactChannelMessage$;
959
2707
  exports.RedactChannelMessageCommand = RedactChannelMessageCommand;
2708
+ exports.RedactChannelMessageRequest$ = RedactChannelMessageRequest$;
2709
+ exports.RedactChannelMessageResponse$ = RedactChannelMessageResponse$;
2710
+ exports.ResourceLimitExceededException = ResourceLimitExceededException;
2711
+ exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
2712
+ exports.SearchChannels$ = SearchChannels$;
960
2713
  exports.SearchChannelsCommand = SearchChannelsCommand;
2714
+ exports.SearchChannelsRequest$ = SearchChannelsRequest$;
2715
+ exports.SearchChannelsResponse$ = SearchChannelsResponse$;
2716
+ exports.SearchField$ = SearchField$;
961
2717
  exports.SearchFieldKey = SearchFieldKey;
962
2718
  exports.SearchFieldOperator = SearchFieldOperator;
2719
+ exports.SendChannelMessage$ = SendChannelMessage$;
963
2720
  exports.SendChannelMessageCommand = SendChannelMessageCommand;
2721
+ exports.SendChannelMessageRequest$ = SendChannelMessageRequest$;
2722
+ exports.SendChannelMessageResponse$ = SendChannelMessageResponse$;
2723
+ exports.ServiceFailureException = ServiceFailureException;
2724
+ exports.ServiceFailureException$ = ServiceFailureException$;
2725
+ exports.ServiceUnavailableException = ServiceUnavailableException;
2726
+ exports.ServiceUnavailableException$ = ServiceUnavailableException$;
964
2727
  exports.SortOrder = SortOrder;
2728
+ exports.StreamingConfiguration$ = StreamingConfiguration$;
2729
+ exports.SubChannelSummary$ = SubChannelSummary$;
2730
+ exports.Tag$ = Tag$;
2731
+ exports.TagResource$ = TagResource$;
965
2732
  exports.TagResourceCommand = TagResourceCommand;
2733
+ exports.TagResourceRequest$ = TagResourceRequest$;
2734
+ exports.Target$ = Target$;
2735
+ exports.ThrottledClientException = ThrottledClientException;
2736
+ exports.ThrottledClientException$ = ThrottledClientException$;
2737
+ exports.UnauthorizedClientException = UnauthorizedClientException;
2738
+ exports.UnauthorizedClientException$ = UnauthorizedClientException$;
2739
+ exports.UntagResource$ = UntagResource$;
966
2740
  exports.UntagResourceCommand = UntagResourceCommand;
2741
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2742
+ exports.UpdateChannel$ = UpdateChannel$;
967
2743
  exports.UpdateChannelCommand = UpdateChannelCommand;
2744
+ exports.UpdateChannelFlow$ = UpdateChannelFlow$;
968
2745
  exports.UpdateChannelFlowCommand = UpdateChannelFlowCommand;
2746
+ exports.UpdateChannelFlowRequest$ = UpdateChannelFlowRequest$;
2747
+ exports.UpdateChannelFlowResponse$ = UpdateChannelFlowResponse$;
2748
+ exports.UpdateChannelMessage$ = UpdateChannelMessage$;
969
2749
  exports.UpdateChannelMessageCommand = UpdateChannelMessageCommand;
2750
+ exports.UpdateChannelMessageRequest$ = UpdateChannelMessageRequest$;
2751
+ exports.UpdateChannelMessageResponse$ = UpdateChannelMessageResponse$;
2752
+ exports.UpdateChannelReadMarker$ = UpdateChannelReadMarker$;
970
2753
  exports.UpdateChannelReadMarkerCommand = UpdateChannelReadMarkerCommand;
2754
+ exports.UpdateChannelReadMarkerRequest$ = UpdateChannelReadMarkerRequest$;
2755
+ exports.UpdateChannelReadMarkerResponse$ = UpdateChannelReadMarkerResponse$;
2756
+ exports.UpdateChannelRequest$ = UpdateChannelRequest$;
2757
+ exports.UpdateChannelResponse$ = UpdateChannelResponse$;
2758
+ exports.errorTypeRegistries = errorTypeRegistries;
971
2759
  exports.paginateListChannelBans = paginateListChannelBans;
972
2760
  exports.paginateListChannelFlows = paginateListChannelFlows;
973
2761
  exports.paginateListChannelMemberships = paginateListChannelMemberships;