@aws-sdk/client-notifications 3.987.0 → 3.988.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 +58 -1384
- package/dist-cjs/models/NotificationsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +121 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1085 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +65 -59
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var NotificationsServiceException = require('./models/NotificationsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -108,1185 +111,6 @@ class NotificationsClient extends smithyClient.Client {
|
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class NotificationsServiceException extends smithyClient.ServiceException {
|
|
112
|
-
constructor(options) {
|
|
113
|
-
super(options);
|
|
114
|
-
Object.setPrototypeOf(this, NotificationsServiceException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
class AccessDeniedException extends NotificationsServiceException {
|
|
119
|
-
name = "AccessDeniedException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
constructor(opts) {
|
|
122
|
-
super({
|
|
123
|
-
name: "AccessDeniedException",
|
|
124
|
-
$fault: "client",
|
|
125
|
-
...opts,
|
|
126
|
-
});
|
|
127
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
class ConflictException extends NotificationsServiceException {
|
|
131
|
-
name = "ConflictException";
|
|
132
|
-
$fault = "client";
|
|
133
|
-
resourceId;
|
|
134
|
-
constructor(opts) {
|
|
135
|
-
super({
|
|
136
|
-
name: "ConflictException",
|
|
137
|
-
$fault: "client",
|
|
138
|
-
...opts,
|
|
139
|
-
});
|
|
140
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
141
|
-
this.resourceId = opts.resourceId;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class InternalServerException extends NotificationsServiceException {
|
|
145
|
-
name = "InternalServerException";
|
|
146
|
-
$fault = "server";
|
|
147
|
-
$retryable = {};
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "InternalServerException",
|
|
151
|
-
$fault: "server",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class ResourceNotFoundException extends NotificationsServiceException {
|
|
158
|
-
name = "ResourceNotFoundException";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
resourceId;
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "ResourceNotFoundException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
168
|
-
this.resourceId = opts.resourceId;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
class ServiceQuotaExceededException extends NotificationsServiceException {
|
|
172
|
-
name = "ServiceQuotaExceededException";
|
|
173
|
-
$fault = "client";
|
|
174
|
-
resourceType;
|
|
175
|
-
resourceId;
|
|
176
|
-
serviceCode;
|
|
177
|
-
quotaCode;
|
|
178
|
-
constructor(opts) {
|
|
179
|
-
super({
|
|
180
|
-
name: "ServiceQuotaExceededException",
|
|
181
|
-
$fault: "client",
|
|
182
|
-
...opts,
|
|
183
|
-
});
|
|
184
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
185
|
-
this.resourceType = opts.resourceType;
|
|
186
|
-
this.resourceId = opts.resourceId;
|
|
187
|
-
this.serviceCode = opts.serviceCode;
|
|
188
|
-
this.quotaCode = opts.quotaCode;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
class ThrottlingException extends NotificationsServiceException {
|
|
192
|
-
name = "ThrottlingException";
|
|
193
|
-
$fault = "client";
|
|
194
|
-
$retryable = {
|
|
195
|
-
throttling: true,
|
|
196
|
-
};
|
|
197
|
-
serviceCode;
|
|
198
|
-
quotaCode;
|
|
199
|
-
retryAfterSeconds;
|
|
200
|
-
constructor(opts) {
|
|
201
|
-
super({
|
|
202
|
-
name: "ThrottlingException",
|
|
203
|
-
$fault: "client",
|
|
204
|
-
...opts,
|
|
205
|
-
});
|
|
206
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
207
|
-
this.serviceCode = opts.serviceCode;
|
|
208
|
-
this.quotaCode = opts.quotaCode;
|
|
209
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
class ValidationException extends NotificationsServiceException {
|
|
213
|
-
name = "ValidationException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
reason;
|
|
216
|
-
fieldList;
|
|
217
|
-
constructor(opts) {
|
|
218
|
-
super({
|
|
219
|
-
name: "ValidationException",
|
|
220
|
-
$fault: "client",
|
|
221
|
-
...opts,
|
|
222
|
-
});
|
|
223
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
224
|
-
this.reason = opts.reason;
|
|
225
|
-
this.fieldList = opts.fieldList;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
const _AC = "AssociateChannel";
|
|
230
|
-
const _ACR = "AssociateChannelRequest";
|
|
231
|
-
const _ACRs = "AssociateChannelResponse";
|
|
232
|
-
const _AD = "AggregationDetail";
|
|
233
|
-
const _ADE = "AccessDeniedException";
|
|
234
|
-
const _AK = "AggregationKey";
|
|
235
|
-
const _AKg = "AggregationKeys";
|
|
236
|
-
const _AMNAC = "AssociateManagedNotificationAccountContact";
|
|
237
|
-
const _AMNACR = "AssociateManagedNotificationAccountContactRequest";
|
|
238
|
-
const _AMNACRs = "AssociateManagedNotificationAccountContactResponse";
|
|
239
|
-
const _AMNACRss = "AssociateManagedNotificationAdditionalChannelRequest";
|
|
240
|
-
const _AMNACRsso = "AssociateManagedNotificationAdditionalChannelResponse";
|
|
241
|
-
const _AMNACs = "AssociateManagedNotificationAdditionalChannel";
|
|
242
|
-
const _AOU = "AssociateOrganizationalUnit";
|
|
243
|
-
const _AOUR = "AssociateOrganizationalUnitRequest";
|
|
244
|
-
const _AOURs = "AssociateOrganizationalUnitResponse";
|
|
245
|
-
const _AS = "AggregationSummary";
|
|
246
|
-
const _CE = "ConflictException";
|
|
247
|
-
const _CER = "CreateEventRule";
|
|
248
|
-
const _CERR = "CreateEventRuleRequest";
|
|
249
|
-
const _CERRr = "CreateEventRuleResponse";
|
|
250
|
-
const _CNC = "CreateNotificationConfiguration";
|
|
251
|
-
const _CNCR = "CreateNotificationConfigurationRequest";
|
|
252
|
-
const _CNCRr = "CreateNotificationConfigurationResponse";
|
|
253
|
-
const _D = "Dimension";
|
|
254
|
-
const _DC = "DisassociateChannel";
|
|
255
|
-
const _DCR = "DisassociateChannelRequest";
|
|
256
|
-
const _DCRi = "DisassociateChannelResponse";
|
|
257
|
-
const _DER = "DeleteEventRule";
|
|
258
|
-
const _DERR = "DeleteEventRuleRequest";
|
|
259
|
-
const _DERRe = "DeleteEventRuleResponse";
|
|
260
|
-
const _DMNAC = "DisassociateManagedNotificationAccountContact";
|
|
261
|
-
const _DMNACR = "DisassociateManagedNotificationAccountContactRequest";
|
|
262
|
-
const _DMNACRi = "DisassociateManagedNotificationAccountContactResponse";
|
|
263
|
-
const _DMNACRis = "DisassociateManagedNotificationAdditionalChannelRequest";
|
|
264
|
-
const _DMNACRisa = "DisassociateManagedNotificationAdditionalChannelResponse";
|
|
265
|
-
const _DMNACi = "DisassociateManagedNotificationAdditionalChannel";
|
|
266
|
-
const _DNAFO = "DisableNotificationsAccessForOrganization";
|
|
267
|
-
const _DNAFOR = "DisableNotificationsAccessForOrganizationRequest";
|
|
268
|
-
const _DNAFORi = "DisableNotificationsAccessForOrganizationResponse";
|
|
269
|
-
const _DNC = "DeleteNotificationConfiguration";
|
|
270
|
-
const _DNCR = "DeleteNotificationConfigurationRequest";
|
|
271
|
-
const _DNCRe = "DeleteNotificationConfigurationResponse";
|
|
272
|
-
const _DNH = "DeregisterNotificationHub";
|
|
273
|
-
const _DNHR = "DeregisterNotificationHubRequest";
|
|
274
|
-
const _DNHRe = "DeregisterNotificationHubResponse";
|
|
275
|
-
const _DOU = "DisassociateOrganizationalUnit";
|
|
276
|
-
const _DOUR = "DisassociateOrganizationalUnitRequest";
|
|
277
|
-
const _DOURi = "DisassociateOrganizationalUnitResponse";
|
|
278
|
-
const _Di = "Dimensions";
|
|
279
|
-
const _ENAFO = "EnableNotificationsAccessForOrganization";
|
|
280
|
-
const _ENAFOR = "EnableNotificationsAccessForOrganizationRequest";
|
|
281
|
-
const _ENAFORn = "EnableNotificationsAccessForOrganizationResponse";
|
|
282
|
-
const _ER = "EventRules";
|
|
283
|
-
const _ERS = "EventRuleStructure";
|
|
284
|
-
const _ERSS = "EventRuleStatusSummary";
|
|
285
|
-
const _GER = "GetEventRule";
|
|
286
|
-
const _GERR = "GetEventRuleRequest";
|
|
287
|
-
const _GERRe = "GetEventRuleResponse";
|
|
288
|
-
const _GMNC = "GetManagedNotificationConfiguration";
|
|
289
|
-
const _GMNCE = "GetManagedNotificationChildEvent";
|
|
290
|
-
const _GMNCER = "GetManagedNotificationChildEventRequest";
|
|
291
|
-
const _GMNCERe = "GetManagedNotificationChildEventResponse";
|
|
292
|
-
const _GMNCR = "GetManagedNotificationConfigurationRequest";
|
|
293
|
-
const _GMNCRe = "GetManagedNotificationConfigurationResponse";
|
|
294
|
-
const _GMNE = "GetManagedNotificationEvent";
|
|
295
|
-
const _GMNER = "GetManagedNotificationEventRequest";
|
|
296
|
-
const _GMNERe = "GetManagedNotificationEventResponse";
|
|
297
|
-
const _GNAFO = "GetNotificationsAccessForOrganization";
|
|
298
|
-
const _GNAFOR = "GetNotificationsAccessForOrganizationRequest";
|
|
299
|
-
const _GNAFORe = "GetNotificationsAccessForOrganizationResponse";
|
|
300
|
-
const _GNC = "GetNotificationConfiguration";
|
|
301
|
-
const _GNCR = "GetNotificationConfigurationRequest";
|
|
302
|
-
const _GNCRe = "GetNotificationConfigurationResponse";
|
|
303
|
-
const _GNE = "GetNotificationEvent";
|
|
304
|
-
const _GNER = "GetNotificationEventRequest";
|
|
305
|
-
const _GNERe = "GetNotificationEventResponse";
|
|
306
|
-
const _ISE = "InternalServerException";
|
|
307
|
-
const _LC = "ListChannels";
|
|
308
|
-
const _LCR = "ListChannelsRequest";
|
|
309
|
-
const _LCRi = "ListChannelsResponse";
|
|
310
|
-
const _LER = "ListEventRules";
|
|
311
|
-
const _LERR = "ListEventRulesRequest";
|
|
312
|
-
const _LERRi = "ListEventRulesResponse";
|
|
313
|
-
const _LMA = "ListMemberAccounts";
|
|
314
|
-
const _LMAR = "ListMemberAccountsRequest";
|
|
315
|
-
const _LMARi = "ListMemberAccountsResponse";
|
|
316
|
-
const _LMNC = "ListManagedNotificationConfigurations";
|
|
317
|
-
const _LMNCA = "ListManagedNotificationChannelAssociations";
|
|
318
|
-
const _LMNCAR = "ListManagedNotificationChannelAssociationsRequest";
|
|
319
|
-
const _LMNCARi = "ListManagedNotificationChannelAssociationsResponse";
|
|
320
|
-
const _LMNCE = "ListManagedNotificationChildEvents";
|
|
321
|
-
const _LMNCER = "ListManagedNotificationChildEventsRequest";
|
|
322
|
-
const _LMNCERi = "ListManagedNotificationChildEventsResponse";
|
|
323
|
-
const _LMNCR = "ListManagedNotificationConfigurationsRequest";
|
|
324
|
-
const _LMNCRi = "ListManagedNotificationConfigurationsResponse";
|
|
325
|
-
const _LMNE = "ListManagedNotificationEvents";
|
|
326
|
-
const _LMNER = "ListManagedNotificationEventsRequest";
|
|
327
|
-
const _LMNERi = "ListManagedNotificationEventsResponse";
|
|
328
|
-
const _LNC = "ListNotificationConfigurations";
|
|
329
|
-
const _LNCR = "ListNotificationConfigurationsRequest";
|
|
330
|
-
const _LNCRi = "ListNotificationConfigurationsResponse";
|
|
331
|
-
const _LNE = "ListNotificationEvents";
|
|
332
|
-
const _LNER = "ListNotificationEventsRequest";
|
|
333
|
-
const _LNERi = "ListNotificationEventsResponse";
|
|
334
|
-
const _LNH = "ListNotificationHubs";
|
|
335
|
-
const _LNHR = "ListNotificationHubsRequest";
|
|
336
|
-
const _LNHRi = "ListNotificationHubsResponse";
|
|
337
|
-
const _LOU = "ListOrganizationalUnits";
|
|
338
|
-
const _LOUR = "ListOrganizationalUnitsRequest";
|
|
339
|
-
const _LOURi = "ListOrganizationalUnitsResponse";
|
|
340
|
-
const _LTFR = "ListTagsForResource";
|
|
341
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
342
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
343
|
-
const _M = "Media";
|
|
344
|
-
const _MA = "MemberAccount";
|
|
345
|
-
const _MAe = "MemberAccounts";
|
|
346
|
-
const _MC = "MessageComponents";
|
|
347
|
-
const _MCS = "MessageComponentsSummary";
|
|
348
|
-
const _ME = "MediaElement";
|
|
349
|
-
const _MNC = "ManagedNotificationConfigurations";
|
|
350
|
-
const _MNCA = "ManagedNotificationChannelAssociations";
|
|
351
|
-
const _MNCAS = "ManagedNotificationChannelAssociationSummary";
|
|
352
|
-
const _MNCE = "ManagedNotificationChildEvent";
|
|
353
|
-
const _MNCEO = "ManagedNotificationChildEventOverview";
|
|
354
|
-
const _MNCES = "ManagedNotificationChildEventSummary";
|
|
355
|
-
const _MNCEa = "ManagedNotificationChildEvents";
|
|
356
|
-
const _MNCS = "ManagedNotificationConfigurationStructure";
|
|
357
|
-
const _MNE = "ManagedNotificationEvent";
|
|
358
|
-
const _MNEO = "ManagedNotificationEventOverview";
|
|
359
|
-
const _MNES = "ManagedNotificationEventSummary";
|
|
360
|
-
const _MNEa = "ManagedNotificationEvents";
|
|
361
|
-
const _MSEMS = "ManagedSourceEventMetadataSummary";
|
|
362
|
-
const _NAFO = "NotificationsAccessForOrganization";
|
|
363
|
-
const _NC = "NotificationConfigurations";
|
|
364
|
-
const _NCS = "NotificationConfigurationStructure";
|
|
365
|
-
const _NE = "NotificationEvents";
|
|
366
|
-
const _NEO = "NotificationEventOverview";
|
|
367
|
-
const _NES = "NotificationEventSchema";
|
|
368
|
-
const _NESo = "NotificationEventSummary";
|
|
369
|
-
const _NH = "NotificationHubs";
|
|
370
|
-
const _NHO = "NotificationHubOverview";
|
|
371
|
-
const _NHSS = "NotificationHubStatusSummary";
|
|
372
|
-
const _R = "Resource";
|
|
373
|
-
const _RA = "Retry-After";
|
|
374
|
-
const _RNFE = "ResourceNotFoundException";
|
|
375
|
-
const _RNH = "RegisterNotificationHub";
|
|
376
|
-
const _RNHR = "RegisterNotificationHubRequest";
|
|
377
|
-
const _RNHRe = "RegisterNotificationHubResponse";
|
|
378
|
-
const _Re = "Resources";
|
|
379
|
-
const _SDD = "SummarizationDimensionDetail";
|
|
380
|
-
const _SDDu = "SummarizationDimensionDetails";
|
|
381
|
-
const _SDO = "SummarizationDimensionOverview";
|
|
382
|
-
const _SDOu = "SummarizationDimensionOverviews";
|
|
383
|
-
const _SEM = "SourceEventMetadata";
|
|
384
|
-
const _SEMS = "SourceEventMetadataSummary";
|
|
385
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
386
|
-
const _SSBR = "StatusSummaryByRegion";
|
|
387
|
-
const _TE = "ThrottlingException";
|
|
388
|
-
const _TP = "TextParts";
|
|
389
|
-
const _TPV = "TextPartValue";
|
|
390
|
-
const _TR = "TagResource";
|
|
391
|
-
const _TRR = "TagResourceRequest";
|
|
392
|
-
const _TRRa = "TagResourceResponse";
|
|
393
|
-
const _UER = "UpdateEventRule";
|
|
394
|
-
const _UERR = "UpdateEventRuleRequest";
|
|
395
|
-
const _UERRp = "UpdateEventRuleResponse";
|
|
396
|
-
const _UNC = "UpdateNotificationConfiguration";
|
|
397
|
-
const _UNCR = "UpdateNotificationConfigurationRequest";
|
|
398
|
-
const _UNCRp = "UpdateNotificationConfigurationResponse";
|
|
399
|
-
const _UR = "UntagResource";
|
|
400
|
-
const _URR = "UntagResourceRequest";
|
|
401
|
-
const _URRn = "UntagResourceResponse";
|
|
402
|
-
const _VE = "ValidationException";
|
|
403
|
-
const _VEF = "ValidationExceptionField";
|
|
404
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
405
|
-
const _a = "arn";
|
|
406
|
-
const _aA = "aggregatedAccounts";
|
|
407
|
-
const _aB = "aggregatedBy";
|
|
408
|
-
const _aD = "aggregationDuration";
|
|
409
|
-
const _aDg = "aggregationDetail";
|
|
410
|
-
const _aET = "aggregationEventType";
|
|
411
|
-
const _aI = "accountId";
|
|
412
|
-
const _aMNEA = "aggregateManagedNotificationEventArn";
|
|
413
|
-
const _aNEA = "aggregateNotificationEventArn";
|
|
414
|
-
const _aNR = "aggregatedNotificationRegions";
|
|
415
|
-
const _aOU = "aggregatedOrganizationalUnits";
|
|
416
|
-
const _aR = "aggregatedRegions";
|
|
417
|
-
const _aS = "aggregationSummary";
|
|
418
|
-
const _aSD = "additionalSummarizationDimensions";
|
|
419
|
-
const _aSc = "accessStatus";
|
|
420
|
-
const _c = "client";
|
|
421
|
-
const _cA = "channelArn";
|
|
422
|
-
const _cAh = "channelAssociations";
|
|
423
|
-
const _cD = "completeDescription";
|
|
424
|
-
const _cE = "childEvent";
|
|
425
|
-
const _cI = "contactIdentifier";
|
|
426
|
-
const _cIh = "channelIdentifier";
|
|
427
|
-
const _cT = "creationTime";
|
|
428
|
-
const _cTh = "channelType";
|
|
429
|
-
const _ca = "category";
|
|
430
|
-
const _cap = "caption";
|
|
431
|
-
const _ch = "channels";
|
|
432
|
-
const _co = "content";
|
|
433
|
-
const _cou = "count";
|
|
434
|
-
const _d = "description";
|
|
435
|
-
const _dT = "displayText";
|
|
436
|
-
const _dU = "detailUrl";
|
|
437
|
-
const _di = "dimensions";
|
|
438
|
-
const _e = "error";
|
|
439
|
-
const _eC = "eventCount";
|
|
440
|
-
const _eOR = "eventOriginRegion";
|
|
441
|
-
const _eOT = "eventOccurrenceTime";
|
|
442
|
-
const _eP = "eventPattern";
|
|
443
|
-
const _eR = "eventRules";
|
|
444
|
-
const _eRS = "eventRuleSource";
|
|
445
|
-
const _eS = "eventStatus";
|
|
446
|
-
const _eT = "eventType";
|
|
447
|
-
const _eTV = "eventTypeVersion";
|
|
448
|
-
const _eTn = "endTime";
|
|
449
|
-
const _fL = "fieldList";
|
|
450
|
-
const _h = "headline";
|
|
451
|
-
const _hE = "httpError";
|
|
452
|
-
const _hH = "httpHeader";
|
|
453
|
-
const _hQ = "httpQuery";
|
|
454
|
-
const _ht = "http";
|
|
455
|
-
const _i = "id";
|
|
456
|
-
const _iCE = "includeChildEvents";
|
|
457
|
-
const _l = "locale";
|
|
458
|
-
const _lAT = "lastActivationTime";
|
|
459
|
-
const _m = "message";
|
|
460
|
-
const _mA = "memberAccount";
|
|
461
|
-
const _mAe = "memberAccounts";
|
|
462
|
-
const _mC = "messageComponents";
|
|
463
|
-
const _mI = "mediaId";
|
|
464
|
-
const _mNC = "managedNotificationConfigurations";
|
|
465
|
-
const _mNCA = "managedNotificationConfigurationArn";
|
|
466
|
-
const _mNCE = "managedNotificationChildEvents";
|
|
467
|
-
const _mNE = "managedNotificationEvents";
|
|
468
|
-
const _mR = "managedRules";
|
|
469
|
-
const _mRa = "maxResults";
|
|
470
|
-
const _me = "media";
|
|
471
|
-
const _n = "name";
|
|
472
|
-
const _nAFO = "notificationsAccessForOrganization";
|
|
473
|
-
const _nC = "notificationConfigurations";
|
|
474
|
-
const _nCA = "notificationConfigurationArn";
|
|
475
|
-
const _nE = "notificationEvents";
|
|
476
|
-
const _nEo = "notificationEvent";
|
|
477
|
-
const _nH = "notificationHubs";
|
|
478
|
-
const _nHR = "notificationHubRegion";
|
|
479
|
-
const _nT = "nextToken";
|
|
480
|
-
const _nTo = "notificationType";
|
|
481
|
-
const _oO = "overrideOption";
|
|
482
|
-
const _oU = "organizationalUnits";
|
|
483
|
-
const _oUI = "organizationalUnitId";
|
|
484
|
-
const _pS = "paragraphSummary";
|
|
485
|
-
const _qC = "quotaCode";
|
|
486
|
-
const _r = "regions";
|
|
487
|
-
const _rA = "relatedAccount";
|
|
488
|
-
const _rAS = "retryAfterSeconds";
|
|
489
|
-
const _rI = "resourceId";
|
|
490
|
-
const _rR = "relatedResources";
|
|
491
|
-
const _rT = "resourceType";
|
|
492
|
-
const _re = "reason";
|
|
493
|
-
const _s = "source";
|
|
494
|
-
const _sC = "subCategory";
|
|
495
|
-
const _sCe = "serviceCode";
|
|
496
|
-
const _sD = "summarizationDimensions";
|
|
497
|
-
const _sEDU = "sourceEventDetailUrl";
|
|
498
|
-
const _sEDUDT = "sourceEventDetailUrlDisplayText";
|
|
499
|
-
const _sEI = "sourceEventId";
|
|
500
|
-
const _sEM = "sourceEventMetadata";
|
|
501
|
-
const _sR = "statusReason";
|
|
502
|
-
const _sS = "statusSummary";
|
|
503
|
-
const _sSBR = "statusSummaryByRegion";
|
|
504
|
-
const _sT = "startTime";
|
|
505
|
-
const _sV = "schemaVersion";
|
|
506
|
-
const _sVa = "sampleValues";
|
|
507
|
-
const _se = "server";
|
|
508
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.notifications";
|
|
509
|
-
const _st = "status";
|
|
510
|
-
const _su = "subtype";
|
|
511
|
-
const _t = "tags";
|
|
512
|
-
const _tBL = "textByLocale";
|
|
513
|
-
const _tK = "tagKeys";
|
|
514
|
-
const _tP = "textParts";
|
|
515
|
-
const _ty = "type";
|
|
516
|
-
const _u = "url";
|
|
517
|
-
const _v = "value";
|
|
518
|
-
const n0 = "com.amazonaws.notifications";
|
|
519
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
520
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
521
|
-
[_m],
|
|
522
|
-
[0], 1
|
|
523
|
-
];
|
|
524
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
525
|
-
var AggregationDetail$ = [3, n0, _AD,
|
|
526
|
-
0,
|
|
527
|
-
[_sD],
|
|
528
|
-
[() => SummarizationDimensionDetails]
|
|
529
|
-
];
|
|
530
|
-
var AggregationKey$ = [3, n0, _AK,
|
|
531
|
-
0,
|
|
532
|
-
[_n, _v],
|
|
533
|
-
[0, 0], 2
|
|
534
|
-
];
|
|
535
|
-
var AggregationSummary$ = [3, n0, _AS,
|
|
536
|
-
0,
|
|
537
|
-
[_eC, _aB, _aA, _aR, _aOU, _aSD],
|
|
538
|
-
[1, () => AggregationKeys, () => SummarizationDimensionOverview$, () => SummarizationDimensionOverview$, () => SummarizationDimensionOverview$, () => SummarizationDimensionOverviews], 4
|
|
539
|
-
];
|
|
540
|
-
var AssociateChannelRequest$ = [3, n0, _ACR,
|
|
541
|
-
0,
|
|
542
|
-
[_a, _nCA],
|
|
543
|
-
[[0, 1], 0], 2
|
|
544
|
-
];
|
|
545
|
-
var AssociateChannelResponse$ = [3, n0, _ACRs,
|
|
546
|
-
0,
|
|
547
|
-
[],
|
|
548
|
-
[]
|
|
549
|
-
];
|
|
550
|
-
var AssociateManagedNotificationAccountContactRequest$ = [3, n0, _AMNACR,
|
|
551
|
-
0,
|
|
552
|
-
[_cI, _mNCA],
|
|
553
|
-
[[0, 1], 0], 2
|
|
554
|
-
];
|
|
555
|
-
var AssociateManagedNotificationAccountContactResponse$ = [3, n0, _AMNACRs,
|
|
556
|
-
0,
|
|
557
|
-
[],
|
|
558
|
-
[]
|
|
559
|
-
];
|
|
560
|
-
var AssociateManagedNotificationAdditionalChannelRequest$ = [3, n0, _AMNACRss,
|
|
561
|
-
0,
|
|
562
|
-
[_cA, _mNCA],
|
|
563
|
-
[[0, 1], 0], 2
|
|
564
|
-
];
|
|
565
|
-
var AssociateManagedNotificationAdditionalChannelResponse$ = [3, n0, _AMNACRsso,
|
|
566
|
-
0,
|
|
567
|
-
[],
|
|
568
|
-
[]
|
|
569
|
-
];
|
|
570
|
-
var AssociateOrganizationalUnitRequest$ = [3, n0, _AOUR,
|
|
571
|
-
0,
|
|
572
|
-
[_oUI, _nCA],
|
|
573
|
-
[[0, 1], 0], 2
|
|
574
|
-
];
|
|
575
|
-
var AssociateOrganizationalUnitResponse$ = [3, n0, _AOURs,
|
|
576
|
-
0,
|
|
577
|
-
[],
|
|
578
|
-
[]
|
|
579
|
-
];
|
|
580
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
581
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
582
|
-
[_m, _rI],
|
|
583
|
-
[0, 0], 2
|
|
584
|
-
];
|
|
585
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
586
|
-
var CreateEventRuleRequest$ = [3, n0, _CERR,
|
|
587
|
-
0,
|
|
588
|
-
[_nCA, _s, _eT, _r, _eP],
|
|
589
|
-
[0, 0, 0, 64 | 0, 0], 4
|
|
590
|
-
];
|
|
591
|
-
var CreateEventRuleResponse$ = [3, n0, _CERRr,
|
|
592
|
-
0,
|
|
593
|
-
[_a, _nCA, _sSBR],
|
|
594
|
-
[0, 0, () => StatusSummaryByRegion], 3
|
|
595
|
-
];
|
|
596
|
-
var CreateNotificationConfigurationRequest$ = [3, n0, _CNCR,
|
|
597
|
-
0,
|
|
598
|
-
[_n, _d, _aD, _t],
|
|
599
|
-
[0, 0, 0, 128 | 0], 2
|
|
600
|
-
];
|
|
601
|
-
var CreateNotificationConfigurationResponse$ = [3, n0, _CNCRr,
|
|
602
|
-
0,
|
|
603
|
-
[_a, _st],
|
|
604
|
-
[0, 0], 2
|
|
605
|
-
];
|
|
606
|
-
var DeleteEventRuleRequest$ = [3, n0, _DERR,
|
|
607
|
-
0,
|
|
608
|
-
[_a],
|
|
609
|
-
[[0, 1]], 1
|
|
610
|
-
];
|
|
611
|
-
var DeleteEventRuleResponse$ = [3, n0, _DERRe,
|
|
612
|
-
0,
|
|
613
|
-
[],
|
|
614
|
-
[]
|
|
615
|
-
];
|
|
616
|
-
var DeleteNotificationConfigurationRequest$ = [3, n0, _DNCR,
|
|
617
|
-
0,
|
|
618
|
-
[_a],
|
|
619
|
-
[[0, 1]], 1
|
|
620
|
-
];
|
|
621
|
-
var DeleteNotificationConfigurationResponse$ = [3, n0, _DNCRe,
|
|
622
|
-
0,
|
|
623
|
-
[],
|
|
624
|
-
[]
|
|
625
|
-
];
|
|
626
|
-
var DeregisterNotificationHubRequest$ = [3, n0, _DNHR,
|
|
627
|
-
0,
|
|
628
|
-
[_nHR],
|
|
629
|
-
[[0, 1]], 1
|
|
630
|
-
];
|
|
631
|
-
var DeregisterNotificationHubResponse$ = [3, n0, _DNHRe,
|
|
632
|
-
0,
|
|
633
|
-
[_nHR, _sS],
|
|
634
|
-
[0, () => NotificationHubStatusSummary$], 2
|
|
635
|
-
];
|
|
636
|
-
var Dimension$ = [3, n0, _D,
|
|
637
|
-
0,
|
|
638
|
-
[_n, _v],
|
|
639
|
-
[0, 0], 2
|
|
640
|
-
];
|
|
641
|
-
var DisableNotificationsAccessForOrganizationRequest$ = [3, n0, _DNAFOR,
|
|
642
|
-
0,
|
|
643
|
-
[],
|
|
644
|
-
[]
|
|
645
|
-
];
|
|
646
|
-
var DisableNotificationsAccessForOrganizationResponse$ = [3, n0, _DNAFORi,
|
|
647
|
-
0,
|
|
648
|
-
[],
|
|
649
|
-
[]
|
|
650
|
-
];
|
|
651
|
-
var DisassociateChannelRequest$ = [3, n0, _DCR,
|
|
652
|
-
0,
|
|
653
|
-
[_a, _nCA],
|
|
654
|
-
[[0, 1], 0], 2
|
|
655
|
-
];
|
|
656
|
-
var DisassociateChannelResponse$ = [3, n0, _DCRi,
|
|
657
|
-
0,
|
|
658
|
-
[],
|
|
659
|
-
[]
|
|
660
|
-
];
|
|
661
|
-
var DisassociateManagedNotificationAccountContactRequest$ = [3, n0, _DMNACR,
|
|
662
|
-
0,
|
|
663
|
-
[_cI, _mNCA],
|
|
664
|
-
[[0, 1], 0], 2
|
|
665
|
-
];
|
|
666
|
-
var DisassociateManagedNotificationAccountContactResponse$ = [3, n0, _DMNACRi,
|
|
667
|
-
0,
|
|
668
|
-
[],
|
|
669
|
-
[]
|
|
670
|
-
];
|
|
671
|
-
var DisassociateManagedNotificationAdditionalChannelRequest$ = [3, n0, _DMNACRis,
|
|
672
|
-
0,
|
|
673
|
-
[_cA, _mNCA],
|
|
674
|
-
[[0, 1], 0], 2
|
|
675
|
-
];
|
|
676
|
-
var DisassociateManagedNotificationAdditionalChannelResponse$ = [3, n0, _DMNACRisa,
|
|
677
|
-
0,
|
|
678
|
-
[],
|
|
679
|
-
[]
|
|
680
|
-
];
|
|
681
|
-
var DisassociateOrganizationalUnitRequest$ = [3, n0, _DOUR,
|
|
682
|
-
0,
|
|
683
|
-
[_oUI, _nCA],
|
|
684
|
-
[[0, 1], 0], 2
|
|
685
|
-
];
|
|
686
|
-
var DisassociateOrganizationalUnitResponse$ = [3, n0, _DOURi,
|
|
687
|
-
0,
|
|
688
|
-
[],
|
|
689
|
-
[]
|
|
690
|
-
];
|
|
691
|
-
var EnableNotificationsAccessForOrganizationRequest$ = [3, n0, _ENAFOR,
|
|
692
|
-
0,
|
|
693
|
-
[],
|
|
694
|
-
[]
|
|
695
|
-
];
|
|
696
|
-
var EnableNotificationsAccessForOrganizationResponse$ = [3, n0, _ENAFORn,
|
|
697
|
-
0,
|
|
698
|
-
[],
|
|
699
|
-
[]
|
|
700
|
-
];
|
|
701
|
-
var EventRuleStatusSummary$ = [3, n0, _ERSS,
|
|
702
|
-
0,
|
|
703
|
-
[_st, _re],
|
|
704
|
-
[0, 0], 2
|
|
705
|
-
];
|
|
706
|
-
var EventRuleStructure$ = [3, n0, _ERS,
|
|
707
|
-
0,
|
|
708
|
-
[_a, _nCA, _cT, _s, _eT, _eP, _r, _mR, _sSBR],
|
|
709
|
-
[0, 0, 5, 0, 0, 0, 64 | 0, 64 | 0, () => StatusSummaryByRegion], 9
|
|
710
|
-
];
|
|
711
|
-
var GetEventRuleRequest$ = [3, n0, _GERR,
|
|
712
|
-
0,
|
|
713
|
-
[_a],
|
|
714
|
-
[[0, 1]], 1
|
|
715
|
-
];
|
|
716
|
-
var GetEventRuleResponse$ = [3, n0, _GERRe,
|
|
717
|
-
0,
|
|
718
|
-
[_a, _nCA, _cT, _s, _eT, _eP, _r, _mR, _sSBR],
|
|
719
|
-
[0, 0, 5, 0, 0, 0, 64 | 0, 64 | 0, () => StatusSummaryByRegion], 9
|
|
720
|
-
];
|
|
721
|
-
var GetManagedNotificationChildEventRequest$ = [3, n0, _GMNCER,
|
|
722
|
-
0,
|
|
723
|
-
[_a, _l],
|
|
724
|
-
[[0, 1], [0, { [_hQ]: _l }]], 1
|
|
725
|
-
];
|
|
726
|
-
var GetManagedNotificationChildEventResponse$ = [3, n0, _GMNCERe,
|
|
727
|
-
0,
|
|
728
|
-
[_a, _mNCA, _cT, _co],
|
|
729
|
-
[0, 0, 5, () => ManagedNotificationChildEvent$], 4
|
|
730
|
-
];
|
|
731
|
-
var GetManagedNotificationConfigurationRequest$ = [3, n0, _GMNCR,
|
|
732
|
-
0,
|
|
733
|
-
[_a],
|
|
734
|
-
[[0, 1]], 1
|
|
735
|
-
];
|
|
736
|
-
var GetManagedNotificationConfigurationResponse$ = [3, n0, _GMNCRe,
|
|
737
|
-
0,
|
|
738
|
-
[_a, _n, _d, _ca, _sC],
|
|
739
|
-
[0, 0, 0, 0, 0], 5
|
|
740
|
-
];
|
|
741
|
-
var GetManagedNotificationEventRequest$ = [3, n0, _GMNER,
|
|
742
|
-
0,
|
|
743
|
-
[_a, _l],
|
|
744
|
-
[[0, 1], [0, { [_hQ]: _l }]], 1
|
|
745
|
-
];
|
|
746
|
-
var GetManagedNotificationEventResponse$ = [3, n0, _GMNERe,
|
|
747
|
-
0,
|
|
748
|
-
[_a, _mNCA, _cT, _co],
|
|
749
|
-
[0, 0, 5, () => ManagedNotificationEvent$], 4
|
|
750
|
-
];
|
|
751
|
-
var GetNotificationConfigurationRequest$ = [3, n0, _GNCR,
|
|
752
|
-
0,
|
|
753
|
-
[_a],
|
|
754
|
-
[[0, 1]], 1
|
|
755
|
-
];
|
|
756
|
-
var GetNotificationConfigurationResponse$ = [3, n0, _GNCRe,
|
|
757
|
-
0,
|
|
758
|
-
[_a, _n, _d, _st, _cT, _aD, _su],
|
|
759
|
-
[0, 0, 0, 0, 5, 0, 0], 5
|
|
760
|
-
];
|
|
761
|
-
var GetNotificationEventRequest$ = [3, n0, _GNER,
|
|
762
|
-
0,
|
|
763
|
-
[_a, _l],
|
|
764
|
-
[[0, 1], [0, { [_hQ]: _l }]], 1
|
|
765
|
-
];
|
|
766
|
-
var GetNotificationEventResponse$ = [3, n0, _GNERe,
|
|
767
|
-
0,
|
|
768
|
-
[_a, _nCA, _cT, _co],
|
|
769
|
-
[0, 0, 5, () => NotificationEventSchema$], 4
|
|
770
|
-
];
|
|
771
|
-
var GetNotificationsAccessForOrganizationRequest$ = [3, n0, _GNAFOR,
|
|
772
|
-
0,
|
|
773
|
-
[],
|
|
774
|
-
[]
|
|
775
|
-
];
|
|
776
|
-
var GetNotificationsAccessForOrganizationResponse$ = [3, n0, _GNAFORe,
|
|
777
|
-
0,
|
|
778
|
-
[_nAFO],
|
|
779
|
-
[() => NotificationsAccessForOrganization$], 1
|
|
780
|
-
];
|
|
781
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
782
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
783
|
-
[_m],
|
|
784
|
-
[0], 1
|
|
785
|
-
];
|
|
786
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
787
|
-
var ListChannelsRequest$ = [3, n0, _LCR,
|
|
788
|
-
0,
|
|
789
|
-
[_nCA, _mRa, _nT],
|
|
790
|
-
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
791
|
-
];
|
|
792
|
-
var ListChannelsResponse$ = [3, n0, _LCRi,
|
|
793
|
-
0,
|
|
794
|
-
[_ch, _nT],
|
|
795
|
-
[64 | 0, 0], 1
|
|
796
|
-
];
|
|
797
|
-
var ListEventRulesRequest$ = [3, n0, _LERR,
|
|
798
|
-
0,
|
|
799
|
-
[_nCA, _mRa, _nT],
|
|
800
|
-
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
801
|
-
];
|
|
802
|
-
var ListEventRulesResponse$ = [3, n0, _LERRi,
|
|
803
|
-
0,
|
|
804
|
-
[_eR, _nT],
|
|
805
|
-
[() => EventRules, 0], 1
|
|
806
|
-
];
|
|
807
|
-
var ListManagedNotificationChannelAssociationsRequest$ = [3, n0, _LMNCAR,
|
|
808
|
-
0,
|
|
809
|
-
[_mNCA, _mRa, _nT],
|
|
810
|
-
[[0, { [_hQ]: _mNCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
811
|
-
];
|
|
812
|
-
var ListManagedNotificationChannelAssociationsResponse$ = [3, n0, _LMNCARi,
|
|
813
|
-
0,
|
|
814
|
-
[_cAh, _nT],
|
|
815
|
-
[() => ManagedNotificationChannelAssociations, 0], 1
|
|
816
|
-
];
|
|
817
|
-
var ListManagedNotificationChildEventsRequest$ = [3, n0, _LMNCER,
|
|
818
|
-
0,
|
|
819
|
-
[_aMNEA, _sT, _eTn, _l, _mRa, _rA, _oUI, _nT],
|
|
820
|
-
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eTn }], [0, { [_hQ]: _l }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _rA }], [0, { [_hQ]: _oUI }], [0, { [_hQ]: _nT }]], 1
|
|
821
|
-
];
|
|
822
|
-
var ListManagedNotificationChildEventsResponse$ = [3, n0, _LMNCERi,
|
|
823
|
-
0,
|
|
824
|
-
[_mNCE, _nT],
|
|
825
|
-
[() => ManagedNotificationChildEvents, 0], 1
|
|
826
|
-
];
|
|
827
|
-
var ListManagedNotificationConfigurationsRequest$ = [3, n0, _LMNCR,
|
|
828
|
-
0,
|
|
829
|
-
[_cIh, _mRa, _nT],
|
|
830
|
-
[[0, { [_hQ]: _cIh }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
831
|
-
];
|
|
832
|
-
var ListManagedNotificationConfigurationsResponse$ = [3, n0, _LMNCRi,
|
|
833
|
-
0,
|
|
834
|
-
[_mNC, _nT],
|
|
835
|
-
[() => ManagedNotificationConfigurations, 0], 1
|
|
836
|
-
];
|
|
837
|
-
var ListManagedNotificationEventsRequest$ = [3, n0, _LMNER,
|
|
838
|
-
0,
|
|
839
|
-
[_sT, _eTn, _l, _s, _mRa, _nT, _oUI, _rA],
|
|
840
|
-
[[5, { [_hQ]: _sT }], [5, { [_hQ]: _eTn }], [0, { [_hQ]: _l }], [0, { [_hQ]: _s }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _oUI }], [0, { [_hQ]: _rA }]]
|
|
841
|
-
];
|
|
842
|
-
var ListManagedNotificationEventsResponse$ = [3, n0, _LMNERi,
|
|
843
|
-
0,
|
|
844
|
-
[_mNE, _nT],
|
|
845
|
-
[() => ManagedNotificationEvents, 0], 1
|
|
846
|
-
];
|
|
847
|
-
var ListMemberAccountsRequest$ = [3, n0, _LMAR,
|
|
848
|
-
0,
|
|
849
|
-
[_nCA, _mRa, _nT, _mA, _st, _oUI],
|
|
850
|
-
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _mA }], [0, { [_hQ]: _st }], [0, { [_hQ]: _oUI }]], 1
|
|
851
|
-
];
|
|
852
|
-
var ListMemberAccountsResponse$ = [3, n0, _LMARi,
|
|
853
|
-
0,
|
|
854
|
-
[_mAe, _nT],
|
|
855
|
-
[() => MemberAccounts, 0], 1
|
|
856
|
-
];
|
|
857
|
-
var ListNotificationConfigurationsRequest$ = [3, n0, _LNCR,
|
|
858
|
-
0,
|
|
859
|
-
[_eRS, _cA, _st, _su, _mRa, _nT],
|
|
860
|
-
[[0, { [_hQ]: _eRS }], [0, { [_hQ]: _cA }], [0, { [_hQ]: _st }], [0, { [_hQ]: _su }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
861
|
-
];
|
|
862
|
-
var ListNotificationConfigurationsResponse$ = [3, n0, _LNCRi,
|
|
863
|
-
0,
|
|
864
|
-
[_nC, _nT],
|
|
865
|
-
[() => NotificationConfigurations, 0], 1
|
|
866
|
-
];
|
|
867
|
-
var ListNotificationEventsRequest$ = [3, n0, _LNER,
|
|
868
|
-
0,
|
|
869
|
-
[_sT, _eTn, _l, _s, _iCE, _aNEA, _mRa, _nT, _oUI],
|
|
870
|
-
[[5, { [_hQ]: _sT }], [5, { [_hQ]: _eTn }], [0, { [_hQ]: _l }], [0, { [_hQ]: _s }], [2, { [_hQ]: _iCE }], [0, { [_hQ]: _aNEA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _oUI }]]
|
|
871
|
-
];
|
|
872
|
-
var ListNotificationEventsResponse$ = [3, n0, _LNERi,
|
|
873
|
-
0,
|
|
874
|
-
[_nE, _nT],
|
|
875
|
-
[() => NotificationEvents, 0], 1
|
|
876
|
-
];
|
|
877
|
-
var ListNotificationHubsRequest$ = [3, n0, _LNHR,
|
|
878
|
-
0,
|
|
879
|
-
[_mRa, _nT],
|
|
880
|
-
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]]
|
|
881
|
-
];
|
|
882
|
-
var ListNotificationHubsResponse$ = [3, n0, _LNHRi,
|
|
883
|
-
0,
|
|
884
|
-
[_nH, _nT],
|
|
885
|
-
[() => NotificationHubs, 0], 1
|
|
886
|
-
];
|
|
887
|
-
var ListOrganizationalUnitsRequest$ = [3, n0, _LOUR,
|
|
888
|
-
0,
|
|
889
|
-
[_nCA, _mRa, _nT],
|
|
890
|
-
[[0, { [_hQ]: _nCA }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 1
|
|
891
|
-
];
|
|
892
|
-
var ListOrganizationalUnitsResponse$ = [3, n0, _LOURi,
|
|
893
|
-
0,
|
|
894
|
-
[_oU, _nT],
|
|
895
|
-
[64 | 0, 0], 1
|
|
896
|
-
];
|
|
897
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
898
|
-
0,
|
|
899
|
-
[_a],
|
|
900
|
-
[[0, 1]], 1
|
|
901
|
-
];
|
|
902
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
903
|
-
0,
|
|
904
|
-
[_t],
|
|
905
|
-
[128 | 0]
|
|
906
|
-
];
|
|
907
|
-
var ManagedNotificationChannelAssociationSummary$ = [3, n0, _MNCAS,
|
|
908
|
-
0,
|
|
909
|
-
[_cIh, _cTh, _oO],
|
|
910
|
-
[0, 0, 0], 2
|
|
911
|
-
];
|
|
912
|
-
var ManagedNotificationChildEvent$ = [3, n0, _MNCE,
|
|
913
|
-
0,
|
|
914
|
-
[_sV, _i, _mC, _nTo, _aMNEA, _tP, _sEDU, _sEDUDT, _eS, _sT, _eTn, _oUI, _aDg],
|
|
915
|
-
[0, 0, () => MessageComponents$, 0, 0, () => TextParts, 0, 0, 0, 5, 5, 0, () => AggregationDetail$], 6
|
|
916
|
-
];
|
|
917
|
-
var ManagedNotificationChildEventOverview$ = [3, n0, _MNCEO,
|
|
918
|
-
0,
|
|
919
|
-
[_a, _mNCA, _rA, _cT, _cE, _aMNEA, _oUI],
|
|
920
|
-
[0, 0, 0, 5, () => ManagedNotificationChildEventSummary$, 0, 0], 6
|
|
921
|
-
];
|
|
922
|
-
var ManagedNotificationChildEventSummary$ = [3, n0, _MNCES,
|
|
923
|
-
0,
|
|
924
|
-
[_sV, _sEM, _mC, _aDg, _eS, _nTo],
|
|
925
|
-
[0, () => ManagedSourceEventMetadataSummary$, () => MessageComponentsSummary$, () => AggregationDetail$, 0, 0], 6
|
|
926
|
-
];
|
|
927
|
-
var ManagedNotificationConfigurationStructure$ = [3, n0, _MNCS,
|
|
928
|
-
0,
|
|
929
|
-
[_a, _n, _d],
|
|
930
|
-
[0, 0, 0], 3
|
|
931
|
-
];
|
|
932
|
-
var ManagedNotificationEvent$ = [3, n0, _MNE,
|
|
933
|
-
0,
|
|
934
|
-
[_sV, _i, _mC, _nTo, _tP, _sEDU, _sEDUDT, _eS, _aET, _aS, _sT, _eTn, _oUI],
|
|
935
|
-
[0, 0, () => MessageComponents$, 0, () => TextParts, 0, 0, 0, 0, () => AggregationSummary$, 5, 5, 0], 5
|
|
936
|
-
];
|
|
937
|
-
var ManagedNotificationEventOverview$ = [3, n0, _MNEO,
|
|
938
|
-
0,
|
|
939
|
-
[_a, _mNCA, _rA, _cT, _nEo, _aET, _oUI, _aS, _aNR],
|
|
940
|
-
[0, 0, 0, 5, () => ManagedNotificationEventSummary$, 0, 0, () => AggregationSummary$, 64 | 0], 5
|
|
941
|
-
];
|
|
942
|
-
var ManagedNotificationEventSummary$ = [3, n0, _MNES,
|
|
943
|
-
0,
|
|
944
|
-
[_sV, _sEM, _mC, _eS, _nTo],
|
|
945
|
-
[0, () => ManagedSourceEventMetadataSummary$, () => MessageComponentsSummary$, 0, 0], 5
|
|
946
|
-
];
|
|
947
|
-
var ManagedSourceEventMetadataSummary$ = [3, n0, _MSEMS,
|
|
948
|
-
0,
|
|
949
|
-
[_s, _eT, _eOR],
|
|
950
|
-
[0, 0, 0], 2
|
|
951
|
-
];
|
|
952
|
-
var MediaElement$ = [3, n0, _ME,
|
|
953
|
-
0,
|
|
954
|
-
[_mI, _ty, _u, _cap],
|
|
955
|
-
[0, 0, 0, 0], 4
|
|
956
|
-
];
|
|
957
|
-
var MemberAccount$ = [3, n0, _MA,
|
|
958
|
-
0,
|
|
959
|
-
[_aI, _st, _sR, _oUI, _nCA],
|
|
960
|
-
[0, 0, 0, 0, 0], 4
|
|
961
|
-
];
|
|
962
|
-
var MessageComponents$ = [3, n0, _MC,
|
|
963
|
-
0,
|
|
964
|
-
[_h, _pS, _cD, _di],
|
|
965
|
-
[0, 0, 0, () => Dimensions]
|
|
966
|
-
];
|
|
967
|
-
var MessageComponentsSummary$ = [3, n0, _MCS,
|
|
968
|
-
0,
|
|
969
|
-
[_h],
|
|
970
|
-
[0], 1
|
|
971
|
-
];
|
|
972
|
-
var NotificationConfigurationStructure$ = [3, n0, _NCS,
|
|
973
|
-
0,
|
|
974
|
-
[_a, _n, _d, _st, _cT, _aD, _su],
|
|
975
|
-
[0, 0, 0, 0, 5, 0, 0], 5
|
|
976
|
-
];
|
|
977
|
-
var NotificationEventOverview$ = [3, n0, _NEO,
|
|
978
|
-
0,
|
|
979
|
-
[_a, _nCA, _rA, _cT, _nEo, _aET, _aNEA, _aS, _oUI],
|
|
980
|
-
[0, 0, 0, 5, () => NotificationEventSummary$, 0, 0, () => AggregationSummary$, 0], 5
|
|
981
|
-
];
|
|
982
|
-
var NotificationEventSchema$ = [3, n0, _NES,
|
|
983
|
-
0,
|
|
984
|
-
[_sV, _i, _sEM, _mC, _nTo, _tP, _me, _sEDU, _sEDUDT, _eS, _aET, _aNEA, _aS, _sT, _eTn, _oUI],
|
|
985
|
-
[0, 0, () => SourceEventMetadata$, () => MessageComponents$, 0, () => TextParts, () => Media, 0, 0, 0, 0, 0, () => AggregationSummary$, 5, 5, 0], 7
|
|
986
|
-
];
|
|
987
|
-
var NotificationEventSummary$ = [3, n0, _NESo,
|
|
988
|
-
0,
|
|
989
|
-
[_sV, _sEM, _mC, _eS, _nTo],
|
|
990
|
-
[0, () => SourceEventMetadataSummary$, () => MessageComponentsSummary$, 0, 0], 5
|
|
991
|
-
];
|
|
992
|
-
var NotificationHubOverview$ = [3, n0, _NHO,
|
|
993
|
-
0,
|
|
994
|
-
[_nHR, _sS, _cT, _lAT],
|
|
995
|
-
[0, () => NotificationHubStatusSummary$, 5, 5], 3
|
|
996
|
-
];
|
|
997
|
-
var NotificationHubStatusSummary$ = [3, n0, _NHSS,
|
|
998
|
-
0,
|
|
999
|
-
[_st, _re],
|
|
1000
|
-
[0, 0], 2
|
|
1001
|
-
];
|
|
1002
|
-
var NotificationsAccessForOrganization$ = [3, n0, _NAFO,
|
|
1003
|
-
0,
|
|
1004
|
-
[_aSc],
|
|
1005
|
-
[0], 1
|
|
1006
|
-
];
|
|
1007
|
-
var RegisterNotificationHubRequest$ = [3, n0, _RNHR,
|
|
1008
|
-
0,
|
|
1009
|
-
[_nHR],
|
|
1010
|
-
[0], 1
|
|
1011
|
-
];
|
|
1012
|
-
var RegisterNotificationHubResponse$ = [3, n0, _RNHRe,
|
|
1013
|
-
0,
|
|
1014
|
-
[_nHR, _sS, _cT, _lAT],
|
|
1015
|
-
[0, () => NotificationHubStatusSummary$, 5, 5], 3
|
|
1016
|
-
];
|
|
1017
|
-
var Resource$ = [3, n0, _R,
|
|
1018
|
-
0,
|
|
1019
|
-
[_i, _a, _dU, _t],
|
|
1020
|
-
[0, 0, 0, 64 | 0]
|
|
1021
|
-
];
|
|
1022
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1023
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1024
|
-
[_m, _rI],
|
|
1025
|
-
[0, 0], 2
|
|
1026
|
-
];
|
|
1027
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1028
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1029
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1030
|
-
[_m, _rT, _rI, _sCe, _qC],
|
|
1031
|
-
[0, 0, 0, 0, 0], 2
|
|
1032
|
-
];
|
|
1033
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1034
|
-
var SourceEventMetadata$ = [3, n0, _SEM,
|
|
1035
|
-
0,
|
|
1036
|
-
[_eTV, _sEI, _rA, _s, _eOT, _eT, _rR, _eOR],
|
|
1037
|
-
[0, 0, 0, 0, 5, 0, () => Resources, 0], 7
|
|
1038
|
-
];
|
|
1039
|
-
var SourceEventMetadataSummary$ = [3, n0, _SEMS,
|
|
1040
|
-
0,
|
|
1041
|
-
[_s, _eT, _eOR],
|
|
1042
|
-
[0, 0, 0], 2
|
|
1043
|
-
];
|
|
1044
|
-
var SummarizationDimensionDetail$ = [3, n0, _SDD,
|
|
1045
|
-
0,
|
|
1046
|
-
[_n, _v],
|
|
1047
|
-
[0, 0], 2
|
|
1048
|
-
];
|
|
1049
|
-
var SummarizationDimensionOverview$ = [3, n0, _SDO,
|
|
1050
|
-
0,
|
|
1051
|
-
[_n, _cou, _sVa],
|
|
1052
|
-
[0, 1, 64 | 0], 2
|
|
1053
|
-
];
|
|
1054
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1055
|
-
0,
|
|
1056
|
-
[_a, _t],
|
|
1057
|
-
[[0, 1], 128 | 0], 2
|
|
1058
|
-
];
|
|
1059
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1060
|
-
0,
|
|
1061
|
-
[],
|
|
1062
|
-
[]
|
|
1063
|
-
];
|
|
1064
|
-
var TextPartValue$ = [3, n0, _TPV,
|
|
1065
|
-
0,
|
|
1066
|
-
[_ty, _dT, _tBL, _u],
|
|
1067
|
-
[0, 0, 128 | 0, 0], 1
|
|
1068
|
-
];
|
|
1069
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1070
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1071
|
-
[_m, _sCe, _qC, _rAS],
|
|
1072
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
1073
|
-
];
|
|
1074
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1075
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1076
|
-
0,
|
|
1077
|
-
[_a, _tK],
|
|
1078
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1079
|
-
];
|
|
1080
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1081
|
-
0,
|
|
1082
|
-
[],
|
|
1083
|
-
[]
|
|
1084
|
-
];
|
|
1085
|
-
var UpdateEventRuleRequest$ = [3, n0, _UERR,
|
|
1086
|
-
0,
|
|
1087
|
-
[_a, _eP, _r],
|
|
1088
|
-
[[0, 1], 0, 64 | 0], 1
|
|
1089
|
-
];
|
|
1090
|
-
var UpdateEventRuleResponse$ = [3, n0, _UERRp,
|
|
1091
|
-
0,
|
|
1092
|
-
[_a, _nCA, _sSBR],
|
|
1093
|
-
[0, 0, () => StatusSummaryByRegion], 3
|
|
1094
|
-
];
|
|
1095
|
-
var UpdateNotificationConfigurationRequest$ = [3, n0, _UNCR,
|
|
1096
|
-
0,
|
|
1097
|
-
[_a, _n, _d, _aD],
|
|
1098
|
-
[[0, 1], 0, 0, 0], 1
|
|
1099
|
-
];
|
|
1100
|
-
var UpdateNotificationConfigurationResponse$ = [3, n0, _UNCRp,
|
|
1101
|
-
0,
|
|
1102
|
-
[_a],
|
|
1103
|
-
[0], 1
|
|
1104
|
-
];
|
|
1105
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1106
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1107
|
-
[_m, _re, _fL],
|
|
1108
|
-
[0, 0, () => ValidationExceptionFieldList], 1
|
|
1109
|
-
];
|
|
1110
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1111
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1112
|
-
0,
|
|
1113
|
-
[_n, _m],
|
|
1114
|
-
[0, 0], 2
|
|
1115
|
-
];
|
|
1116
|
-
var NotificationsServiceException$ = [-3, _sm, "NotificationsServiceException", 0, [], []];
|
|
1117
|
-
schema.TypeRegistry.for(_sm).registerError(NotificationsServiceException$, NotificationsServiceException);
|
|
1118
|
-
var AggregationKeys = [1, n0, _AKg,
|
|
1119
|
-
0, () => AggregationKey$
|
|
1120
|
-
];
|
|
1121
|
-
var Dimensions = [1, n0, _Di,
|
|
1122
|
-
0, () => Dimension$
|
|
1123
|
-
];
|
|
1124
|
-
var EventRules = [1, n0, _ER,
|
|
1125
|
-
0, () => EventRuleStructure$
|
|
1126
|
-
];
|
|
1127
|
-
var ManagedNotificationChannelAssociations = [1, n0, _MNCA,
|
|
1128
|
-
0, () => ManagedNotificationChannelAssociationSummary$
|
|
1129
|
-
];
|
|
1130
|
-
var ManagedNotificationChildEvents = [1, n0, _MNCEa,
|
|
1131
|
-
0, () => ManagedNotificationChildEventOverview$
|
|
1132
|
-
];
|
|
1133
|
-
var ManagedNotificationConfigurations = [1, n0, _MNC,
|
|
1134
|
-
0, () => ManagedNotificationConfigurationStructure$
|
|
1135
|
-
];
|
|
1136
|
-
var ManagedNotificationEvents = [1, n0, _MNEa,
|
|
1137
|
-
0, () => ManagedNotificationEventOverview$
|
|
1138
|
-
];
|
|
1139
|
-
var Media = [1, n0, _M,
|
|
1140
|
-
0, () => MediaElement$
|
|
1141
|
-
];
|
|
1142
|
-
var MemberAccounts = [1, n0, _MAe,
|
|
1143
|
-
0, () => MemberAccount$
|
|
1144
|
-
];
|
|
1145
|
-
var NotificationConfigurations = [1, n0, _NC,
|
|
1146
|
-
0, () => NotificationConfigurationStructure$
|
|
1147
|
-
];
|
|
1148
|
-
var NotificationEvents = [1, n0, _NE,
|
|
1149
|
-
0, () => NotificationEventOverview$
|
|
1150
|
-
];
|
|
1151
|
-
var NotificationHubs = [1, n0, _NH,
|
|
1152
|
-
0, () => NotificationHubOverview$
|
|
1153
|
-
];
|
|
1154
|
-
var Resources = [1, n0, _Re,
|
|
1155
|
-
0, () => Resource$
|
|
1156
|
-
];
|
|
1157
|
-
var SummarizationDimensionDetails = [1, n0, _SDDu,
|
|
1158
|
-
0, () => SummarizationDimensionDetail$
|
|
1159
|
-
];
|
|
1160
|
-
var SummarizationDimensionOverviews = [1, n0, _SDOu,
|
|
1161
|
-
0, () => SummarizationDimensionOverview$
|
|
1162
|
-
];
|
|
1163
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1164
|
-
0, () => ValidationExceptionField$
|
|
1165
|
-
];
|
|
1166
|
-
var StatusSummaryByRegion = [2, n0, _SSBR,
|
|
1167
|
-
0, 0, () => EventRuleStatusSummary$
|
|
1168
|
-
];
|
|
1169
|
-
var TextParts = [2, n0, _TP,
|
|
1170
|
-
0, 0, () => TextPartValue$
|
|
1171
|
-
];
|
|
1172
|
-
var AssociateChannel$ = [9, n0, _AC,
|
|
1173
|
-
{ [_ht]: ["POST", "/channels/associate/{arn}", 201] }, () => AssociateChannelRequest$, () => AssociateChannelResponse$
|
|
1174
|
-
];
|
|
1175
|
-
var AssociateManagedNotificationAccountContact$ = [9, n0, _AMNAC,
|
|
1176
|
-
{ [_ht]: ["PUT", "/contacts/associate-managed-notification/{contactIdentifier}", 201] }, () => AssociateManagedNotificationAccountContactRequest$, () => AssociateManagedNotificationAccountContactResponse$
|
|
1177
|
-
];
|
|
1178
|
-
var AssociateManagedNotificationAdditionalChannel$ = [9, n0, _AMNACs,
|
|
1179
|
-
{ [_ht]: ["PUT", "/channels/associate-managed-notification/{channelArn}", 201] }, () => AssociateManagedNotificationAdditionalChannelRequest$, () => AssociateManagedNotificationAdditionalChannelResponse$
|
|
1180
|
-
];
|
|
1181
|
-
var AssociateOrganizationalUnit$ = [9, n0, _AOU,
|
|
1182
|
-
{ [_ht]: ["POST", "/organizational-units/associate/{organizationalUnitId}", 201] }, () => AssociateOrganizationalUnitRequest$, () => AssociateOrganizationalUnitResponse$
|
|
1183
|
-
];
|
|
1184
|
-
var CreateEventRule$ = [9, n0, _CER,
|
|
1185
|
-
{ [_ht]: ["POST", "/event-rules", 201] }, () => CreateEventRuleRequest$, () => CreateEventRuleResponse$
|
|
1186
|
-
];
|
|
1187
|
-
var CreateNotificationConfiguration$ = [9, n0, _CNC,
|
|
1188
|
-
{ [_ht]: ["POST", "/notification-configurations", 201] }, () => CreateNotificationConfigurationRequest$, () => CreateNotificationConfigurationResponse$
|
|
1189
|
-
];
|
|
1190
|
-
var DeleteEventRule$ = [9, n0, _DER,
|
|
1191
|
-
{ [_ht]: ["DELETE", "/event-rules/{arn}", 200] }, () => DeleteEventRuleRequest$, () => DeleteEventRuleResponse$
|
|
1192
|
-
];
|
|
1193
|
-
var DeleteNotificationConfiguration$ = [9, n0, _DNC,
|
|
1194
|
-
{ [_ht]: ["DELETE", "/notification-configurations/{arn}", 200] }, () => DeleteNotificationConfigurationRequest$, () => DeleteNotificationConfigurationResponse$
|
|
1195
|
-
];
|
|
1196
|
-
var DeregisterNotificationHub$ = [9, n0, _DNH,
|
|
1197
|
-
{ [_ht]: ["DELETE", "/notification-hubs/{notificationHubRegion}", 200] }, () => DeregisterNotificationHubRequest$, () => DeregisterNotificationHubResponse$
|
|
1198
|
-
];
|
|
1199
|
-
var DisableNotificationsAccessForOrganization$ = [9, n0, _DNAFO,
|
|
1200
|
-
{ [_ht]: ["DELETE", "/organization/access", 200] }, () => DisableNotificationsAccessForOrganizationRequest$, () => DisableNotificationsAccessForOrganizationResponse$
|
|
1201
|
-
];
|
|
1202
|
-
var DisassociateChannel$ = [9, n0, _DC,
|
|
1203
|
-
{ [_ht]: ["POST", "/channels/disassociate/{arn}", 200] }, () => DisassociateChannelRequest$, () => DisassociateChannelResponse$
|
|
1204
|
-
];
|
|
1205
|
-
var DisassociateManagedNotificationAccountContact$ = [9, n0, _DMNAC,
|
|
1206
|
-
{ [_ht]: ["PUT", "/contacts/disassociate-managed-notification/{contactIdentifier}", 200] }, () => DisassociateManagedNotificationAccountContactRequest$, () => DisassociateManagedNotificationAccountContactResponse$
|
|
1207
|
-
];
|
|
1208
|
-
var DisassociateManagedNotificationAdditionalChannel$ = [9, n0, _DMNACi,
|
|
1209
|
-
{ [_ht]: ["PUT", "/channels/disassociate-managed-notification/{channelArn}", 200] }, () => DisassociateManagedNotificationAdditionalChannelRequest$, () => DisassociateManagedNotificationAdditionalChannelResponse$
|
|
1210
|
-
];
|
|
1211
|
-
var DisassociateOrganizationalUnit$ = [9, n0, _DOU,
|
|
1212
|
-
{ [_ht]: ["POST", "/organizational-units/disassociate/{organizationalUnitId}", 200] }, () => DisassociateOrganizationalUnitRequest$, () => DisassociateOrganizationalUnitResponse$
|
|
1213
|
-
];
|
|
1214
|
-
var EnableNotificationsAccessForOrganization$ = [9, n0, _ENAFO,
|
|
1215
|
-
{ [_ht]: ["POST", "/organization/access", 200] }, () => EnableNotificationsAccessForOrganizationRequest$, () => EnableNotificationsAccessForOrganizationResponse$
|
|
1216
|
-
];
|
|
1217
|
-
var GetEventRule$ = [9, n0, _GER,
|
|
1218
|
-
{ [_ht]: ["GET", "/event-rules/{arn}", 200] }, () => GetEventRuleRequest$, () => GetEventRuleResponse$
|
|
1219
|
-
];
|
|
1220
|
-
var GetManagedNotificationChildEvent$ = [9, n0, _GMNCE,
|
|
1221
|
-
{ [_ht]: ["GET", "/managed-notification-child-events/{arn}", 200] }, () => GetManagedNotificationChildEventRequest$, () => GetManagedNotificationChildEventResponse$
|
|
1222
|
-
];
|
|
1223
|
-
var GetManagedNotificationConfiguration$ = [9, n0, _GMNC,
|
|
1224
|
-
{ [_ht]: ["GET", "/managed-notification-configurations/{arn}", 200] }, () => GetManagedNotificationConfigurationRequest$, () => GetManagedNotificationConfigurationResponse$
|
|
1225
|
-
];
|
|
1226
|
-
var GetManagedNotificationEvent$ = [9, n0, _GMNE,
|
|
1227
|
-
{ [_ht]: ["GET", "/managed-notification-events/{arn}", 200] }, () => GetManagedNotificationEventRequest$, () => GetManagedNotificationEventResponse$
|
|
1228
|
-
];
|
|
1229
|
-
var GetNotificationConfiguration$ = [9, n0, _GNC,
|
|
1230
|
-
{ [_ht]: ["GET", "/notification-configurations/{arn}", 200] }, () => GetNotificationConfigurationRequest$, () => GetNotificationConfigurationResponse$
|
|
1231
|
-
];
|
|
1232
|
-
var GetNotificationEvent$ = [9, n0, _GNE,
|
|
1233
|
-
{ [_ht]: ["GET", "/notification-events/{arn}", 200] }, () => GetNotificationEventRequest$, () => GetNotificationEventResponse$
|
|
1234
|
-
];
|
|
1235
|
-
var GetNotificationsAccessForOrganization$ = [9, n0, _GNAFO,
|
|
1236
|
-
{ [_ht]: ["GET", "/organization/access", 200] }, () => GetNotificationsAccessForOrganizationRequest$, () => GetNotificationsAccessForOrganizationResponse$
|
|
1237
|
-
];
|
|
1238
|
-
var ListChannels$ = [9, n0, _LC,
|
|
1239
|
-
{ [_ht]: ["GET", "/channels", 200] }, () => ListChannelsRequest$, () => ListChannelsResponse$
|
|
1240
|
-
];
|
|
1241
|
-
var ListEventRules$ = [9, n0, _LER,
|
|
1242
|
-
{ [_ht]: ["GET", "/event-rules", 200] }, () => ListEventRulesRequest$, () => ListEventRulesResponse$
|
|
1243
|
-
];
|
|
1244
|
-
var ListManagedNotificationChannelAssociations$ = [9, n0, _LMNCA,
|
|
1245
|
-
{ [_ht]: ["GET", "/channels/list-managed-notification-channel-associations", 200] }, () => ListManagedNotificationChannelAssociationsRequest$, () => ListManagedNotificationChannelAssociationsResponse$
|
|
1246
|
-
];
|
|
1247
|
-
var ListManagedNotificationChildEvents$ = [9, n0, _LMNCE,
|
|
1248
|
-
{ [_ht]: ["GET", "/list-managed-notification-child-events/{aggregateManagedNotificationEventArn}", 200] }, () => ListManagedNotificationChildEventsRequest$, () => ListManagedNotificationChildEventsResponse$
|
|
1249
|
-
];
|
|
1250
|
-
var ListManagedNotificationConfigurations$ = [9, n0, _LMNC,
|
|
1251
|
-
{ [_ht]: ["GET", "/managed-notification-configurations", 200] }, () => ListManagedNotificationConfigurationsRequest$, () => ListManagedNotificationConfigurationsResponse$
|
|
1252
|
-
];
|
|
1253
|
-
var ListManagedNotificationEvents$ = [9, n0, _LMNE,
|
|
1254
|
-
{ [_ht]: ["GET", "/managed-notification-events", 200] }, () => ListManagedNotificationEventsRequest$, () => ListManagedNotificationEventsResponse$
|
|
1255
|
-
];
|
|
1256
|
-
var ListMemberAccounts$ = [9, n0, _LMA,
|
|
1257
|
-
{ [_ht]: ["GET", "/list-member-accounts", 200] }, () => ListMemberAccountsRequest$, () => ListMemberAccountsResponse$
|
|
1258
|
-
];
|
|
1259
|
-
var ListNotificationConfigurations$ = [9, n0, _LNC,
|
|
1260
|
-
{ [_ht]: ["GET", "/notification-configurations", 200] }, () => ListNotificationConfigurationsRequest$, () => ListNotificationConfigurationsResponse$
|
|
1261
|
-
];
|
|
1262
|
-
var ListNotificationEvents$ = [9, n0, _LNE,
|
|
1263
|
-
{ [_ht]: ["GET", "/notification-events", 200] }, () => ListNotificationEventsRequest$, () => ListNotificationEventsResponse$
|
|
1264
|
-
];
|
|
1265
|
-
var ListNotificationHubs$ = [9, n0, _LNH,
|
|
1266
|
-
{ [_ht]: ["GET", "/notification-hubs", 200] }, () => ListNotificationHubsRequest$, () => ListNotificationHubsResponse$
|
|
1267
|
-
];
|
|
1268
|
-
var ListOrganizationalUnits$ = [9, n0, _LOU,
|
|
1269
|
-
{ [_ht]: ["GET", "/organizational-units", 200] }, () => ListOrganizationalUnitsRequest$, () => ListOrganizationalUnitsResponse$
|
|
1270
|
-
];
|
|
1271
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1272
|
-
{ [_ht]: ["GET", "/tags/{arn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1273
|
-
];
|
|
1274
|
-
var RegisterNotificationHub$ = [9, n0, _RNH,
|
|
1275
|
-
{ [_ht]: ["POST", "/notification-hubs", 201] }, () => RegisterNotificationHubRequest$, () => RegisterNotificationHubResponse$
|
|
1276
|
-
];
|
|
1277
|
-
var TagResource$ = [9, n0, _TR,
|
|
1278
|
-
{ [_ht]: ["POST", "/tags/{arn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1279
|
-
];
|
|
1280
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1281
|
-
{ [_ht]: ["DELETE", "/tags/{arn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1282
|
-
];
|
|
1283
|
-
var UpdateEventRule$ = [9, n0, _UER,
|
|
1284
|
-
{ [_ht]: ["PUT", "/event-rules/{arn}", 200] }, () => UpdateEventRuleRequest$, () => UpdateEventRuleResponse$
|
|
1285
|
-
];
|
|
1286
|
-
var UpdateNotificationConfiguration$ = [9, n0, _UNC,
|
|
1287
|
-
{ [_ht]: ["PUT", "/notification-configurations/{arn}", 200] }, () => UpdateNotificationConfigurationRequest$, () => UpdateNotificationConfigurationResponse$
|
|
1288
|
-
];
|
|
1289
|
-
|
|
1290
114
|
class AssociateChannelCommand extends smithyClient.Command
|
|
1291
115
|
.classBuilder()
|
|
1292
116
|
.ep(commonParams)
|
|
@@ -1295,7 +119,7 @@ class AssociateChannelCommand extends smithyClient.Command
|
|
|
1295
119
|
})
|
|
1296
120
|
.s("Notifications", "AssociateChannel", {})
|
|
1297
121
|
.n("NotificationsClient", "AssociateChannelCommand")
|
|
1298
|
-
.sc(AssociateChannel$)
|
|
122
|
+
.sc(schemas_0.AssociateChannel$)
|
|
1299
123
|
.build() {
|
|
1300
124
|
}
|
|
1301
125
|
|
|
@@ -1307,7 +131,7 @@ class AssociateManagedNotificationAccountContactCommand extends smithyClient.Com
|
|
|
1307
131
|
})
|
|
1308
132
|
.s("Notifications", "AssociateManagedNotificationAccountContact", {})
|
|
1309
133
|
.n("NotificationsClient", "AssociateManagedNotificationAccountContactCommand")
|
|
1310
|
-
.sc(AssociateManagedNotificationAccountContact$)
|
|
134
|
+
.sc(schemas_0.AssociateManagedNotificationAccountContact$)
|
|
1311
135
|
.build() {
|
|
1312
136
|
}
|
|
1313
137
|
|
|
@@ -1319,7 +143,7 @@ class AssociateManagedNotificationAdditionalChannelCommand extends smithyClient.
|
|
|
1319
143
|
})
|
|
1320
144
|
.s("Notifications", "AssociateManagedNotificationAdditionalChannel", {})
|
|
1321
145
|
.n("NotificationsClient", "AssociateManagedNotificationAdditionalChannelCommand")
|
|
1322
|
-
.sc(AssociateManagedNotificationAdditionalChannel$)
|
|
146
|
+
.sc(schemas_0.AssociateManagedNotificationAdditionalChannel$)
|
|
1323
147
|
.build() {
|
|
1324
148
|
}
|
|
1325
149
|
|
|
@@ -1331,7 +155,7 @@ class AssociateOrganizationalUnitCommand extends smithyClient.Command
|
|
|
1331
155
|
})
|
|
1332
156
|
.s("Notifications", "AssociateOrganizationalUnit", {})
|
|
1333
157
|
.n("NotificationsClient", "AssociateOrganizationalUnitCommand")
|
|
1334
|
-
.sc(AssociateOrganizationalUnit$)
|
|
158
|
+
.sc(schemas_0.AssociateOrganizationalUnit$)
|
|
1335
159
|
.build() {
|
|
1336
160
|
}
|
|
1337
161
|
|
|
@@ -1343,7 +167,7 @@ class CreateEventRuleCommand extends smithyClient.Command
|
|
|
1343
167
|
})
|
|
1344
168
|
.s("Notifications", "CreateEventRule", {})
|
|
1345
169
|
.n("NotificationsClient", "CreateEventRuleCommand")
|
|
1346
|
-
.sc(CreateEventRule$)
|
|
170
|
+
.sc(schemas_0.CreateEventRule$)
|
|
1347
171
|
.build() {
|
|
1348
172
|
}
|
|
1349
173
|
|
|
@@ -1355,7 +179,7 @@ class CreateNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1355
179
|
})
|
|
1356
180
|
.s("Notifications", "CreateNotificationConfiguration", {})
|
|
1357
181
|
.n("NotificationsClient", "CreateNotificationConfigurationCommand")
|
|
1358
|
-
.sc(CreateNotificationConfiguration$)
|
|
182
|
+
.sc(schemas_0.CreateNotificationConfiguration$)
|
|
1359
183
|
.build() {
|
|
1360
184
|
}
|
|
1361
185
|
|
|
@@ -1367,7 +191,7 @@ class DeleteEventRuleCommand extends smithyClient.Command
|
|
|
1367
191
|
})
|
|
1368
192
|
.s("Notifications", "DeleteEventRule", {})
|
|
1369
193
|
.n("NotificationsClient", "DeleteEventRuleCommand")
|
|
1370
|
-
.sc(DeleteEventRule$)
|
|
194
|
+
.sc(schemas_0.DeleteEventRule$)
|
|
1371
195
|
.build() {
|
|
1372
196
|
}
|
|
1373
197
|
|
|
@@ -1379,7 +203,7 @@ class DeleteNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1379
203
|
})
|
|
1380
204
|
.s("Notifications", "DeleteNotificationConfiguration", {})
|
|
1381
205
|
.n("NotificationsClient", "DeleteNotificationConfigurationCommand")
|
|
1382
|
-
.sc(DeleteNotificationConfiguration$)
|
|
206
|
+
.sc(schemas_0.DeleteNotificationConfiguration$)
|
|
1383
207
|
.build() {
|
|
1384
208
|
}
|
|
1385
209
|
|
|
@@ -1391,7 +215,7 @@ class DeregisterNotificationHubCommand extends smithyClient.Command
|
|
|
1391
215
|
})
|
|
1392
216
|
.s("Notifications", "DeregisterNotificationHub", {})
|
|
1393
217
|
.n("NotificationsClient", "DeregisterNotificationHubCommand")
|
|
1394
|
-
.sc(DeregisterNotificationHub$)
|
|
218
|
+
.sc(schemas_0.DeregisterNotificationHub$)
|
|
1395
219
|
.build() {
|
|
1396
220
|
}
|
|
1397
221
|
|
|
@@ -1403,7 +227,7 @@ class DisableNotificationsAccessForOrganizationCommand extends smithyClient.Comm
|
|
|
1403
227
|
})
|
|
1404
228
|
.s("Notifications", "DisableNotificationsAccessForOrganization", {})
|
|
1405
229
|
.n("NotificationsClient", "DisableNotificationsAccessForOrganizationCommand")
|
|
1406
|
-
.sc(DisableNotificationsAccessForOrganization$)
|
|
230
|
+
.sc(schemas_0.DisableNotificationsAccessForOrganization$)
|
|
1407
231
|
.build() {
|
|
1408
232
|
}
|
|
1409
233
|
|
|
@@ -1415,7 +239,7 @@ class DisassociateChannelCommand extends smithyClient.Command
|
|
|
1415
239
|
})
|
|
1416
240
|
.s("Notifications", "DisassociateChannel", {})
|
|
1417
241
|
.n("NotificationsClient", "DisassociateChannelCommand")
|
|
1418
|
-
.sc(DisassociateChannel$)
|
|
242
|
+
.sc(schemas_0.DisassociateChannel$)
|
|
1419
243
|
.build() {
|
|
1420
244
|
}
|
|
1421
245
|
|
|
@@ -1427,7 +251,7 @@ class DisassociateManagedNotificationAccountContactCommand extends smithyClient.
|
|
|
1427
251
|
})
|
|
1428
252
|
.s("Notifications", "DisassociateManagedNotificationAccountContact", {})
|
|
1429
253
|
.n("NotificationsClient", "DisassociateManagedNotificationAccountContactCommand")
|
|
1430
|
-
.sc(DisassociateManagedNotificationAccountContact$)
|
|
254
|
+
.sc(schemas_0.DisassociateManagedNotificationAccountContact$)
|
|
1431
255
|
.build() {
|
|
1432
256
|
}
|
|
1433
257
|
|
|
@@ -1439,7 +263,7 @@ class DisassociateManagedNotificationAdditionalChannelCommand extends smithyClie
|
|
|
1439
263
|
})
|
|
1440
264
|
.s("Notifications", "DisassociateManagedNotificationAdditionalChannel", {})
|
|
1441
265
|
.n("NotificationsClient", "DisassociateManagedNotificationAdditionalChannelCommand")
|
|
1442
|
-
.sc(DisassociateManagedNotificationAdditionalChannel$)
|
|
266
|
+
.sc(schemas_0.DisassociateManagedNotificationAdditionalChannel$)
|
|
1443
267
|
.build() {
|
|
1444
268
|
}
|
|
1445
269
|
|
|
@@ -1451,7 +275,7 @@ class DisassociateOrganizationalUnitCommand extends smithyClient.Command
|
|
|
1451
275
|
})
|
|
1452
276
|
.s("Notifications", "DisassociateOrganizationalUnit", {})
|
|
1453
277
|
.n("NotificationsClient", "DisassociateOrganizationalUnitCommand")
|
|
1454
|
-
.sc(DisassociateOrganizationalUnit$)
|
|
278
|
+
.sc(schemas_0.DisassociateOrganizationalUnit$)
|
|
1455
279
|
.build() {
|
|
1456
280
|
}
|
|
1457
281
|
|
|
@@ -1463,7 +287,7 @@ class EnableNotificationsAccessForOrganizationCommand extends smithyClient.Comma
|
|
|
1463
287
|
})
|
|
1464
288
|
.s("Notifications", "EnableNotificationsAccessForOrganization", {})
|
|
1465
289
|
.n("NotificationsClient", "EnableNotificationsAccessForOrganizationCommand")
|
|
1466
|
-
.sc(EnableNotificationsAccessForOrganization$)
|
|
290
|
+
.sc(schemas_0.EnableNotificationsAccessForOrganization$)
|
|
1467
291
|
.build() {
|
|
1468
292
|
}
|
|
1469
293
|
|
|
@@ -1475,7 +299,7 @@ class GetEventRuleCommand extends smithyClient.Command
|
|
|
1475
299
|
})
|
|
1476
300
|
.s("Notifications", "GetEventRule", {})
|
|
1477
301
|
.n("NotificationsClient", "GetEventRuleCommand")
|
|
1478
|
-
.sc(GetEventRule$)
|
|
302
|
+
.sc(schemas_0.GetEventRule$)
|
|
1479
303
|
.build() {
|
|
1480
304
|
}
|
|
1481
305
|
|
|
@@ -1487,7 +311,7 @@ class GetManagedNotificationChildEventCommand extends smithyClient.Command
|
|
|
1487
311
|
})
|
|
1488
312
|
.s("Notifications", "GetManagedNotificationChildEvent", {})
|
|
1489
313
|
.n("NotificationsClient", "GetManagedNotificationChildEventCommand")
|
|
1490
|
-
.sc(GetManagedNotificationChildEvent$)
|
|
314
|
+
.sc(schemas_0.GetManagedNotificationChildEvent$)
|
|
1491
315
|
.build() {
|
|
1492
316
|
}
|
|
1493
317
|
|
|
@@ -1499,7 +323,7 @@ class GetManagedNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1499
323
|
})
|
|
1500
324
|
.s("Notifications", "GetManagedNotificationConfiguration", {})
|
|
1501
325
|
.n("NotificationsClient", "GetManagedNotificationConfigurationCommand")
|
|
1502
|
-
.sc(GetManagedNotificationConfiguration$)
|
|
326
|
+
.sc(schemas_0.GetManagedNotificationConfiguration$)
|
|
1503
327
|
.build() {
|
|
1504
328
|
}
|
|
1505
329
|
|
|
@@ -1511,7 +335,7 @@ class GetManagedNotificationEventCommand extends smithyClient.Command
|
|
|
1511
335
|
})
|
|
1512
336
|
.s("Notifications", "GetManagedNotificationEvent", {})
|
|
1513
337
|
.n("NotificationsClient", "GetManagedNotificationEventCommand")
|
|
1514
|
-
.sc(GetManagedNotificationEvent$)
|
|
338
|
+
.sc(schemas_0.GetManagedNotificationEvent$)
|
|
1515
339
|
.build() {
|
|
1516
340
|
}
|
|
1517
341
|
|
|
@@ -1523,7 +347,7 @@ class GetNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1523
347
|
})
|
|
1524
348
|
.s("Notifications", "GetNotificationConfiguration", {})
|
|
1525
349
|
.n("NotificationsClient", "GetNotificationConfigurationCommand")
|
|
1526
|
-
.sc(GetNotificationConfiguration$)
|
|
350
|
+
.sc(schemas_0.GetNotificationConfiguration$)
|
|
1527
351
|
.build() {
|
|
1528
352
|
}
|
|
1529
353
|
|
|
@@ -1535,7 +359,7 @@ class GetNotificationEventCommand extends smithyClient.Command
|
|
|
1535
359
|
})
|
|
1536
360
|
.s("Notifications", "GetNotificationEvent", {})
|
|
1537
361
|
.n("NotificationsClient", "GetNotificationEventCommand")
|
|
1538
|
-
.sc(GetNotificationEvent$)
|
|
362
|
+
.sc(schemas_0.GetNotificationEvent$)
|
|
1539
363
|
.build() {
|
|
1540
364
|
}
|
|
1541
365
|
|
|
@@ -1547,7 +371,7 @@ class GetNotificationsAccessForOrganizationCommand extends smithyClient.Command
|
|
|
1547
371
|
})
|
|
1548
372
|
.s("Notifications", "GetNotificationsAccessForOrganization", {})
|
|
1549
373
|
.n("NotificationsClient", "GetNotificationsAccessForOrganizationCommand")
|
|
1550
|
-
.sc(GetNotificationsAccessForOrganization$)
|
|
374
|
+
.sc(schemas_0.GetNotificationsAccessForOrganization$)
|
|
1551
375
|
.build() {
|
|
1552
376
|
}
|
|
1553
377
|
|
|
@@ -1559,7 +383,7 @@ class ListChannelsCommand extends smithyClient.Command
|
|
|
1559
383
|
})
|
|
1560
384
|
.s("Notifications", "ListChannels", {})
|
|
1561
385
|
.n("NotificationsClient", "ListChannelsCommand")
|
|
1562
|
-
.sc(ListChannels$)
|
|
386
|
+
.sc(schemas_0.ListChannels$)
|
|
1563
387
|
.build() {
|
|
1564
388
|
}
|
|
1565
389
|
|
|
@@ -1571,7 +395,7 @@ class ListEventRulesCommand extends smithyClient.Command
|
|
|
1571
395
|
})
|
|
1572
396
|
.s("Notifications", "ListEventRules", {})
|
|
1573
397
|
.n("NotificationsClient", "ListEventRulesCommand")
|
|
1574
|
-
.sc(ListEventRules$)
|
|
398
|
+
.sc(schemas_0.ListEventRules$)
|
|
1575
399
|
.build() {
|
|
1576
400
|
}
|
|
1577
401
|
|
|
@@ -1583,7 +407,7 @@ class ListManagedNotificationChannelAssociationsCommand extends smithyClient.Com
|
|
|
1583
407
|
})
|
|
1584
408
|
.s("Notifications", "ListManagedNotificationChannelAssociations", {})
|
|
1585
409
|
.n("NotificationsClient", "ListManagedNotificationChannelAssociationsCommand")
|
|
1586
|
-
.sc(ListManagedNotificationChannelAssociations$)
|
|
410
|
+
.sc(schemas_0.ListManagedNotificationChannelAssociations$)
|
|
1587
411
|
.build() {
|
|
1588
412
|
}
|
|
1589
413
|
|
|
@@ -1595,7 +419,7 @@ class ListManagedNotificationChildEventsCommand extends smithyClient.Command
|
|
|
1595
419
|
})
|
|
1596
420
|
.s("Notifications", "ListManagedNotificationChildEvents", {})
|
|
1597
421
|
.n("NotificationsClient", "ListManagedNotificationChildEventsCommand")
|
|
1598
|
-
.sc(ListManagedNotificationChildEvents$)
|
|
422
|
+
.sc(schemas_0.ListManagedNotificationChildEvents$)
|
|
1599
423
|
.build() {
|
|
1600
424
|
}
|
|
1601
425
|
|
|
@@ -1607,7 +431,7 @@ class ListManagedNotificationConfigurationsCommand extends smithyClient.Command
|
|
|
1607
431
|
})
|
|
1608
432
|
.s("Notifications", "ListManagedNotificationConfigurations", {})
|
|
1609
433
|
.n("NotificationsClient", "ListManagedNotificationConfigurationsCommand")
|
|
1610
|
-
.sc(ListManagedNotificationConfigurations$)
|
|
434
|
+
.sc(schemas_0.ListManagedNotificationConfigurations$)
|
|
1611
435
|
.build() {
|
|
1612
436
|
}
|
|
1613
437
|
|
|
@@ -1619,7 +443,7 @@ class ListManagedNotificationEventsCommand extends smithyClient.Command
|
|
|
1619
443
|
})
|
|
1620
444
|
.s("Notifications", "ListManagedNotificationEvents", {})
|
|
1621
445
|
.n("NotificationsClient", "ListManagedNotificationEventsCommand")
|
|
1622
|
-
.sc(ListManagedNotificationEvents$)
|
|
446
|
+
.sc(schemas_0.ListManagedNotificationEvents$)
|
|
1623
447
|
.build() {
|
|
1624
448
|
}
|
|
1625
449
|
|
|
@@ -1631,7 +455,7 @@ class ListMemberAccountsCommand extends smithyClient.Command
|
|
|
1631
455
|
})
|
|
1632
456
|
.s("Notifications", "ListMemberAccounts", {})
|
|
1633
457
|
.n("NotificationsClient", "ListMemberAccountsCommand")
|
|
1634
|
-
.sc(ListMemberAccounts$)
|
|
458
|
+
.sc(schemas_0.ListMemberAccounts$)
|
|
1635
459
|
.build() {
|
|
1636
460
|
}
|
|
1637
461
|
|
|
@@ -1643,7 +467,7 @@ class ListNotificationConfigurationsCommand extends smithyClient.Command
|
|
|
1643
467
|
})
|
|
1644
468
|
.s("Notifications", "ListNotificationConfigurations", {})
|
|
1645
469
|
.n("NotificationsClient", "ListNotificationConfigurationsCommand")
|
|
1646
|
-
.sc(ListNotificationConfigurations$)
|
|
470
|
+
.sc(schemas_0.ListNotificationConfigurations$)
|
|
1647
471
|
.build() {
|
|
1648
472
|
}
|
|
1649
473
|
|
|
@@ -1655,7 +479,7 @@ class ListNotificationEventsCommand extends smithyClient.Command
|
|
|
1655
479
|
})
|
|
1656
480
|
.s("Notifications", "ListNotificationEvents", {})
|
|
1657
481
|
.n("NotificationsClient", "ListNotificationEventsCommand")
|
|
1658
|
-
.sc(ListNotificationEvents$)
|
|
482
|
+
.sc(schemas_0.ListNotificationEvents$)
|
|
1659
483
|
.build() {
|
|
1660
484
|
}
|
|
1661
485
|
|
|
@@ -1667,7 +491,7 @@ class ListNotificationHubsCommand extends smithyClient.Command
|
|
|
1667
491
|
})
|
|
1668
492
|
.s("Notifications", "ListNotificationHubs", {})
|
|
1669
493
|
.n("NotificationsClient", "ListNotificationHubsCommand")
|
|
1670
|
-
.sc(ListNotificationHubs$)
|
|
494
|
+
.sc(schemas_0.ListNotificationHubs$)
|
|
1671
495
|
.build() {
|
|
1672
496
|
}
|
|
1673
497
|
|
|
@@ -1679,7 +503,7 @@ class ListOrganizationalUnitsCommand extends smithyClient.Command
|
|
|
1679
503
|
})
|
|
1680
504
|
.s("Notifications", "ListOrganizationalUnits", {})
|
|
1681
505
|
.n("NotificationsClient", "ListOrganizationalUnitsCommand")
|
|
1682
|
-
.sc(ListOrganizationalUnits$)
|
|
506
|
+
.sc(schemas_0.ListOrganizationalUnits$)
|
|
1683
507
|
.build() {
|
|
1684
508
|
}
|
|
1685
509
|
|
|
@@ -1691,7 +515,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1691
515
|
})
|
|
1692
516
|
.s("Notifications", "ListTagsForResource", {})
|
|
1693
517
|
.n("NotificationsClient", "ListTagsForResourceCommand")
|
|
1694
|
-
.sc(ListTagsForResource$)
|
|
518
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1695
519
|
.build() {
|
|
1696
520
|
}
|
|
1697
521
|
|
|
@@ -1703,7 +527,7 @@ class RegisterNotificationHubCommand extends smithyClient.Command
|
|
|
1703
527
|
})
|
|
1704
528
|
.s("Notifications", "RegisterNotificationHub", {})
|
|
1705
529
|
.n("NotificationsClient", "RegisterNotificationHubCommand")
|
|
1706
|
-
.sc(RegisterNotificationHub$)
|
|
530
|
+
.sc(schemas_0.RegisterNotificationHub$)
|
|
1707
531
|
.build() {
|
|
1708
532
|
}
|
|
1709
533
|
|
|
@@ -1715,7 +539,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1715
539
|
})
|
|
1716
540
|
.s("Notifications", "TagResource", {})
|
|
1717
541
|
.n("NotificationsClient", "TagResourceCommand")
|
|
1718
|
-
.sc(TagResource$)
|
|
542
|
+
.sc(schemas_0.TagResource$)
|
|
1719
543
|
.build() {
|
|
1720
544
|
}
|
|
1721
545
|
|
|
@@ -1727,7 +551,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1727
551
|
})
|
|
1728
552
|
.s("Notifications", "UntagResource", {})
|
|
1729
553
|
.n("NotificationsClient", "UntagResourceCommand")
|
|
1730
|
-
.sc(UntagResource$)
|
|
554
|
+
.sc(schemas_0.UntagResource$)
|
|
1731
555
|
.build() {
|
|
1732
556
|
}
|
|
1733
557
|
|
|
@@ -1739,7 +563,7 @@ class UpdateEventRuleCommand extends smithyClient.Command
|
|
|
1739
563
|
})
|
|
1740
564
|
.s("Notifications", "UpdateEventRule", {})
|
|
1741
565
|
.n("NotificationsClient", "UpdateEventRuleCommand")
|
|
1742
|
-
.sc(UpdateEventRule$)
|
|
566
|
+
.sc(schemas_0.UpdateEventRule$)
|
|
1743
567
|
.build() {
|
|
1744
568
|
}
|
|
1745
569
|
|
|
@@ -1751,7 +575,7 @@ class UpdateNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1751
575
|
})
|
|
1752
576
|
.s("Notifications", "UpdateNotificationConfiguration", {})
|
|
1753
577
|
.n("NotificationsClient", "UpdateNotificationConfigurationCommand")
|
|
1754
|
-
.sc(UpdateNotificationConfiguration$)
|
|
578
|
+
.sc(schemas_0.UpdateNotificationConfiguration$)
|
|
1755
579
|
.build() {
|
|
1756
580
|
}
|
|
1757
581
|
|
|
@@ -1948,230 +772,68 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1948
772
|
enumerable: true,
|
|
1949
773
|
get: function () { return smithyClient.Client; }
|
|
1950
774
|
});
|
|
1951
|
-
exports
|
|
1952
|
-
|
|
775
|
+
Object.defineProperty(exports, "NotificationsServiceException", {
|
|
776
|
+
enumerable: true,
|
|
777
|
+
get: function () { return NotificationsServiceException.NotificationsServiceException; }
|
|
778
|
+
});
|
|
1953
779
|
exports.AccessStatus = AccessStatus;
|
|
1954
780
|
exports.AccountContactType = AccountContactType;
|
|
1955
|
-
exports.AggregationDetail$ = AggregationDetail$;
|
|
1956
781
|
exports.AggregationDuration = AggregationDuration;
|
|
1957
782
|
exports.AggregationEventType = AggregationEventType;
|
|
1958
|
-
exports.AggregationKey$ = AggregationKey$;
|
|
1959
|
-
exports.AggregationSummary$ = AggregationSummary$;
|
|
1960
|
-
exports.AssociateChannel$ = AssociateChannel$;
|
|
1961
783
|
exports.AssociateChannelCommand = AssociateChannelCommand;
|
|
1962
|
-
exports.AssociateChannelRequest$ = AssociateChannelRequest$;
|
|
1963
|
-
exports.AssociateChannelResponse$ = AssociateChannelResponse$;
|
|
1964
|
-
exports.AssociateManagedNotificationAccountContact$ = AssociateManagedNotificationAccountContact$;
|
|
1965
784
|
exports.AssociateManagedNotificationAccountContactCommand = AssociateManagedNotificationAccountContactCommand;
|
|
1966
|
-
exports.AssociateManagedNotificationAccountContactRequest$ = AssociateManagedNotificationAccountContactRequest$;
|
|
1967
|
-
exports.AssociateManagedNotificationAccountContactResponse$ = AssociateManagedNotificationAccountContactResponse$;
|
|
1968
|
-
exports.AssociateManagedNotificationAdditionalChannel$ = AssociateManagedNotificationAdditionalChannel$;
|
|
1969
785
|
exports.AssociateManagedNotificationAdditionalChannelCommand = AssociateManagedNotificationAdditionalChannelCommand;
|
|
1970
|
-
exports.AssociateManagedNotificationAdditionalChannelRequest$ = AssociateManagedNotificationAdditionalChannelRequest$;
|
|
1971
|
-
exports.AssociateManagedNotificationAdditionalChannelResponse$ = AssociateManagedNotificationAdditionalChannelResponse$;
|
|
1972
|
-
exports.AssociateOrganizationalUnit$ = AssociateOrganizationalUnit$;
|
|
1973
786
|
exports.AssociateOrganizationalUnitCommand = AssociateOrganizationalUnitCommand;
|
|
1974
|
-
exports.AssociateOrganizationalUnitRequest$ = AssociateOrganizationalUnitRequest$;
|
|
1975
|
-
exports.AssociateOrganizationalUnitResponse$ = AssociateOrganizationalUnitResponse$;
|
|
1976
787
|
exports.ChannelAssociationOverrideOption = ChannelAssociationOverrideOption;
|
|
1977
788
|
exports.ChannelType = ChannelType;
|
|
1978
|
-
exports.ConflictException = ConflictException;
|
|
1979
|
-
exports.ConflictException$ = ConflictException$;
|
|
1980
|
-
exports.CreateEventRule$ = CreateEventRule$;
|
|
1981
789
|
exports.CreateEventRuleCommand = CreateEventRuleCommand;
|
|
1982
|
-
exports.CreateEventRuleRequest$ = CreateEventRuleRequest$;
|
|
1983
|
-
exports.CreateEventRuleResponse$ = CreateEventRuleResponse$;
|
|
1984
|
-
exports.CreateNotificationConfiguration$ = CreateNotificationConfiguration$;
|
|
1985
790
|
exports.CreateNotificationConfigurationCommand = CreateNotificationConfigurationCommand;
|
|
1986
|
-
exports.CreateNotificationConfigurationRequest$ = CreateNotificationConfigurationRequest$;
|
|
1987
|
-
exports.CreateNotificationConfigurationResponse$ = CreateNotificationConfigurationResponse$;
|
|
1988
|
-
exports.DeleteEventRule$ = DeleteEventRule$;
|
|
1989
791
|
exports.DeleteEventRuleCommand = DeleteEventRuleCommand;
|
|
1990
|
-
exports.DeleteEventRuleRequest$ = DeleteEventRuleRequest$;
|
|
1991
|
-
exports.DeleteEventRuleResponse$ = DeleteEventRuleResponse$;
|
|
1992
|
-
exports.DeleteNotificationConfiguration$ = DeleteNotificationConfiguration$;
|
|
1993
792
|
exports.DeleteNotificationConfigurationCommand = DeleteNotificationConfigurationCommand;
|
|
1994
|
-
exports.DeleteNotificationConfigurationRequest$ = DeleteNotificationConfigurationRequest$;
|
|
1995
|
-
exports.DeleteNotificationConfigurationResponse$ = DeleteNotificationConfigurationResponse$;
|
|
1996
|
-
exports.DeregisterNotificationHub$ = DeregisterNotificationHub$;
|
|
1997
793
|
exports.DeregisterNotificationHubCommand = DeregisterNotificationHubCommand;
|
|
1998
|
-
exports.DeregisterNotificationHubRequest$ = DeregisterNotificationHubRequest$;
|
|
1999
|
-
exports.DeregisterNotificationHubResponse$ = DeregisterNotificationHubResponse$;
|
|
2000
|
-
exports.Dimension$ = Dimension$;
|
|
2001
|
-
exports.DisableNotificationsAccessForOrganization$ = DisableNotificationsAccessForOrganization$;
|
|
2002
794
|
exports.DisableNotificationsAccessForOrganizationCommand = DisableNotificationsAccessForOrganizationCommand;
|
|
2003
|
-
exports.DisableNotificationsAccessForOrganizationRequest$ = DisableNotificationsAccessForOrganizationRequest$;
|
|
2004
|
-
exports.DisableNotificationsAccessForOrganizationResponse$ = DisableNotificationsAccessForOrganizationResponse$;
|
|
2005
|
-
exports.DisassociateChannel$ = DisassociateChannel$;
|
|
2006
795
|
exports.DisassociateChannelCommand = DisassociateChannelCommand;
|
|
2007
|
-
exports.DisassociateChannelRequest$ = DisassociateChannelRequest$;
|
|
2008
|
-
exports.DisassociateChannelResponse$ = DisassociateChannelResponse$;
|
|
2009
|
-
exports.DisassociateManagedNotificationAccountContact$ = DisassociateManagedNotificationAccountContact$;
|
|
2010
796
|
exports.DisassociateManagedNotificationAccountContactCommand = DisassociateManagedNotificationAccountContactCommand;
|
|
2011
|
-
exports.DisassociateManagedNotificationAccountContactRequest$ = DisassociateManagedNotificationAccountContactRequest$;
|
|
2012
|
-
exports.DisassociateManagedNotificationAccountContactResponse$ = DisassociateManagedNotificationAccountContactResponse$;
|
|
2013
|
-
exports.DisassociateManagedNotificationAdditionalChannel$ = DisassociateManagedNotificationAdditionalChannel$;
|
|
2014
797
|
exports.DisassociateManagedNotificationAdditionalChannelCommand = DisassociateManagedNotificationAdditionalChannelCommand;
|
|
2015
|
-
exports.DisassociateManagedNotificationAdditionalChannelRequest$ = DisassociateManagedNotificationAdditionalChannelRequest$;
|
|
2016
|
-
exports.DisassociateManagedNotificationAdditionalChannelResponse$ = DisassociateManagedNotificationAdditionalChannelResponse$;
|
|
2017
|
-
exports.DisassociateOrganizationalUnit$ = DisassociateOrganizationalUnit$;
|
|
2018
798
|
exports.DisassociateOrganizationalUnitCommand = DisassociateOrganizationalUnitCommand;
|
|
2019
|
-
exports.DisassociateOrganizationalUnitRequest$ = DisassociateOrganizationalUnitRequest$;
|
|
2020
|
-
exports.DisassociateOrganizationalUnitResponse$ = DisassociateOrganizationalUnitResponse$;
|
|
2021
|
-
exports.EnableNotificationsAccessForOrganization$ = EnableNotificationsAccessForOrganization$;
|
|
2022
799
|
exports.EnableNotificationsAccessForOrganizationCommand = EnableNotificationsAccessForOrganizationCommand;
|
|
2023
|
-
exports.EnableNotificationsAccessForOrganizationRequest$ = EnableNotificationsAccessForOrganizationRequest$;
|
|
2024
|
-
exports.EnableNotificationsAccessForOrganizationResponse$ = EnableNotificationsAccessForOrganizationResponse$;
|
|
2025
800
|
exports.EventRuleStatus = EventRuleStatus;
|
|
2026
|
-
exports.EventRuleStatusSummary$ = EventRuleStatusSummary$;
|
|
2027
|
-
exports.EventRuleStructure$ = EventRuleStructure$;
|
|
2028
801
|
exports.EventStatus = EventStatus;
|
|
2029
|
-
exports.GetEventRule$ = GetEventRule$;
|
|
2030
802
|
exports.GetEventRuleCommand = GetEventRuleCommand;
|
|
2031
|
-
exports.GetEventRuleRequest$ = GetEventRuleRequest$;
|
|
2032
|
-
exports.GetEventRuleResponse$ = GetEventRuleResponse$;
|
|
2033
|
-
exports.GetManagedNotificationChildEvent$ = GetManagedNotificationChildEvent$;
|
|
2034
803
|
exports.GetManagedNotificationChildEventCommand = GetManagedNotificationChildEventCommand;
|
|
2035
|
-
exports.GetManagedNotificationChildEventRequest$ = GetManagedNotificationChildEventRequest$;
|
|
2036
|
-
exports.GetManagedNotificationChildEventResponse$ = GetManagedNotificationChildEventResponse$;
|
|
2037
|
-
exports.GetManagedNotificationConfiguration$ = GetManagedNotificationConfiguration$;
|
|
2038
804
|
exports.GetManagedNotificationConfigurationCommand = GetManagedNotificationConfigurationCommand;
|
|
2039
|
-
exports.GetManagedNotificationConfigurationRequest$ = GetManagedNotificationConfigurationRequest$;
|
|
2040
|
-
exports.GetManagedNotificationConfigurationResponse$ = GetManagedNotificationConfigurationResponse$;
|
|
2041
|
-
exports.GetManagedNotificationEvent$ = GetManagedNotificationEvent$;
|
|
2042
805
|
exports.GetManagedNotificationEventCommand = GetManagedNotificationEventCommand;
|
|
2043
|
-
exports.GetManagedNotificationEventRequest$ = GetManagedNotificationEventRequest$;
|
|
2044
|
-
exports.GetManagedNotificationEventResponse$ = GetManagedNotificationEventResponse$;
|
|
2045
|
-
exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
|
|
2046
806
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
2047
|
-
exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
|
|
2048
|
-
exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
|
|
2049
|
-
exports.GetNotificationEvent$ = GetNotificationEvent$;
|
|
2050
807
|
exports.GetNotificationEventCommand = GetNotificationEventCommand;
|
|
2051
|
-
exports.GetNotificationEventRequest$ = GetNotificationEventRequest$;
|
|
2052
|
-
exports.GetNotificationEventResponse$ = GetNotificationEventResponse$;
|
|
2053
|
-
exports.GetNotificationsAccessForOrganization$ = GetNotificationsAccessForOrganization$;
|
|
2054
808
|
exports.GetNotificationsAccessForOrganizationCommand = GetNotificationsAccessForOrganizationCommand;
|
|
2055
|
-
exports.GetNotificationsAccessForOrganizationRequest$ = GetNotificationsAccessForOrganizationRequest$;
|
|
2056
|
-
exports.GetNotificationsAccessForOrganizationResponse$ = GetNotificationsAccessForOrganizationResponse$;
|
|
2057
|
-
exports.InternalServerException = InternalServerException;
|
|
2058
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
2059
|
-
exports.ListChannels$ = ListChannels$;
|
|
2060
809
|
exports.ListChannelsCommand = ListChannelsCommand;
|
|
2061
|
-
exports.ListChannelsRequest$ = ListChannelsRequest$;
|
|
2062
|
-
exports.ListChannelsResponse$ = ListChannelsResponse$;
|
|
2063
|
-
exports.ListEventRules$ = ListEventRules$;
|
|
2064
810
|
exports.ListEventRulesCommand = ListEventRulesCommand;
|
|
2065
|
-
exports.ListEventRulesRequest$ = ListEventRulesRequest$;
|
|
2066
|
-
exports.ListEventRulesResponse$ = ListEventRulesResponse$;
|
|
2067
|
-
exports.ListManagedNotificationChannelAssociations$ = ListManagedNotificationChannelAssociations$;
|
|
2068
811
|
exports.ListManagedNotificationChannelAssociationsCommand = ListManagedNotificationChannelAssociationsCommand;
|
|
2069
|
-
exports.ListManagedNotificationChannelAssociationsRequest$ = ListManagedNotificationChannelAssociationsRequest$;
|
|
2070
|
-
exports.ListManagedNotificationChannelAssociationsResponse$ = ListManagedNotificationChannelAssociationsResponse$;
|
|
2071
|
-
exports.ListManagedNotificationChildEvents$ = ListManagedNotificationChildEvents$;
|
|
2072
812
|
exports.ListManagedNotificationChildEventsCommand = ListManagedNotificationChildEventsCommand;
|
|
2073
|
-
exports.ListManagedNotificationChildEventsRequest$ = ListManagedNotificationChildEventsRequest$;
|
|
2074
|
-
exports.ListManagedNotificationChildEventsResponse$ = ListManagedNotificationChildEventsResponse$;
|
|
2075
|
-
exports.ListManagedNotificationConfigurations$ = ListManagedNotificationConfigurations$;
|
|
2076
813
|
exports.ListManagedNotificationConfigurationsCommand = ListManagedNotificationConfigurationsCommand;
|
|
2077
|
-
exports.ListManagedNotificationConfigurationsRequest$ = ListManagedNotificationConfigurationsRequest$;
|
|
2078
|
-
exports.ListManagedNotificationConfigurationsResponse$ = ListManagedNotificationConfigurationsResponse$;
|
|
2079
|
-
exports.ListManagedNotificationEvents$ = ListManagedNotificationEvents$;
|
|
2080
814
|
exports.ListManagedNotificationEventsCommand = ListManagedNotificationEventsCommand;
|
|
2081
|
-
exports.ListManagedNotificationEventsRequest$ = ListManagedNotificationEventsRequest$;
|
|
2082
|
-
exports.ListManagedNotificationEventsResponse$ = ListManagedNotificationEventsResponse$;
|
|
2083
|
-
exports.ListMemberAccounts$ = ListMemberAccounts$;
|
|
2084
815
|
exports.ListMemberAccountsCommand = ListMemberAccountsCommand;
|
|
2085
|
-
exports.ListMemberAccountsRequest$ = ListMemberAccountsRequest$;
|
|
2086
|
-
exports.ListMemberAccountsResponse$ = ListMemberAccountsResponse$;
|
|
2087
|
-
exports.ListNotificationConfigurations$ = ListNotificationConfigurations$;
|
|
2088
816
|
exports.ListNotificationConfigurationsCommand = ListNotificationConfigurationsCommand;
|
|
2089
|
-
exports.ListNotificationConfigurationsRequest$ = ListNotificationConfigurationsRequest$;
|
|
2090
|
-
exports.ListNotificationConfigurationsResponse$ = ListNotificationConfigurationsResponse$;
|
|
2091
|
-
exports.ListNotificationEvents$ = ListNotificationEvents$;
|
|
2092
817
|
exports.ListNotificationEventsCommand = ListNotificationEventsCommand;
|
|
2093
|
-
exports.ListNotificationEventsRequest$ = ListNotificationEventsRequest$;
|
|
2094
|
-
exports.ListNotificationEventsResponse$ = ListNotificationEventsResponse$;
|
|
2095
|
-
exports.ListNotificationHubs$ = ListNotificationHubs$;
|
|
2096
818
|
exports.ListNotificationHubsCommand = ListNotificationHubsCommand;
|
|
2097
|
-
exports.ListNotificationHubsRequest$ = ListNotificationHubsRequest$;
|
|
2098
|
-
exports.ListNotificationHubsResponse$ = ListNotificationHubsResponse$;
|
|
2099
|
-
exports.ListOrganizationalUnits$ = ListOrganizationalUnits$;
|
|
2100
819
|
exports.ListOrganizationalUnitsCommand = ListOrganizationalUnitsCommand;
|
|
2101
|
-
exports.ListOrganizationalUnitsRequest$ = ListOrganizationalUnitsRequest$;
|
|
2102
|
-
exports.ListOrganizationalUnitsResponse$ = ListOrganizationalUnitsResponse$;
|
|
2103
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2104
820
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2105
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2106
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2107
821
|
exports.LocaleCode = LocaleCode;
|
|
2108
|
-
exports.ManagedNotificationChannelAssociationSummary$ = ManagedNotificationChannelAssociationSummary$;
|
|
2109
|
-
exports.ManagedNotificationChildEvent$ = ManagedNotificationChildEvent$;
|
|
2110
|
-
exports.ManagedNotificationChildEventOverview$ = ManagedNotificationChildEventOverview$;
|
|
2111
|
-
exports.ManagedNotificationChildEventSummary$ = ManagedNotificationChildEventSummary$;
|
|
2112
|
-
exports.ManagedNotificationConfigurationStructure$ = ManagedNotificationConfigurationStructure$;
|
|
2113
|
-
exports.ManagedNotificationEvent$ = ManagedNotificationEvent$;
|
|
2114
|
-
exports.ManagedNotificationEventOverview$ = ManagedNotificationEventOverview$;
|
|
2115
|
-
exports.ManagedNotificationEventSummary$ = ManagedNotificationEventSummary$;
|
|
2116
|
-
exports.ManagedSourceEventMetadataSummary$ = ManagedSourceEventMetadataSummary$;
|
|
2117
|
-
exports.MediaElement$ = MediaElement$;
|
|
2118
822
|
exports.MediaElementType = MediaElementType;
|
|
2119
|
-
exports.MemberAccount$ = MemberAccount$;
|
|
2120
823
|
exports.MemberAccountNotificationConfigurationStatus = MemberAccountNotificationConfigurationStatus;
|
|
2121
|
-
exports.MessageComponents$ = MessageComponents$;
|
|
2122
|
-
exports.MessageComponentsSummary$ = MessageComponentsSummary$;
|
|
2123
824
|
exports.NotificationConfigurationStatus = NotificationConfigurationStatus;
|
|
2124
|
-
exports.NotificationConfigurationStructure$ = NotificationConfigurationStructure$;
|
|
2125
825
|
exports.NotificationConfigurationSubtype = NotificationConfigurationSubtype;
|
|
2126
|
-
exports.NotificationEventOverview$ = NotificationEventOverview$;
|
|
2127
|
-
exports.NotificationEventSchema$ = NotificationEventSchema$;
|
|
2128
|
-
exports.NotificationEventSummary$ = NotificationEventSummary$;
|
|
2129
|
-
exports.NotificationHubOverview$ = NotificationHubOverview$;
|
|
2130
826
|
exports.NotificationHubStatus = NotificationHubStatus;
|
|
2131
|
-
exports.NotificationHubStatusSummary$ = NotificationHubStatusSummary$;
|
|
2132
827
|
exports.NotificationType = NotificationType;
|
|
2133
828
|
exports.Notifications = Notifications;
|
|
2134
|
-
exports.NotificationsAccessForOrganization$ = NotificationsAccessForOrganization$;
|
|
2135
829
|
exports.NotificationsClient = NotificationsClient;
|
|
2136
|
-
exports.NotificationsServiceException = NotificationsServiceException;
|
|
2137
|
-
exports.NotificationsServiceException$ = NotificationsServiceException$;
|
|
2138
|
-
exports.RegisterNotificationHub$ = RegisterNotificationHub$;
|
|
2139
830
|
exports.RegisterNotificationHubCommand = RegisterNotificationHubCommand;
|
|
2140
|
-
exports.RegisterNotificationHubRequest$ = RegisterNotificationHubRequest$;
|
|
2141
|
-
exports.RegisterNotificationHubResponse$ = RegisterNotificationHubResponse$;
|
|
2142
|
-
exports.Resource$ = Resource$;
|
|
2143
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2144
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2145
831
|
exports.SchemaVersion = SchemaVersion;
|
|
2146
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2147
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2148
|
-
exports.SourceEventMetadata$ = SourceEventMetadata$;
|
|
2149
|
-
exports.SourceEventMetadataSummary$ = SourceEventMetadataSummary$;
|
|
2150
|
-
exports.SummarizationDimensionDetail$ = SummarizationDimensionDetail$;
|
|
2151
|
-
exports.SummarizationDimensionOverview$ = SummarizationDimensionOverview$;
|
|
2152
|
-
exports.TagResource$ = TagResource$;
|
|
2153
832
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2154
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2155
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2156
833
|
exports.TextPartType = TextPartType;
|
|
2157
|
-
exports.TextPartValue$ = TextPartValue$;
|
|
2158
|
-
exports.ThrottlingException = ThrottlingException;
|
|
2159
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
2160
|
-
exports.UntagResource$ = UntagResource$;
|
|
2161
834
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2162
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2163
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2164
|
-
exports.UpdateEventRule$ = UpdateEventRule$;
|
|
2165
835
|
exports.UpdateEventRuleCommand = UpdateEventRuleCommand;
|
|
2166
|
-
exports.UpdateEventRuleRequest$ = UpdateEventRuleRequest$;
|
|
2167
|
-
exports.UpdateEventRuleResponse$ = UpdateEventRuleResponse$;
|
|
2168
|
-
exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
|
|
2169
836
|
exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
|
|
2170
|
-
exports.UpdateNotificationConfigurationRequest$ = UpdateNotificationConfigurationRequest$;
|
|
2171
|
-
exports.UpdateNotificationConfigurationResponse$ = UpdateNotificationConfigurationResponse$;
|
|
2172
|
-
exports.ValidationException = ValidationException;
|
|
2173
|
-
exports.ValidationException$ = ValidationException$;
|
|
2174
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2175
837
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2176
838
|
exports.paginateListChannels = paginateListChannels;
|
|
2177
839
|
exports.paginateListEventRules = paginateListEventRules;
|
|
@@ -2184,3 +846,15 @@ exports.paginateListNotificationConfigurations = paginateListNotificationConfigu
|
|
|
2184
846
|
exports.paginateListNotificationEvents = paginateListNotificationEvents;
|
|
2185
847
|
exports.paginateListNotificationHubs = paginateListNotificationHubs;
|
|
2186
848
|
exports.paginateListOrganizationalUnits = paginateListOrganizationalUnits;
|
|
849
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
850
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
851
|
+
enumerable: true,
|
|
852
|
+
get: function () { return schemas_0[k]; }
|
|
853
|
+
});
|
|
854
|
+
});
|
|
855
|
+
Object.keys(errors).forEach(function (k) {
|
|
856
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
857
|
+
enumerable: true,
|
|
858
|
+
get: function () { return errors[k]; }
|
|
859
|
+
});
|
|
860
|
+
});
|