@aws-sdk/client-codestar-notifications 3.1075.0 → 3.1077.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 +749 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CodestarNotificationsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -113
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -431
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
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 {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultCodestarNotificationsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "codestar-notifications",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultCodestarNotificationsHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,638 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://codestar-notifications-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://codestar-notifications-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://codestar-notifications.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://codestar-notifications.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class CodestarNotificationsServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, CodestarNotificationsServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends CodestarNotificationsServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
Message;
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccessDeniedException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
151
|
+
this.Message = opts.Message;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
class ConcurrentModificationException extends CodestarNotificationsServiceException {
|
|
155
|
+
name = "ConcurrentModificationException";
|
|
156
|
+
$fault = "client";
|
|
157
|
+
Message;
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "ConcurrentModificationException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class ConfigurationException extends CodestarNotificationsServiceException {
|
|
169
|
+
name = "ConfigurationException";
|
|
170
|
+
$fault = "client";
|
|
171
|
+
Message;
|
|
172
|
+
constructor(opts) {
|
|
173
|
+
super({
|
|
174
|
+
name: "ConfigurationException",
|
|
175
|
+
$fault: "client",
|
|
176
|
+
...opts,
|
|
177
|
+
});
|
|
178
|
+
Object.setPrototypeOf(this, ConfigurationException.prototype);
|
|
179
|
+
this.Message = opts.Message;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class LimitExceededException extends CodestarNotificationsServiceException {
|
|
183
|
+
name = "LimitExceededException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
Message;
|
|
186
|
+
constructor(opts) {
|
|
187
|
+
super({
|
|
188
|
+
name: "LimitExceededException",
|
|
189
|
+
$fault: "client",
|
|
190
|
+
...opts,
|
|
191
|
+
});
|
|
192
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
193
|
+
this.Message = opts.Message;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
class ResourceAlreadyExistsException extends CodestarNotificationsServiceException {
|
|
197
|
+
name = "ResourceAlreadyExistsException";
|
|
198
|
+
$fault = "client";
|
|
199
|
+
Message;
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "ResourceAlreadyExistsException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
207
|
+
this.Message = opts.Message;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
class ValidationException extends CodestarNotificationsServiceException {
|
|
211
|
+
name = "ValidationException";
|
|
212
|
+
$fault = "client";
|
|
213
|
+
Message;
|
|
214
|
+
constructor(opts) {
|
|
215
|
+
super({
|
|
216
|
+
name: "ValidationException",
|
|
217
|
+
$fault: "client",
|
|
218
|
+
...opts,
|
|
219
|
+
});
|
|
220
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
221
|
+
this.Message = opts.Message;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
class ResourceNotFoundException extends CodestarNotificationsServiceException {
|
|
225
|
+
name = "ResourceNotFoundException";
|
|
226
|
+
$fault = "client";
|
|
227
|
+
Message;
|
|
228
|
+
constructor(opts) {
|
|
229
|
+
super({
|
|
230
|
+
name: "ResourceNotFoundException",
|
|
231
|
+
$fault: "client",
|
|
232
|
+
...opts,
|
|
233
|
+
});
|
|
234
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
235
|
+
this.Message = opts.Message;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
class InvalidNextTokenException extends CodestarNotificationsServiceException {
|
|
239
|
+
name = "InvalidNextTokenException";
|
|
240
|
+
$fault = "client";
|
|
241
|
+
Message;
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "InvalidNextTokenException",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
249
|
+
this.Message = opts.Message;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
const _A = "Arn";
|
|
254
|
+
const _ADE = "AccessDeniedException";
|
|
255
|
+
const _CB = "CreatedBy";
|
|
256
|
+
const _CE = "ConfigurationException";
|
|
257
|
+
const _CME = "ConcurrentModificationException";
|
|
258
|
+
const _CNR = "CreateNotificationRule";
|
|
259
|
+
const _CNRR = "CreateNotificationRuleRequest";
|
|
260
|
+
const _CNRRr = "CreateNotificationRuleResult";
|
|
261
|
+
const _CRT = "ClientRequestToken";
|
|
262
|
+
const _CT = "CreatedTimestamp";
|
|
263
|
+
const _DNR = "DeleteNotificationRule";
|
|
264
|
+
const _DNRR = "DeleteNotificationRuleRequest";
|
|
265
|
+
const _DNRRe = "DeleteNotificationRuleResult";
|
|
266
|
+
const _DNRRes = "DescribeNotificationRuleRequest";
|
|
267
|
+
const _DNRResc = "DescribeNotificationRuleResult";
|
|
268
|
+
const _DNRe = "DescribeNotificationRule";
|
|
269
|
+
const _DT = "DetailType";
|
|
270
|
+
const _DTR = "DeleteTargetRequest";
|
|
271
|
+
const _DTRe = "DeleteTargetResult";
|
|
272
|
+
const _DTe = "DeleteTarget";
|
|
273
|
+
const _ET = "EventTypes";
|
|
274
|
+
const _ETB = "EventTypeBatch";
|
|
275
|
+
const _ETI = "EventTypeIds";
|
|
276
|
+
const _ETIv = "EventTypeId";
|
|
277
|
+
const _ETN = "EventTypeName";
|
|
278
|
+
const _ETS = "EventTypeSummary";
|
|
279
|
+
const _F = "Filters";
|
|
280
|
+
const _FUA = "ForceUnsubscribeAll";
|
|
281
|
+
const _I = "Id";
|
|
282
|
+
const _INTE = "InvalidNextTokenException";
|
|
283
|
+
const _LEE = "LimitExceededException";
|
|
284
|
+
const _LET = "ListEventTypes";
|
|
285
|
+
const _LETF = "ListEventTypesFilter";
|
|
286
|
+
const _LETFi = "ListEventTypesFilters";
|
|
287
|
+
const _LETR = "ListEventTypesRequest";
|
|
288
|
+
const _LETRi = "ListEventTypesResult";
|
|
289
|
+
const _LMT = "LastModifiedTimestamp";
|
|
290
|
+
const _LNR = "ListNotificationRules";
|
|
291
|
+
const _LNRF = "ListNotificationRulesFilter";
|
|
292
|
+
const _LNRFi = "ListNotificationRulesFilters";
|
|
293
|
+
const _LNRR = "ListNotificationRulesRequest";
|
|
294
|
+
const _LNRRi = "ListNotificationRulesResult";
|
|
295
|
+
const _LT = "ListTargets";
|
|
296
|
+
const _LTF = "ListTargetsFilter";
|
|
297
|
+
const _LTFR = "ListTagsForResource";
|
|
298
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
299
|
+
const _LTFRRi = "ListTagsForResourceResult";
|
|
300
|
+
const _LTFi = "ListTargetsFilters";
|
|
301
|
+
const _LTR = "ListTargetsRequest";
|
|
302
|
+
const _LTRi = "ListTargetsResult";
|
|
303
|
+
const _M = "Message";
|
|
304
|
+
const _MR = "MaxResults";
|
|
305
|
+
const _N = "Name";
|
|
306
|
+
const _NR = "NotificationRules";
|
|
307
|
+
const _NRB = "NotificationRuleBatch";
|
|
308
|
+
const _NRN = "NotificationRuleName";
|
|
309
|
+
const _NRS = "NotificationRuleSummary";
|
|
310
|
+
const _NT = "NextToken";
|
|
311
|
+
const _R = "Resource";
|
|
312
|
+
const _RAEE = "ResourceAlreadyExistsException";
|
|
313
|
+
const _RNFE = "ResourceNotFoundException";
|
|
314
|
+
const _RT = "ResourceType";
|
|
315
|
+
const _S = "Status";
|
|
316
|
+
const _SN = "ServiceName";
|
|
317
|
+
const _SR = "SubscribeRequest";
|
|
318
|
+
const _SRu = "SubscribeResult";
|
|
319
|
+
const _Su = "Subscribe";
|
|
320
|
+
const _T = "Targets";
|
|
321
|
+
const _TA = "TargetAddress";
|
|
322
|
+
const _TB = "TargetsBatch";
|
|
323
|
+
const _TK = "TagKeys";
|
|
324
|
+
const _TR = "TagResource";
|
|
325
|
+
const _TRR = "TagResourceRequest";
|
|
326
|
+
const _TRRa = "TagResourceResult";
|
|
327
|
+
const _TS = "TargetSummary";
|
|
328
|
+
const _TSa = "TargetStatus";
|
|
329
|
+
const _TT = "TargetType";
|
|
330
|
+
const _Ta = "Tags";
|
|
331
|
+
const _Tar = "Target";
|
|
332
|
+
const _U = "Unsubscribe";
|
|
333
|
+
const _UNR = "UpdateNotificationRule";
|
|
334
|
+
const _UNRR = "UpdateNotificationRuleRequest";
|
|
335
|
+
const _UNRRp = "UpdateNotificationRuleResult";
|
|
336
|
+
const _UR = "UnsubscribeRequest";
|
|
337
|
+
const _URR = "UntagResourceRequest";
|
|
338
|
+
const _URRn = "UntagResourceResult";
|
|
339
|
+
const _URn = "UnsubscribeResult";
|
|
340
|
+
const _URnt = "UntagResource";
|
|
341
|
+
const _V = "Value";
|
|
342
|
+
const _VE = "ValidationException";
|
|
343
|
+
const _c = "client";
|
|
344
|
+
const _e = "error";
|
|
345
|
+
const _h = "http";
|
|
346
|
+
const _hE = "httpError";
|
|
347
|
+
const _hQ = "httpQuery";
|
|
348
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codestarnotifications";
|
|
349
|
+
const _tK = "tagKeys";
|
|
350
|
+
const n0 = "com.amazonaws.codestarnotifications";
|
|
351
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
352
|
+
var CodestarNotificationsServiceException$ = [-3, _s, "CodestarNotificationsServiceException", 0, [], []];
|
|
353
|
+
_s_registry.registerError(CodestarNotificationsServiceException$, CodestarNotificationsServiceException);
|
|
354
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
355
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
356
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
357
|
+
[_M],
|
|
358
|
+
[0]
|
|
359
|
+
];
|
|
360
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
361
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
362
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
363
|
+
[_M],
|
|
364
|
+
[0]
|
|
365
|
+
];
|
|
366
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
367
|
+
var ConfigurationException$ = [-3, n0, _CE,
|
|
368
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
369
|
+
[_M],
|
|
370
|
+
[0]
|
|
371
|
+
];
|
|
372
|
+
n0_registry.registerError(ConfigurationException$, ConfigurationException);
|
|
373
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
374
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
375
|
+
[_M],
|
|
376
|
+
[0]
|
|
377
|
+
];
|
|
378
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
379
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
380
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
381
|
+
[_M],
|
|
382
|
+
[0]
|
|
383
|
+
];
|
|
384
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
385
|
+
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
386
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
387
|
+
[_M],
|
|
388
|
+
[0]
|
|
389
|
+
];
|
|
390
|
+
n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
391
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
392
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
393
|
+
[_M],
|
|
394
|
+
[0]
|
|
395
|
+
];
|
|
396
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
397
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
398
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
399
|
+
[_M],
|
|
400
|
+
[0]
|
|
401
|
+
];
|
|
402
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
403
|
+
const errorTypeRegistries = [
|
|
404
|
+
_s_registry,
|
|
405
|
+
n0_registry,
|
|
406
|
+
];
|
|
407
|
+
var NotificationRuleName = [0, n0, _NRN, 8, 0];
|
|
408
|
+
var TargetAddress = [0, n0, _TA, 8, 0];
|
|
409
|
+
var CreateNotificationRuleRequest$ = [3, n0, _CNRR,
|
|
410
|
+
0,
|
|
411
|
+
[_N, _ETI, _R, _T, _DT, _CRT, _Ta, _S],
|
|
412
|
+
[[() => NotificationRuleName, 0], 64 | 0, 0, [() => Targets, 0], 0, [0, 4], 128 | 0, 0], 5
|
|
413
|
+
];
|
|
414
|
+
var CreateNotificationRuleResult$ = [3, n0, _CNRRr,
|
|
415
|
+
0,
|
|
416
|
+
[_A],
|
|
417
|
+
[0]
|
|
418
|
+
];
|
|
419
|
+
var DeleteNotificationRuleRequest$ = [3, n0, _DNRR,
|
|
420
|
+
0,
|
|
421
|
+
[_A],
|
|
422
|
+
[0], 1
|
|
423
|
+
];
|
|
424
|
+
var DeleteNotificationRuleResult$ = [3, n0, _DNRRe,
|
|
425
|
+
0,
|
|
426
|
+
[_A],
|
|
427
|
+
[0]
|
|
428
|
+
];
|
|
429
|
+
var DeleteTargetRequest$ = [3, n0, _DTR,
|
|
430
|
+
0,
|
|
431
|
+
[_TA, _FUA],
|
|
432
|
+
[[() => TargetAddress, 0], 2], 1
|
|
433
|
+
];
|
|
434
|
+
var DeleteTargetResult$ = [3, n0, _DTRe,
|
|
435
|
+
0,
|
|
436
|
+
[],
|
|
437
|
+
[]
|
|
438
|
+
];
|
|
439
|
+
var DescribeNotificationRuleRequest$ = [3, n0, _DNRRes,
|
|
440
|
+
0,
|
|
441
|
+
[_A],
|
|
442
|
+
[0], 1
|
|
443
|
+
];
|
|
444
|
+
var DescribeNotificationRuleResult$ = [3, n0, _DNRResc,
|
|
445
|
+
0,
|
|
446
|
+
[_A, _N, _ET, _R, _T, _DT, _CB, _S, _CT, _LMT, _Ta],
|
|
447
|
+
[0, [() => NotificationRuleName, 0], () => EventTypeBatch, 0, [() => TargetsBatch, 0], 0, 0, 0, 4, 4, 128 | 0], 1
|
|
448
|
+
];
|
|
449
|
+
var EventTypeSummary$ = [3, n0, _ETS,
|
|
450
|
+
0,
|
|
451
|
+
[_ETIv, _SN, _ETN, _RT],
|
|
452
|
+
[0, 0, 0, 0]
|
|
453
|
+
];
|
|
454
|
+
var ListEventTypesFilter$ = [3, n0, _LETF,
|
|
455
|
+
0,
|
|
456
|
+
[_N, _V],
|
|
457
|
+
[0, 0], 2
|
|
458
|
+
];
|
|
459
|
+
var ListEventTypesRequest$ = [3, n0, _LETR,
|
|
460
|
+
0,
|
|
461
|
+
[_F, _NT, _MR],
|
|
462
|
+
[() => ListEventTypesFilters, 0, 1]
|
|
463
|
+
];
|
|
464
|
+
var ListEventTypesResult$ = [3, n0, _LETRi,
|
|
465
|
+
0,
|
|
466
|
+
[_ET, _NT],
|
|
467
|
+
[() => EventTypeBatch, 0]
|
|
468
|
+
];
|
|
469
|
+
var ListNotificationRulesFilter$ = [3, n0, _LNRF,
|
|
470
|
+
0,
|
|
471
|
+
[_N, _V],
|
|
472
|
+
[0, 0], 2
|
|
473
|
+
];
|
|
474
|
+
var ListNotificationRulesRequest$ = [3, n0, _LNRR,
|
|
475
|
+
0,
|
|
476
|
+
[_F, _NT, _MR],
|
|
477
|
+
[() => ListNotificationRulesFilters, 0, 1]
|
|
478
|
+
];
|
|
479
|
+
var ListNotificationRulesResult$ = [3, n0, _LNRRi,
|
|
480
|
+
0,
|
|
481
|
+
[_NT, _NR],
|
|
482
|
+
[0, () => NotificationRuleBatch]
|
|
483
|
+
];
|
|
484
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
485
|
+
0,
|
|
486
|
+
[_A],
|
|
487
|
+
[0], 1
|
|
488
|
+
];
|
|
489
|
+
var ListTagsForResourceResult$ = [3, n0, _LTFRRi,
|
|
490
|
+
0,
|
|
491
|
+
[_Ta],
|
|
492
|
+
[128 | 0]
|
|
493
|
+
];
|
|
494
|
+
var ListTargetsFilter$ = [3, n0, _LTF,
|
|
495
|
+
0,
|
|
496
|
+
[_N, _V],
|
|
497
|
+
[0, 0], 2
|
|
498
|
+
];
|
|
499
|
+
var ListTargetsRequest$ = [3, n0, _LTR,
|
|
500
|
+
0,
|
|
501
|
+
[_F, _NT, _MR],
|
|
502
|
+
[() => ListTargetsFilters, 0, 1]
|
|
503
|
+
];
|
|
504
|
+
var ListTargetsResult$ = [3, n0, _LTRi,
|
|
505
|
+
0,
|
|
506
|
+
[_T, _NT],
|
|
507
|
+
[[() => TargetsBatch, 0], 0]
|
|
508
|
+
];
|
|
509
|
+
var NotificationRuleSummary$ = [3, n0, _NRS,
|
|
510
|
+
0,
|
|
511
|
+
[_I, _A],
|
|
512
|
+
[0, 0]
|
|
513
|
+
];
|
|
514
|
+
var SubscribeRequest$ = [3, n0, _SR,
|
|
515
|
+
0,
|
|
516
|
+
[_A, _Tar, _CRT],
|
|
517
|
+
[0, [() => Target$, 0], 0], 2
|
|
518
|
+
];
|
|
519
|
+
var SubscribeResult$ = [3, n0, _SRu,
|
|
520
|
+
0,
|
|
521
|
+
[_A],
|
|
522
|
+
[0]
|
|
523
|
+
];
|
|
524
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
525
|
+
0,
|
|
526
|
+
[_A, _Ta],
|
|
527
|
+
[0, 128 | 0], 2
|
|
528
|
+
];
|
|
529
|
+
var TagResourceResult$ = [3, n0, _TRRa,
|
|
530
|
+
0,
|
|
531
|
+
[_Ta],
|
|
532
|
+
[128 | 0]
|
|
533
|
+
];
|
|
534
|
+
var Target$ = [3, n0, _Tar,
|
|
535
|
+
0,
|
|
536
|
+
[_TT, _TA],
|
|
537
|
+
[0, [() => TargetAddress, 0]]
|
|
538
|
+
];
|
|
539
|
+
var TargetSummary$ = [3, n0, _TS,
|
|
540
|
+
0,
|
|
541
|
+
[_TA, _TT, _TSa],
|
|
542
|
+
[[() => TargetAddress, 0], 0, 0]
|
|
543
|
+
];
|
|
544
|
+
var UnsubscribeRequest$ = [3, n0, _UR,
|
|
545
|
+
0,
|
|
546
|
+
[_A, _TA],
|
|
547
|
+
[0, [() => TargetAddress, 0]], 2
|
|
548
|
+
];
|
|
549
|
+
var UnsubscribeResult$ = [3, n0, _URn,
|
|
550
|
+
0,
|
|
551
|
+
[_A],
|
|
552
|
+
[0], 1
|
|
553
|
+
];
|
|
554
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
555
|
+
0,
|
|
556
|
+
[_A, _TK],
|
|
557
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
558
|
+
];
|
|
559
|
+
var UntagResourceResult$ = [3, n0, _URRn,
|
|
560
|
+
0,
|
|
561
|
+
[],
|
|
562
|
+
[]
|
|
563
|
+
];
|
|
564
|
+
var UpdateNotificationRuleRequest$ = [3, n0, _UNRR,
|
|
565
|
+
0,
|
|
566
|
+
[_A, _N, _S, _ETI, _T, _DT],
|
|
567
|
+
[0, [() => NotificationRuleName, 0], 0, 64 | 0, [() => Targets, 0], 0], 1
|
|
568
|
+
];
|
|
569
|
+
var UpdateNotificationRuleResult$ = [3, n0, _UNRRp,
|
|
570
|
+
0,
|
|
571
|
+
[],
|
|
572
|
+
[]
|
|
573
|
+
];
|
|
574
|
+
var EventTypeBatch = [1, n0, _ETB,
|
|
575
|
+
0, () => EventTypeSummary$
|
|
576
|
+
];
|
|
577
|
+
var ListEventTypesFilters = [1, n0, _LETFi,
|
|
578
|
+
0, () => ListEventTypesFilter$
|
|
579
|
+
];
|
|
580
|
+
var ListNotificationRulesFilters = [1, n0, _LNRFi,
|
|
581
|
+
0, () => ListNotificationRulesFilter$
|
|
582
|
+
];
|
|
583
|
+
var ListTargetsFilters = [1, n0, _LTFi,
|
|
584
|
+
0, () => ListTargetsFilter$
|
|
585
|
+
];
|
|
586
|
+
var NotificationRuleBatch = [1, n0, _NRB,
|
|
587
|
+
0, () => NotificationRuleSummary$
|
|
588
|
+
];
|
|
589
|
+
var Targets = [1, n0, _T,
|
|
590
|
+
0, [() => Target$,
|
|
591
|
+
0]
|
|
592
|
+
];
|
|
593
|
+
var TargetsBatch = [1, n0, _TB,
|
|
594
|
+
0, [() => TargetSummary$,
|
|
595
|
+
0]
|
|
596
|
+
];
|
|
597
|
+
var CreateNotificationRule$ = [9, n0, _CNR,
|
|
598
|
+
{ [_h]: ["POST", "/createNotificationRule", 200] }, () => CreateNotificationRuleRequest$, () => CreateNotificationRuleResult$
|
|
599
|
+
];
|
|
600
|
+
var DeleteNotificationRule$ = [9, n0, _DNR,
|
|
601
|
+
{ [_h]: ["POST", "/deleteNotificationRule", 200] }, () => DeleteNotificationRuleRequest$, () => DeleteNotificationRuleResult$
|
|
602
|
+
];
|
|
603
|
+
var DeleteTarget$ = [9, n0, _DTe,
|
|
604
|
+
{ [_h]: ["POST", "/deleteTarget", 200] }, () => DeleteTargetRequest$, () => DeleteTargetResult$
|
|
605
|
+
];
|
|
606
|
+
var DescribeNotificationRule$ = [9, n0, _DNRe,
|
|
607
|
+
{ [_h]: ["POST", "/describeNotificationRule", 200] }, () => DescribeNotificationRuleRequest$, () => DescribeNotificationRuleResult$
|
|
608
|
+
];
|
|
609
|
+
var ListEventTypes$ = [9, n0, _LET,
|
|
610
|
+
{ [_h]: ["POST", "/listEventTypes", 200] }, () => ListEventTypesRequest$, () => ListEventTypesResult$
|
|
611
|
+
];
|
|
612
|
+
var ListNotificationRules$ = [9, n0, _LNR,
|
|
613
|
+
{ [_h]: ["POST", "/listNotificationRules", 200] }, () => ListNotificationRulesRequest$, () => ListNotificationRulesResult$
|
|
614
|
+
];
|
|
615
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
616
|
+
{ [_h]: ["POST", "/listTagsForResource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResult$
|
|
617
|
+
];
|
|
618
|
+
var ListTargets$ = [9, n0, _LT,
|
|
619
|
+
{ [_h]: ["POST", "/listTargets", 200] }, () => ListTargetsRequest$, () => ListTargetsResult$
|
|
620
|
+
];
|
|
621
|
+
var Subscribe$ = [9, n0, _Su,
|
|
622
|
+
{ [_h]: ["POST", "/subscribe", 200] }, () => SubscribeRequest$, () => SubscribeResult$
|
|
623
|
+
];
|
|
624
|
+
var TagResource$ = [9, n0, _TR,
|
|
625
|
+
{ [_h]: ["POST", "/tagResource", 200] }, () => TagResourceRequest$, () => TagResourceResult$
|
|
626
|
+
];
|
|
627
|
+
var Unsubscribe$ = [9, n0, _U,
|
|
628
|
+
{ [_h]: ["POST", "/unsubscribe", 200] }, () => UnsubscribeRequest$, () => UnsubscribeResult$
|
|
629
|
+
];
|
|
630
|
+
var UntagResource$ = [9, n0, _URnt,
|
|
631
|
+
{ [_h]: ["POST", "/untagResource/{Arn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResult$
|
|
632
|
+
];
|
|
633
|
+
var UpdateNotificationRule$ = [9, n0, _UNR,
|
|
634
|
+
{ [_h]: ["POST", "/updateNotificationRule", 200] }, () => UpdateNotificationRuleRequest$, () => UpdateNotificationRuleResult$
|
|
635
|
+
];
|
|
636
|
+
|
|
637
|
+
const getRuntimeConfig$1 = (config) => {
|
|
638
|
+
return {
|
|
639
|
+
apiVersion: "2019-10-15",
|
|
640
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
641
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
642
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
643
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
644
|
+
extensions: config?.extensions ?? [],
|
|
645
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodestarNotificationsHttpAuthSchemeProvider,
|
|
646
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
647
|
+
{
|
|
648
|
+
schemeId: "aws.auth#sigv4",
|
|
649
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
650
|
+
signer: new AwsSdkSigV4Signer(),
|
|
651
|
+
},
|
|
652
|
+
],
|
|
653
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
654
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
655
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
656
|
+
defaultNamespace: "com.amazonaws.codestarnotifications",
|
|
657
|
+
errorTypeRegistries,
|
|
658
|
+
version: "2019-10-15",
|
|
659
|
+
serviceTarget: "CodeStarNotifications_20191015",
|
|
660
|
+
},
|
|
661
|
+
serviceId: config?.serviceId ?? "codestar notifications",
|
|
662
|
+
sha256: config?.sha256 ?? Sha256,
|
|
663
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
664
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
665
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
666
|
+
};
|
|
667
|
+
};
|
|
668
|
+
|
|
669
|
+
const getRuntimeConfig = (config) => {
|
|
670
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
671
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
672
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
673
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
674
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
675
|
+
const loaderConfig = {
|
|
676
|
+
profile: config?.profile,
|
|
677
|
+
logger: clientSharedValues.logger,
|
|
678
|
+
};
|
|
679
|
+
return {
|
|
680
|
+
...clientSharedValues,
|
|
681
|
+
...config,
|
|
682
|
+
runtime: "node",
|
|
683
|
+
defaultsMode,
|
|
684
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
685
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
686
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
687
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
688
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
689
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
690
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
691
|
+
retryMode: config?.retryMode ??
|
|
692
|
+
loadConfig({
|
|
693
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
694
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
695
|
+
}, config),
|
|
696
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
697
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
698
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
699
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
700
|
+
};
|
|
701
|
+
};
|
|
702
|
+
|
|
34
703
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
704
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
705
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -328,27 +997,92 @@ const ListTargetsFilterName = {
|
|
|
328
997
|
TARGET_TYPE: "TARGET_TYPE",
|
|
329
998
|
};
|
|
330
999
|
|
|
1000
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1001
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
331
1002
|
exports.CodestarNotifications = CodestarNotifications;
|
|
332
1003
|
exports.CodestarNotificationsClient = CodestarNotificationsClient;
|
|
1004
|
+
exports.CodestarNotificationsServiceException = CodestarNotificationsServiceException;
|
|
1005
|
+
exports.CodestarNotificationsServiceException$ = CodestarNotificationsServiceException$;
|
|
1006
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1007
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1008
|
+
exports.ConfigurationException = ConfigurationException;
|
|
1009
|
+
exports.ConfigurationException$ = ConfigurationException$;
|
|
1010
|
+
exports.CreateNotificationRule$ = CreateNotificationRule$;
|
|
333
1011
|
exports.CreateNotificationRuleCommand = CreateNotificationRuleCommand;
|
|
1012
|
+
exports.CreateNotificationRuleRequest$ = CreateNotificationRuleRequest$;
|
|
1013
|
+
exports.CreateNotificationRuleResult$ = CreateNotificationRuleResult$;
|
|
1014
|
+
exports.DeleteNotificationRule$ = DeleteNotificationRule$;
|
|
334
1015
|
exports.DeleteNotificationRuleCommand = DeleteNotificationRuleCommand;
|
|
1016
|
+
exports.DeleteNotificationRuleRequest$ = DeleteNotificationRuleRequest$;
|
|
1017
|
+
exports.DeleteNotificationRuleResult$ = DeleteNotificationRuleResult$;
|
|
1018
|
+
exports.DeleteTarget$ = DeleteTarget$;
|
|
335
1019
|
exports.DeleteTargetCommand = DeleteTargetCommand;
|
|
1020
|
+
exports.DeleteTargetRequest$ = DeleteTargetRequest$;
|
|
1021
|
+
exports.DeleteTargetResult$ = DeleteTargetResult$;
|
|
1022
|
+
exports.DescribeNotificationRule$ = DescribeNotificationRule$;
|
|
336
1023
|
exports.DescribeNotificationRuleCommand = DescribeNotificationRuleCommand;
|
|
1024
|
+
exports.DescribeNotificationRuleRequest$ = DescribeNotificationRuleRequest$;
|
|
1025
|
+
exports.DescribeNotificationRuleResult$ = DescribeNotificationRuleResult$;
|
|
337
1026
|
exports.DetailType = DetailType;
|
|
1027
|
+
exports.EventTypeSummary$ = EventTypeSummary$;
|
|
1028
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1029
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
1030
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1031
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1032
|
+
exports.ListEventTypes$ = ListEventTypes$;
|
|
338
1033
|
exports.ListEventTypesCommand = ListEventTypesCommand;
|
|
1034
|
+
exports.ListEventTypesFilter$ = ListEventTypesFilter$;
|
|
339
1035
|
exports.ListEventTypesFilterName = ListEventTypesFilterName;
|
|
1036
|
+
exports.ListEventTypesRequest$ = ListEventTypesRequest$;
|
|
1037
|
+
exports.ListEventTypesResult$ = ListEventTypesResult$;
|
|
1038
|
+
exports.ListNotificationRules$ = ListNotificationRules$;
|
|
340
1039
|
exports.ListNotificationRulesCommand = ListNotificationRulesCommand;
|
|
1040
|
+
exports.ListNotificationRulesFilter$ = ListNotificationRulesFilter$;
|
|
341
1041
|
exports.ListNotificationRulesFilterName = ListNotificationRulesFilterName;
|
|
1042
|
+
exports.ListNotificationRulesRequest$ = ListNotificationRulesRequest$;
|
|
1043
|
+
exports.ListNotificationRulesResult$ = ListNotificationRulesResult$;
|
|
1044
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
342
1045
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1046
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1047
|
+
exports.ListTagsForResourceResult$ = ListTagsForResourceResult$;
|
|
1048
|
+
exports.ListTargets$ = ListTargets$;
|
|
343
1049
|
exports.ListTargetsCommand = ListTargetsCommand;
|
|
1050
|
+
exports.ListTargetsFilter$ = ListTargetsFilter$;
|
|
344
1051
|
exports.ListTargetsFilterName = ListTargetsFilterName;
|
|
1052
|
+
exports.ListTargetsRequest$ = ListTargetsRequest$;
|
|
1053
|
+
exports.ListTargetsResult$ = ListTargetsResult$;
|
|
345
1054
|
exports.NotificationRuleStatus = NotificationRuleStatus;
|
|
1055
|
+
exports.NotificationRuleSummary$ = NotificationRuleSummary$;
|
|
1056
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
1057
|
+
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
1058
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1059
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1060
|
+
exports.Subscribe$ = Subscribe$;
|
|
346
1061
|
exports.SubscribeCommand = SubscribeCommand;
|
|
1062
|
+
exports.SubscribeRequest$ = SubscribeRequest$;
|
|
1063
|
+
exports.SubscribeResult$ = SubscribeResult$;
|
|
1064
|
+
exports.TagResource$ = TagResource$;
|
|
347
1065
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1066
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1067
|
+
exports.TagResourceResult$ = TagResourceResult$;
|
|
1068
|
+
exports.Target$ = Target$;
|
|
348
1069
|
exports.TargetStatus = TargetStatus;
|
|
1070
|
+
exports.TargetSummary$ = TargetSummary$;
|
|
1071
|
+
exports.Unsubscribe$ = Unsubscribe$;
|
|
349
1072
|
exports.UnsubscribeCommand = UnsubscribeCommand;
|
|
1073
|
+
exports.UnsubscribeRequest$ = UnsubscribeRequest$;
|
|
1074
|
+
exports.UnsubscribeResult$ = UnsubscribeResult$;
|
|
1075
|
+
exports.UntagResource$ = UntagResource$;
|
|
350
1076
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1077
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1078
|
+
exports.UntagResourceResult$ = UntagResourceResult$;
|
|
1079
|
+
exports.UpdateNotificationRule$ = UpdateNotificationRule$;
|
|
351
1080
|
exports.UpdateNotificationRuleCommand = UpdateNotificationRuleCommand;
|
|
1081
|
+
exports.UpdateNotificationRuleRequest$ = UpdateNotificationRuleRequest$;
|
|
1082
|
+
exports.UpdateNotificationRuleResult$ = UpdateNotificationRuleResult$;
|
|
1083
|
+
exports.ValidationException = ValidationException;
|
|
1084
|
+
exports.ValidationException$ = ValidationException$;
|
|
1085
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
352
1086
|
exports.paginateListEventTypes = paginateListEventTypes;
|
|
353
1087
|
exports.paginateListNotificationRules = paginateListNotificationRules;
|
|
354
1088
|
exports.paginateListTargets = paginateListTargets;
|