@aws-sdk/client-amplify 3.1074.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultAmplifyHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateApp$, CreateBackendEnvironment$, CreateBranch$, CreateDeployment$, CreateDomainAssociation$, CreateWebhook$, DeleteApp$, DeleteBackendEnvironment$, DeleteBranch$, DeleteDomainAssociation$, DeleteJob$, DeleteWebhook$, GenerateAccessLogs$, GetApp$, GetArtifactUrl$, GetBackendEnvironment$, GetBranch$, GetDomainAssociation$, GetJob$, GetWebhook$, ListApps$, ListArtifacts$, ListBackendEnvironments$, ListBranches$, ListDomainAssociations$, ListJobs$, ListTagsForResource$, ListWebhooks$, StartDeployment$, StartJob$, StopJob$, TagResource$, UntagResource$, UpdateApp$, UpdateBranch$, UpdateDomainAssociation$, UpdateWebhook$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { AmplifyServiceException } = require("./models/AmplifyServiceException");
18
- exports.AmplifyServiceException = AmplifyServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultAmplifyHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "amplify",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultAmplifyHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1193 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://amplify-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://amplify-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://amplify.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://amplify.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class AmplifyServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, AmplifyServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class BadRequestException extends AmplifyServiceException {
140
+ name = "BadRequestException";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "BadRequestException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, BadRequestException.prototype);
149
+ }
150
+ }
151
+ class DependentServiceFailureException extends AmplifyServiceException {
152
+ name = "DependentServiceFailureException";
153
+ $fault = "server";
154
+ constructor(opts) {
155
+ super({
156
+ name: "DependentServiceFailureException",
157
+ $fault: "server",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, DependentServiceFailureException.prototype);
161
+ }
162
+ }
163
+ class InternalFailureException extends AmplifyServiceException {
164
+ name = "InternalFailureException";
165
+ $fault = "server";
166
+ constructor(opts) {
167
+ super({
168
+ name: "InternalFailureException",
169
+ $fault: "server",
170
+ ...opts,
171
+ });
172
+ Object.setPrototypeOf(this, InternalFailureException.prototype);
173
+ }
174
+ }
175
+ class LimitExceededException extends AmplifyServiceException {
176
+ name = "LimitExceededException";
177
+ $fault = "client";
178
+ constructor(opts) {
179
+ super({
180
+ name: "LimitExceededException",
181
+ $fault: "client",
182
+ ...opts,
183
+ });
184
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
185
+ }
186
+ }
187
+ class UnauthorizedException extends AmplifyServiceException {
188
+ name = "UnauthorizedException";
189
+ $fault = "client";
190
+ constructor(opts) {
191
+ super({
192
+ name: "UnauthorizedException",
193
+ $fault: "client",
194
+ ...opts,
195
+ });
196
+ Object.setPrototypeOf(this, UnauthorizedException.prototype);
197
+ }
198
+ }
199
+ class NotFoundException extends AmplifyServiceException {
200
+ name = "NotFoundException";
201
+ $fault = "client";
202
+ constructor(opts) {
203
+ super({
204
+ name: "NotFoundException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, NotFoundException.prototype);
209
+ }
210
+ }
211
+ class ResourceNotFoundException extends AmplifyServiceException {
212
+ name = "ResourceNotFoundException";
213
+ $fault = "client";
214
+ code;
215
+ constructor(opts) {
216
+ super({
217
+ name: "ResourceNotFoundException",
218
+ $fault: "client",
219
+ ...opts,
220
+ });
221
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
222
+ this.code = opts.code;
223
+ }
224
+ }
225
+
226
+ const _A = "App";
227
+ const _ABCC = "AutoBranchCreationConfig";
228
+ const _AT = "AccessToken";
229
+ const _Ap = "Apps";
230
+ const _Ar = "Artifact";
231
+ const _Art = "Artifacts";
232
+ const _B = "Backend";
233
+ const _BAC = "BasicAuthCredentials";
234
+ const _BE = "BackendEnvironment";
235
+ const _BEa = "BackendEnvironments";
236
+ const _BRE = "BadRequestException";
237
+ const _BS = "BuildSpec";
238
+ const _Br = "Branch";
239
+ const _Bra = "Branches";
240
+ const _C = "Certificate";
241
+ const _CA = "CreateApp";
242
+ const _CAR = "CreateAppRequest";
243
+ const _CARr = "CreateAppResult";
244
+ const _CB = "CreateBranch";
245
+ const _CBE = "CreateBackendEnvironment";
246
+ const _CBER = "CreateBackendEnvironmentRequest";
247
+ const _CBERr = "CreateBackendEnvironmentResult";
248
+ const _CBR = "CreateBranchRequest";
249
+ const _CBRr = "CreateBranchResult";
250
+ const _CC = "CacheConfig";
251
+ const _CD = "CreateDeployment";
252
+ const _CDA = "CreateDomainAssociation";
253
+ const _CDAR = "CreateDomainAssociationRequest";
254
+ const _CDARr = "CreateDomainAssociationResult";
255
+ const _CDR = "CreateDeploymentRequest";
256
+ const _CDRr = "CreateDeploymentResult";
257
+ const _CR = "CustomRule";
258
+ const _CRu = "CustomRules";
259
+ const _CS = "CertificateSettings";
260
+ const _CW = "CreateWebhook";
261
+ const _CWR = "CreateWebhookRequest";
262
+ const _CWRr = "CreateWebhookResult";
263
+ const _DA = "DomainAssociation";
264
+ const _DAR = "DeleteAppRequest";
265
+ const _DARe = "DeleteAppResult";
266
+ const _DAe = "DeleteApp";
267
+ const _DAo = "DomainAssociations";
268
+ const _DB = "DeleteBranch";
269
+ const _DBE = "DeleteBackendEnvironment";
270
+ const _DBER = "DeleteBackendEnvironmentRequest";
271
+ const _DBERe = "DeleteBackendEnvironmentResult";
272
+ const _DBR = "DeleteBranchRequest";
273
+ const _DBRe = "DeleteBranchResult";
274
+ const _DDA = "DeleteDomainAssociation";
275
+ const _DDAR = "DeleteDomainAssociationRequest";
276
+ const _DDARe = "DeleteDomainAssociationResult";
277
+ const _DJ = "DeleteJob";
278
+ const _DJR = "DeleteJobRequest";
279
+ const _DJRe = "DeleteJobResult";
280
+ const _DSFE = "DependentServiceFailureException";
281
+ const _DW = "DeleteWebhook";
282
+ const _DWR = "DeleteWebhookRequest";
283
+ const _DWRe = "DeleteWebhookResult";
284
+ const _GA = "GetApp";
285
+ const _GAL = "GenerateAccessLogs";
286
+ const _GALR = "GenerateAccessLogsRequest";
287
+ const _GALRe = "GenerateAccessLogsResult";
288
+ const _GAR = "GetAppRequest";
289
+ const _GARe = "GetAppResult";
290
+ const _GAU = "GetArtifactUrl";
291
+ const _GAUR = "GetArtifactUrlRequest";
292
+ const _GAURe = "GetArtifactUrlResult";
293
+ const _GB = "GetBranch";
294
+ const _GBE = "GetBackendEnvironment";
295
+ const _GBER = "GetBackendEnvironmentRequest";
296
+ const _GBERe = "GetBackendEnvironmentResult";
297
+ const _GBR = "GetBranchRequest";
298
+ const _GBRe = "GetBranchResult";
299
+ const _GDA = "GetDomainAssociation";
300
+ const _GDAR = "GetDomainAssociationRequest";
301
+ const _GDARe = "GetDomainAssociationResult";
302
+ const _GJ = "GetJob";
303
+ const _GJR = "GetJobRequest";
304
+ const _GJRe = "GetJobResult";
305
+ const _GW = "GetWebhook";
306
+ const _GWR = "GetWebhookRequest";
307
+ const _GWRe = "GetWebhookResult";
308
+ const _IFE = "InternalFailureException";
309
+ const _J = "Job";
310
+ const _JC = "JobConfig";
311
+ const _JS = "JobSummary";
312
+ const _JSo = "JobSummaries";
313
+ const _LA = "ListApps";
314
+ const _LAR = "ListAppsRequest";
315
+ const _LARi = "ListAppsResult";
316
+ const _LARis = "ListArtifactsRequest";
317
+ const _LARist = "ListArtifactsResult";
318
+ const _LAi = "ListArtifacts";
319
+ const _LB = "ListBranches";
320
+ const _LBE = "ListBackendEnvironments";
321
+ const _LBER = "ListBackendEnvironmentsRequest";
322
+ const _LBERi = "ListBackendEnvironmentsResult";
323
+ const _LBR = "ListBranchesRequest";
324
+ const _LBRi = "ListBranchesResult";
325
+ const _LDA = "ListDomainAssociations";
326
+ const _LDAR = "ListDomainAssociationsRequest";
327
+ const _LDARi = "ListDomainAssociationsResult";
328
+ const _LEE = "LimitExceededException";
329
+ const _LJ = "ListJobs";
330
+ const _LJR = "ListJobsRequest";
331
+ const _LJRi = "ListJobsResult";
332
+ const _LTFR = "ListTagsForResource";
333
+ const _LTFRR = "ListTagsForResourceRequest";
334
+ const _LTFRRi = "ListTagsForResourceResponse";
335
+ const _LW = "ListWebhooks";
336
+ const _LWR = "ListWebhooksRequest";
337
+ const _LWRi = "ListWebhooksResult";
338
+ const _NFE = "NotFoundException";
339
+ const _OT = "OauthToken";
340
+ const _PB = "ProductionBranch";
341
+ const _RNFE = "ResourceNotFoundException";
342
+ const _S = "Step";
343
+ const _SD = "SubDomain";
344
+ const _SDR = "StartDeploymentRequest";
345
+ const _SDRt = "StartDeploymentResult";
346
+ const _SDS = "SubDomainSetting";
347
+ const _SDSu = "SubDomainSettings";
348
+ const _SDt = "StartDeployment";
349
+ const _SDu = "SubDomains";
350
+ const _SJ = "StartJob";
351
+ const _SJR = "StartJobRequest";
352
+ const _SJRt = "StartJobResult";
353
+ const _SJRto = "StopJobRequest";
354
+ const _SJRtop = "StopJobResult";
355
+ const _SJt = "StopJob";
356
+ const _St = "Steps";
357
+ const _TR = "TagResource";
358
+ const _TRR = "TagResourceRequest";
359
+ const _TRRa = "TagResourceResponse";
360
+ const _UA = "UpdateApp";
361
+ const _UAR = "UpdateAppRequest";
362
+ const _UARp = "UpdateAppResult";
363
+ const _UB = "UpdateBranch";
364
+ const _UBR = "UpdateBranchRequest";
365
+ const _UBRp = "UpdateBranchResult";
366
+ const _UDA = "UpdateDomainAssociation";
367
+ const _UDAR = "UpdateDomainAssociationRequest";
368
+ const _UDARp = "UpdateDomainAssociationResult";
369
+ const _UE = "UnauthorizedException";
370
+ const _UR = "UntagResource";
371
+ const _URR = "UntagResourceRequest";
372
+ const _URRn = "UntagResourceResponse";
373
+ const _UW = "UpdateWebhook";
374
+ const _UWR = "UpdateWebhookRequest";
375
+ const _UWRp = "UpdateWebhookResult";
376
+ const _W = "Webhook";
377
+ const _WC = "WafConfiguration";
378
+ const _We = "Webhooks";
379
+ const _a = "app";
380
+ const _aA = "appArn";
381
+ const _aBCC = "autoBranchCreationConfig";
382
+ const _aBCP = "autoBranchCreationPatterns";
383
+ const _aFN = "artifactFileName";
384
+ const _aI = "appId";
385
+ const _aIr = "artifactId";
386
+ const _aJI = "activeJobId";
387
+ const _aR = "associatedResources";
388
+ const _aSDCP = "autoSubDomainCreationPatterns";
389
+ const _aSDIAMR = "autoSubDomainIAMRole";
390
+ const _aT = "accessToken";
391
+ const _aU = "artifactUrl";
392
+ const _aUr = "artifactsUrl";
393
+ const _ap = "apps";
394
+ const _ar = "artifacts";
395
+ const _b = "backend";
396
+ const _bA = "branchArn";
397
+ const _bAC = "basicAuthCredentials";
398
+ const _bCT = "buildComputeType";
399
+ const _bE = "backendEnvironment";
400
+ const _bEA = "backendEnvironmentArn";
401
+ const _bEa = "backendEnvironments";
402
+ const _bN = "branchName";
403
+ const _bS = "buildSpec";
404
+ const _br = "branch";
405
+ const _bra = "branches";
406
+ const _c = "client";
407
+ const _cC = "cacheConfig";
408
+ const _cCA = "customCertificateArn";
409
+ const _cD = "customDomains";
410
+ const _cH = "customHeaders";
411
+ const _cI = "commitId";
412
+ const _cM = "commitMessage";
413
+ const _cR = "customRules";
414
+ const _cRA = "computeRoleArn";
415
+ const _cS = "certificateSettings";
416
+ const _cT = "createTime";
417
+ const _cTo = "commitTime";
418
+ const _cVDNSR = "certificateVerificationDNSRecord";
419
+ const _ce = "certificate";
420
+ const _co = "code";
421
+ const _con = "condition";
422
+ const _cont = "context";
423
+ const _d = "description";
424
+ const _dA = "deploymentArtifacts";
425
+ const _dAA = "domainAssociationArn";
426
+ const _dAo = "domainAssociation";
427
+ const _dAom = "domainAssociations";
428
+ const _dB = "destinationBranch";
429
+ const _dD = "defaultDomain";
430
+ const _dN = "displayName";
431
+ const _dNo = "domainName";
432
+ const _dR = "dnsRecord";
433
+ const _dS = "domainStatus";
434
+ const _e = "error";
435
+ const _eAB = "enableAutoBuild";
436
+ const _eABC = "enableAutoBranchCreation";
437
+ const _eASD = "enableAutoSubDomain";
438
+ const _eBA = "enableBasicAuth";
439
+ const _eBAB = "enableBranchAutoBuild";
440
+ const _eBAD = "enableBranchAutoDeletion";
441
+ const _eN = "environmentName";
442
+ const _eNn = "enableNotification";
443
+ const _ePM = "enablePerformanceMode";
444
+ const _ePRP = "enablePullRequestPreview";
445
+ const _eSP = "enableSkewProtection";
446
+ const _eT = "endTime";
447
+ const _eV = "environmentVariables";
448
+ const _f = "framework";
449
+ const _fM = "fileMap";
450
+ const _fUU = "fileUploadUrls";
451
+ const _h = "http";
452
+ const _hE = "httpError";
453
+ const _hQ = "httpQuery";
454
+ const _iSRA = "iamServiceRoleArn";
455
+ const _j = "job";
456
+ const _jA = "jobArn";
457
+ const _jC = "jobConfig";
458
+ const _jI = "jobId";
459
+ const _jR = "jobReason";
460
+ const _jS = "jobSummary";
461
+ const _jSo = "jobSummaries";
462
+ const _jT = "jobType";
463
+ const _lDT = "lastDeployTime";
464
+ const _lU = "logUrl";
465
+ const _m = "message";
466
+ const _mR = "maxResults";
467
+ const _n = "name";
468
+ const _nT = "nextToken";
469
+ const _oT = "oauthToken";
470
+ const _p = "platform";
471
+ const _pB = "productionBranch";
472
+ const _pREN = "pullRequestEnvironmentName";
473
+ const _pr = "prefix";
474
+ const _r = "repository";
475
+ const _rA = "resourceArn";
476
+ const _rCM = "repositoryCloneMethod";
477
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.amplify";
478
+ const _sA = "stackArn";
479
+ const _sB = "sourceBranch";
480
+ const _sD = "subDomains";
481
+ const _sDS = "subDomainSettings";
482
+ const _sDSu = "subDomainSetting";
483
+ const _sN = "stackName";
484
+ const _sNt = "stepName";
485
+ const _sR = "statusReason";
486
+ const _sT = "startTime";
487
+ const _sU = "sourceUrl";
488
+ const _sUT = "sourceUrlType";
489
+ const _sc = "screenshots";
490
+ const _se = "server";
491
+ const _so = "source";
492
+ const _st = "stage";
493
+ const _sta = "status";
494
+ const _ste = "steps";
495
+ const _su = "summary";
496
+ const _t = "tags";
497
+ const _tAU = "testArtifactsUrl";
498
+ const _tCU = "testConfigUrl";
499
+ const _tK = "tagKeys";
500
+ const _tNOJ = "totalNumberOfJobs";
501
+ const _tU = "thumbnailUrl";
502
+ const _ta = "target";
503
+ const _tt = "ttl";
504
+ const _ty = "type";
505
+ const _uS = "updateStatus";
506
+ const _uT = "updateTime";
507
+ const _v = "verified";
508
+ const _w = "webhook";
509
+ const _wA = "webhookArn";
510
+ const _wAA = "webAclArn";
511
+ const _wC = "wafConfiguration";
512
+ const _wCT = "webhookCreateTime";
513
+ const _wI = "webhookId";
514
+ const _wS = "wafStatus";
515
+ const _wU = "webhookUrl";
516
+ const _we = "webhooks";
517
+ const _zUU = "zipUploadUrl";
518
+ const n0 = "com.amazonaws.amplify";
519
+ const _s_registry = TypeRegistry.for(_s);
520
+ var AmplifyServiceException$ = [-3, _s, "AmplifyServiceException", 0, [], []];
521
+ _s_registry.registerError(AmplifyServiceException$, AmplifyServiceException);
522
+ const n0_registry = TypeRegistry.for(n0);
523
+ var BadRequestException$ = [-3, n0, _BRE,
524
+ { [_e]: _c, [_hE]: 400 },
525
+ [_m],
526
+ [0]
527
+ ];
528
+ n0_registry.registerError(BadRequestException$, BadRequestException);
529
+ var DependentServiceFailureException$ = [-3, n0, _DSFE,
530
+ { [_e]: _se, [_hE]: 503 },
531
+ [_m],
532
+ [0]
533
+ ];
534
+ n0_registry.registerError(DependentServiceFailureException$, DependentServiceFailureException);
535
+ var InternalFailureException$ = [-3, n0, _IFE,
536
+ { [_e]: _se, [_hE]: 500 },
537
+ [_m],
538
+ [0]
539
+ ];
540
+ n0_registry.registerError(InternalFailureException$, InternalFailureException);
541
+ var LimitExceededException$ = [-3, n0, _LEE,
542
+ { [_e]: _c, [_hE]: 429 },
543
+ [_m],
544
+ [0]
545
+ ];
546
+ n0_registry.registerError(LimitExceededException$, LimitExceededException);
547
+ var NotFoundException$ = [-3, n0, _NFE,
548
+ { [_e]: _c, [_hE]: 404 },
549
+ [_m],
550
+ [0]
551
+ ];
552
+ n0_registry.registerError(NotFoundException$, NotFoundException);
553
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
554
+ { [_e]: _c, [_hE]: 404 },
555
+ [_co, _m],
556
+ [0, 0], 2
557
+ ];
558
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
559
+ var UnauthorizedException$ = [-3, n0, _UE,
560
+ { [_e]: _c, [_hE]: 401 },
561
+ [_m],
562
+ [0]
563
+ ];
564
+ n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
565
+ const errorTypeRegistries = [
566
+ _s_registry,
567
+ n0_registry,
568
+ ];
569
+ var AccessToken = [0, n0, _AT, 8, 0];
570
+ var BasicAuthCredentials = [0, n0, _BAC, 8, 0];
571
+ var BuildSpec = [0, n0, _BS, 8, 0];
572
+ var OauthToken = [0, n0, _OT, 8, 0];
573
+ var App$ = [3, n0, _A,
574
+ 0,
575
+ [_aI, _aA, _n, _d, _r, _p, _cT, _uT, _eV, _dD, _eBAB, _eBA, _t, _cRA, _iSRA, _eBAD, _bAC, _cR, _pB, _bS, _cH, _eABC, _aBCP, _aBCC, _rCM, _cC, _wCT, _wC, _jC],
576
+ [0, 0, 0, 0, 0, 0, 4, 4, 128 | 0, 0, 2, 2, 128 | 0, 0, 0, 2, [() => BasicAuthCredentials, 0], () => CustomRules, () => ProductionBranch$, [() => BuildSpec, 0], 0, 2, 64 | 0, [() => AutoBranchCreationConfig$, 0], 0, () => CacheConfig$, 4, () => WafConfiguration$, () => JobConfig$], 12
577
+ ];
578
+ var Artifact$ = [3, n0, _Ar,
579
+ 0,
580
+ [_aFN, _aIr],
581
+ [0, 0], 2
582
+ ];
583
+ var AutoBranchCreationConfig$ = [3, n0, _ABCC,
584
+ 0,
585
+ [_st, _f, _eAB, _eV, _bAC, _eBA, _ePM, _bS, _ePRP, _pREN],
586
+ [0, 0, 2, 128 | 0, [() => BasicAuthCredentials, 0], 2, 2, [() => BuildSpec, 0], 2, 0]
587
+ ];
588
+ var Backend$ = [3, n0, _B,
589
+ 0,
590
+ [_sA],
591
+ [0]
592
+ ];
593
+ var BackendEnvironment$ = [3, n0, _BE,
594
+ 0,
595
+ [_bEA, _eN, _cT, _uT, _sN, _dA],
596
+ [0, 0, 4, 4, 0, 0], 4
597
+ ];
598
+ var Branch$ = [3, n0, _Br,
599
+ 0,
600
+ [_bA, _bN, _d, _st, _dN, _eNn, _cT, _uT, _eV, _eAB, _cD, _f, _aJI, _tNOJ, _eBA, _tt, _ePRP, _t, _eSP, _ePM, _tU, _bAC, _bS, _aR, _pREN, _dB, _sB, _bEA, _b, _cRA],
601
+ [0, 0, 0, 0, 0, 2, 4, 4, 128 | 0, 2, 64 | 0, 0, 0, 0, 2, 0, 2, 128 | 0, 2, 2, 0, [() => BasicAuthCredentials, 0], [() => BuildSpec, 0], 64 | 0, 0, 0, 0, 0, () => Backend$, 0], 17
602
+ ];
603
+ var CacheConfig$ = [3, n0, _CC,
604
+ 0,
605
+ [_ty],
606
+ [0], 1
607
+ ];
608
+ var Certificate$ = [3, n0, _C,
609
+ 0,
610
+ [_ty, _cCA, _cVDNSR],
611
+ [0, 0, 0], 1
612
+ ];
613
+ var CertificateSettings$ = [3, n0, _CS,
614
+ 0,
615
+ [_ty, _cCA],
616
+ [0, 0], 1
617
+ ];
618
+ var CreateAppRequest$ = [3, n0, _CAR,
619
+ 0,
620
+ [_n, _d, _r, _p, _cRA, _iSRA, _oT, _aT, _eV, _eBAB, _eBAD, _eBA, _bAC, _cR, _t, _bS, _cH, _eABC, _aBCP, _aBCC, _jC, _cC],
621
+ [0, 0, 0, 0, 0, 0, [() => OauthToken, 0], [() => AccessToken, 0], 128 | 0, 2, 2, 2, [() => BasicAuthCredentials, 0], () => CustomRules, 128 | 0, [() => BuildSpec, 0], 0, 2, 64 | 0, [() => AutoBranchCreationConfig$, 0], () => JobConfig$, () => CacheConfig$], 1
622
+ ];
623
+ var CreateAppResult$ = [3, n0, _CARr,
624
+ 0,
625
+ [_a],
626
+ [[() => App$, 0]], 1
627
+ ];
628
+ var CreateBackendEnvironmentRequest$ = [3, n0, _CBER,
629
+ 0,
630
+ [_aI, _eN, _sN, _dA],
631
+ [[0, 1], 0, 0, 0], 2
632
+ ];
633
+ var CreateBackendEnvironmentResult$ = [3, n0, _CBERr,
634
+ 0,
635
+ [_bE],
636
+ [() => BackendEnvironment$], 1
637
+ ];
638
+ var CreateBranchRequest$ = [3, n0, _CBR,
639
+ 0,
640
+ [_aI, _bN, _d, _st, _f, _eNn, _eAB, _eSP, _eV, _bAC, _eBA, _ePM, _t, _bS, _tt, _dN, _ePRP, _pREN, _bEA, _b, _cRA],
641
+ [[0, 1], 0, 0, 0, 0, 2, 2, 2, 128 | 0, [() => BasicAuthCredentials, 0], 2, 2, 128 | 0, [() => BuildSpec, 0], 0, 0, 2, 0, 0, () => Backend$, 0], 2
642
+ ];
643
+ var CreateBranchResult$ = [3, n0, _CBRr,
644
+ 0,
645
+ [_br],
646
+ [[() => Branch$, 0]], 1
647
+ ];
648
+ var CreateDeploymentRequest$ = [3, n0, _CDR,
649
+ 0,
650
+ [_aI, _bN, _fM],
651
+ [[0, 1], [0, 1], 128 | 0], 2
652
+ ];
653
+ var CreateDeploymentResult$ = [3, n0, _CDRr,
654
+ 0,
655
+ [_fUU, _zUU, _jI],
656
+ [128 | 0, 0, 0], 2
657
+ ];
658
+ var CreateDomainAssociationRequest$ = [3, n0, _CDAR,
659
+ 0,
660
+ [_aI, _dNo, _sDS, _eASD, _aSDCP, _aSDIAMR, _cS],
661
+ [[0, 1], 0, () => SubDomainSettings, 2, 64 | 0, 0, () => CertificateSettings$], 3
662
+ ];
663
+ var CreateDomainAssociationResult$ = [3, n0, _CDARr,
664
+ 0,
665
+ [_dAo],
666
+ [() => DomainAssociation$], 1
667
+ ];
668
+ var CreateWebhookRequest$ = [3, n0, _CWR,
669
+ 0,
670
+ [_aI, _bN, _d],
671
+ [[0, 1], 0, 0], 2
672
+ ];
673
+ var CreateWebhookResult$ = [3, n0, _CWRr,
674
+ 0,
675
+ [_w],
676
+ [() => Webhook$], 1
677
+ ];
678
+ var CustomRule$ = [3, n0, _CR,
679
+ 0,
680
+ [_so, _ta, _sta, _con],
681
+ [0, 0, 0, 0], 2
682
+ ];
683
+ var DeleteAppRequest$ = [3, n0, _DAR,
684
+ 0,
685
+ [_aI],
686
+ [[0, 1]], 1
687
+ ];
688
+ var DeleteAppResult$ = [3, n0, _DARe,
689
+ 0,
690
+ [_a],
691
+ [[() => App$, 0]], 1
692
+ ];
693
+ var DeleteBackendEnvironmentRequest$ = [3, n0, _DBER,
694
+ 0,
695
+ [_aI, _eN],
696
+ [[0, 1], [0, 1]], 2
697
+ ];
698
+ var DeleteBackendEnvironmentResult$ = [3, n0, _DBERe,
699
+ 0,
700
+ [_bE],
701
+ [() => BackendEnvironment$], 1
702
+ ];
703
+ var DeleteBranchRequest$ = [3, n0, _DBR,
704
+ 0,
705
+ [_aI, _bN],
706
+ [[0, 1], [0, 1]], 2
707
+ ];
708
+ var DeleteBranchResult$ = [3, n0, _DBRe,
709
+ 0,
710
+ [_br],
711
+ [[() => Branch$, 0]], 1
712
+ ];
713
+ var DeleteDomainAssociationRequest$ = [3, n0, _DDAR,
714
+ 0,
715
+ [_aI, _dNo],
716
+ [[0, 1], [0, 1]], 2
717
+ ];
718
+ var DeleteDomainAssociationResult$ = [3, n0, _DDARe,
719
+ 0,
720
+ [_dAo],
721
+ [() => DomainAssociation$], 1
722
+ ];
723
+ var DeleteJobRequest$ = [3, n0, _DJR,
724
+ 0,
725
+ [_aI, _bN, _jI],
726
+ [[0, 1], [0, 1], [0, 1]], 3
727
+ ];
728
+ var DeleteJobResult$ = [3, n0, _DJRe,
729
+ 0,
730
+ [_jS],
731
+ [() => JobSummary$], 1
732
+ ];
733
+ var DeleteWebhookRequest$ = [3, n0, _DWR,
734
+ 0,
735
+ [_wI],
736
+ [[0, 1]], 1
737
+ ];
738
+ var DeleteWebhookResult$ = [3, n0, _DWRe,
739
+ 0,
740
+ [_w],
741
+ [() => Webhook$], 1
742
+ ];
743
+ var DomainAssociation$ = [3, n0, _DA,
744
+ 0,
745
+ [_dAA, _dNo, _eASD, _dS, _sR, _sD, _aSDCP, _aSDIAMR, _uS, _cVDNSR, _ce],
746
+ [0, 0, 2, 0, 0, () => SubDomains, 64 | 0, 0, 0, 0, () => Certificate$], 6
747
+ ];
748
+ var GenerateAccessLogsRequest$ = [3, n0, _GALR,
749
+ 0,
750
+ [_dNo, _aI, _sT, _eT],
751
+ [0, [0, 1], 4, 4], 2
752
+ ];
753
+ var GenerateAccessLogsResult$ = [3, n0, _GALRe,
754
+ 0,
755
+ [_lU],
756
+ [0]
757
+ ];
758
+ var GetAppRequest$ = [3, n0, _GAR,
759
+ 0,
760
+ [_aI],
761
+ [[0, 1]], 1
762
+ ];
763
+ var GetAppResult$ = [3, n0, _GARe,
764
+ 0,
765
+ [_a],
766
+ [[() => App$, 0]], 1
767
+ ];
768
+ var GetArtifactUrlRequest$ = [3, n0, _GAUR,
769
+ 0,
770
+ [_aIr],
771
+ [[0, 1]], 1
772
+ ];
773
+ var GetArtifactUrlResult$ = [3, n0, _GAURe,
774
+ 0,
775
+ [_aIr, _aU],
776
+ [0, 0], 2
777
+ ];
778
+ var GetBackendEnvironmentRequest$ = [3, n0, _GBER,
779
+ 0,
780
+ [_aI, _eN],
781
+ [[0, 1], [0, 1]], 2
782
+ ];
783
+ var GetBackendEnvironmentResult$ = [3, n0, _GBERe,
784
+ 0,
785
+ [_bE],
786
+ [() => BackendEnvironment$], 1
787
+ ];
788
+ var GetBranchRequest$ = [3, n0, _GBR,
789
+ 0,
790
+ [_aI, _bN],
791
+ [[0, 1], [0, 1]], 2
792
+ ];
793
+ var GetBranchResult$ = [3, n0, _GBRe,
794
+ 0,
795
+ [_br],
796
+ [[() => Branch$, 0]], 1
797
+ ];
798
+ var GetDomainAssociationRequest$ = [3, n0, _GDAR,
799
+ 0,
800
+ [_aI, _dNo],
801
+ [[0, 1], [0, 1]], 2
802
+ ];
803
+ var GetDomainAssociationResult$ = [3, n0, _GDARe,
804
+ 0,
805
+ [_dAo],
806
+ [() => DomainAssociation$], 1
807
+ ];
808
+ var GetJobRequest$ = [3, n0, _GJR,
809
+ 0,
810
+ [_aI, _bN, _jI],
811
+ [[0, 1], [0, 1], [0, 1]], 3
812
+ ];
813
+ var GetJobResult$ = [3, n0, _GJRe,
814
+ 0,
815
+ [_j],
816
+ [() => Job$], 1
817
+ ];
818
+ var GetWebhookRequest$ = [3, n0, _GWR,
819
+ 0,
820
+ [_wI],
821
+ [[0, 1]], 1
822
+ ];
823
+ var GetWebhookResult$ = [3, n0, _GWRe,
824
+ 0,
825
+ [_w],
826
+ [() => Webhook$], 1
827
+ ];
828
+ var Job$ = [3, n0, _J,
829
+ 0,
830
+ [_su, _ste],
831
+ [() => JobSummary$, () => Steps], 2
832
+ ];
833
+ var JobConfig$ = [3, n0, _JC,
834
+ 0,
835
+ [_bCT],
836
+ [0], 1
837
+ ];
838
+ var JobSummary$ = [3, n0, _JS,
839
+ 0,
840
+ [_jA, _jI, _cI, _cM, _cTo, _sT, _sta, _jT, _eT, _sU, _sUT],
841
+ [0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0], 8
842
+ ];
843
+ var ListAppsRequest$ = [3, n0, _LAR,
844
+ 0,
845
+ [_nT, _mR],
846
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
847
+ ];
848
+ var ListAppsResult$ = [3, n0, _LARi,
849
+ 0,
850
+ [_ap, _nT],
851
+ [[() => Apps, 0], 0], 1
852
+ ];
853
+ var ListArtifactsRequest$ = [3, n0, _LARis,
854
+ 0,
855
+ [_aI, _bN, _jI, _nT, _mR],
856
+ [[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 3
857
+ ];
858
+ var ListArtifactsResult$ = [3, n0, _LARist,
859
+ 0,
860
+ [_ar, _nT],
861
+ [() => Artifacts, 0], 1
862
+ ];
863
+ var ListBackendEnvironmentsRequest$ = [3, n0, _LBER,
864
+ 0,
865
+ [_aI, _eN, _nT, _mR],
866
+ [[0, 1], [0, { [_hQ]: _eN }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
867
+ ];
868
+ var ListBackendEnvironmentsResult$ = [3, n0, _LBERi,
869
+ 0,
870
+ [_bEa, _nT],
871
+ [() => BackendEnvironments, 0], 1
872
+ ];
873
+ var ListBranchesRequest$ = [3, n0, _LBR,
874
+ 0,
875
+ [_aI, _nT, _mR],
876
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
877
+ ];
878
+ var ListBranchesResult$ = [3, n0, _LBRi,
879
+ 0,
880
+ [_bra, _nT],
881
+ [[() => Branches, 0], 0], 1
882
+ ];
883
+ var ListDomainAssociationsRequest$ = [3, n0, _LDAR,
884
+ 0,
885
+ [_aI, _nT, _mR],
886
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
887
+ ];
888
+ var ListDomainAssociationsResult$ = [3, n0, _LDARi,
889
+ 0,
890
+ [_dAom, _nT],
891
+ [() => DomainAssociations, 0], 1
892
+ ];
893
+ var ListJobsRequest$ = [3, n0, _LJR,
894
+ 0,
895
+ [_aI, _bN, _nT, _mR],
896
+ [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
897
+ ];
898
+ var ListJobsResult$ = [3, n0, _LJRi,
899
+ 0,
900
+ [_jSo, _nT],
901
+ [() => JobSummaries, 0], 1
902
+ ];
903
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
904
+ 0,
905
+ [_rA],
906
+ [[0, 1]], 1
907
+ ];
908
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
909
+ 0,
910
+ [_t],
911
+ [128 | 0]
912
+ ];
913
+ var ListWebhooksRequest$ = [3, n0, _LWR,
914
+ 0,
915
+ [_aI, _nT, _mR],
916
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
917
+ ];
918
+ var ListWebhooksResult$ = [3, n0, _LWRi,
919
+ 0,
920
+ [_we, _nT],
921
+ [() => Webhooks, 0], 1
922
+ ];
923
+ var ProductionBranch$ = [3, n0, _PB,
924
+ 0,
925
+ [_lDT, _sta, _tU, _bN],
926
+ [4, 0, 0, 0]
927
+ ];
928
+ var StartDeploymentRequest$ = [3, n0, _SDR,
929
+ 0,
930
+ [_aI, _bN, _jI, _sU, _sUT],
931
+ [[0, 1], [0, 1], 0, 0, 0], 2
932
+ ];
933
+ var StartDeploymentResult$ = [3, n0, _SDRt,
934
+ 0,
935
+ [_jS],
936
+ [() => JobSummary$], 1
937
+ ];
938
+ var StartJobRequest$ = [3, n0, _SJR,
939
+ 0,
940
+ [_aI, _bN, _jT, _jI, _jR, _cI, _cM, _cTo],
941
+ [[0, 1], [0, 1], 0, 0, 0, 0, 0, 4], 3
942
+ ];
943
+ var StartJobResult$ = [3, n0, _SJRt,
944
+ 0,
945
+ [_jS],
946
+ [() => JobSummary$], 1
947
+ ];
948
+ var Step$ = [3, n0, _S,
949
+ 0,
950
+ [_sNt, _sT, _sta, _eT, _lU, _aUr, _tAU, _tCU, _sc, _sR, _cont],
951
+ [0, 4, 0, 4, 0, 0, 0, 0, 128 | 0, 0, 0], 4
952
+ ];
953
+ var StopJobRequest$ = [3, n0, _SJRto,
954
+ 0,
955
+ [_aI, _bN, _jI],
956
+ [[0, 1], [0, 1], [0, 1]], 3
957
+ ];
958
+ var StopJobResult$ = [3, n0, _SJRtop,
959
+ 0,
960
+ [_jS],
961
+ [() => JobSummary$], 1
962
+ ];
963
+ var SubDomain$ = [3, n0, _SD,
964
+ 0,
965
+ [_sDSu, _v, _dR],
966
+ [() => SubDomainSetting$, 2, 0], 3
967
+ ];
968
+ var SubDomainSetting$ = [3, n0, _SDS,
969
+ 0,
970
+ [_pr, _bN],
971
+ [0, 0], 2
972
+ ];
973
+ var TagResourceRequest$ = [3, n0, _TRR,
974
+ 0,
975
+ [_rA, _t],
976
+ [[0, 1], 128 | 0], 2
977
+ ];
978
+ var TagResourceResponse$ = [3, n0, _TRRa,
979
+ 0,
980
+ [],
981
+ []
982
+ ];
983
+ var UntagResourceRequest$ = [3, n0, _URR,
984
+ 0,
985
+ [_rA, _tK],
986
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
987
+ ];
988
+ var UntagResourceResponse$ = [3, n0, _URRn,
989
+ 0,
990
+ [],
991
+ []
992
+ ];
993
+ var UpdateAppRequest$ = [3, n0, _UAR,
994
+ 0,
995
+ [_aI, _n, _d, _p, _cRA, _iSRA, _eV, _eBAB, _eBAD, _eBA, _bAC, _cR, _bS, _cH, _eABC, _aBCP, _aBCC, _r, _oT, _aT, _jC, _cC],
996
+ [[0, 1], 0, 0, 0, 0, 0, 128 | 0, 2, 2, 2, [() => BasicAuthCredentials, 0], () => CustomRules, [() => BuildSpec, 0], 0, 2, 64 | 0, [() => AutoBranchCreationConfig$, 0], 0, [() => OauthToken, 0], [() => AccessToken, 0], () => JobConfig$, () => CacheConfig$], 1
997
+ ];
998
+ var UpdateAppResult$ = [3, n0, _UARp,
999
+ 0,
1000
+ [_a],
1001
+ [[() => App$, 0]], 1
1002
+ ];
1003
+ var UpdateBranchRequest$ = [3, n0, _UBR,
1004
+ 0,
1005
+ [_aI, _bN, _d, _f, _st, _eNn, _eAB, _eSP, _eV, _bAC, _eBA, _ePM, _bS, _tt, _dN, _ePRP, _pREN, _bEA, _b, _cRA],
1006
+ [[0, 1], [0, 1], 0, 0, 0, 2, 2, 2, 128 | 0, [() => BasicAuthCredentials, 0], 2, 2, [() => BuildSpec, 0], 0, 0, 2, 0, 0, () => Backend$, 0], 2
1007
+ ];
1008
+ var UpdateBranchResult$ = [3, n0, _UBRp,
1009
+ 0,
1010
+ [_br],
1011
+ [[() => Branch$, 0]], 1
1012
+ ];
1013
+ var UpdateDomainAssociationRequest$ = [3, n0, _UDAR,
1014
+ 0,
1015
+ [_aI, _dNo, _eASD, _sDS, _aSDCP, _aSDIAMR, _cS],
1016
+ [[0, 1], [0, 1], 2, () => SubDomainSettings, 64 | 0, 0, () => CertificateSettings$], 2
1017
+ ];
1018
+ var UpdateDomainAssociationResult$ = [3, n0, _UDARp,
1019
+ 0,
1020
+ [_dAo],
1021
+ [() => DomainAssociation$], 1
1022
+ ];
1023
+ var UpdateWebhookRequest$ = [3, n0, _UWR,
1024
+ 0,
1025
+ [_wI, _bN, _d],
1026
+ [[0, 1], 0, 0], 1
1027
+ ];
1028
+ var UpdateWebhookResult$ = [3, n0, _UWRp,
1029
+ 0,
1030
+ [_w],
1031
+ [() => Webhook$], 1
1032
+ ];
1033
+ var WafConfiguration$ = [3, n0, _WC,
1034
+ 0,
1035
+ [_wAA, _wS, _sR],
1036
+ [0, 0, 0]
1037
+ ];
1038
+ var Webhook$ = [3, n0, _W,
1039
+ 0,
1040
+ [_wA, _wI, _wU, _bN, _d, _cT, _uT, _aI],
1041
+ [0, 0, 0, 0, 0, 4, 4, 0], 7
1042
+ ];
1043
+ var Apps = [1, n0, _Ap,
1044
+ 0, [() => App$,
1045
+ 0]
1046
+ ];
1047
+ var Artifacts = [1, n0, _Art,
1048
+ 0, () => Artifact$
1049
+ ];
1050
+ var BackendEnvironments = [1, n0, _BEa,
1051
+ 0, () => BackendEnvironment$
1052
+ ];
1053
+ var Branches = [1, n0, _Bra,
1054
+ 0, [() => Branch$,
1055
+ 0]
1056
+ ];
1057
+ var CustomRules = [1, n0, _CRu,
1058
+ 0, () => CustomRule$
1059
+ ];
1060
+ var DomainAssociations = [1, n0, _DAo,
1061
+ 0, () => DomainAssociation$
1062
+ ];
1063
+ var JobSummaries = [1, n0, _JSo,
1064
+ 0, () => JobSummary$
1065
+ ];
1066
+ var Steps = [1, n0, _St,
1067
+ 0, () => Step$
1068
+ ];
1069
+ var SubDomains = [1, n0, _SDu,
1070
+ 0, () => SubDomain$
1071
+ ];
1072
+ var SubDomainSettings = [1, n0, _SDSu,
1073
+ 0, () => SubDomainSetting$
1074
+ ];
1075
+ var Webhooks = [1, n0, _We,
1076
+ 0, () => Webhook$
1077
+ ];
1078
+ var CreateApp$ = [9, n0, _CA,
1079
+ { [_h]: ["POST", "/apps", 200] }, () => CreateAppRequest$, () => CreateAppResult$
1080
+ ];
1081
+ var CreateBackendEnvironment$ = [9, n0, _CBE,
1082
+ { [_h]: ["POST", "/apps/{appId}/backendenvironments", 200] }, () => CreateBackendEnvironmentRequest$, () => CreateBackendEnvironmentResult$
1083
+ ];
1084
+ var CreateBranch$ = [9, n0, _CB,
1085
+ { [_h]: ["POST", "/apps/{appId}/branches", 200] }, () => CreateBranchRequest$, () => CreateBranchResult$
1086
+ ];
1087
+ var CreateDeployment$ = [9, n0, _CD,
1088
+ { [_h]: ["POST", "/apps/{appId}/branches/{branchName}/deployments", 200] }, () => CreateDeploymentRequest$, () => CreateDeploymentResult$
1089
+ ];
1090
+ var CreateDomainAssociation$ = [9, n0, _CDA,
1091
+ { [_h]: ["POST", "/apps/{appId}/domains", 200] }, () => CreateDomainAssociationRequest$, () => CreateDomainAssociationResult$
1092
+ ];
1093
+ var CreateWebhook$ = [9, n0, _CW,
1094
+ { [_h]: ["POST", "/apps/{appId}/webhooks", 200] }, () => CreateWebhookRequest$, () => CreateWebhookResult$
1095
+ ];
1096
+ var DeleteApp$ = [9, n0, _DAe,
1097
+ { [_h]: ["DELETE", "/apps/{appId}", 200] }, () => DeleteAppRequest$, () => DeleteAppResult$
1098
+ ];
1099
+ var DeleteBackendEnvironment$ = [9, n0, _DBE,
1100
+ { [_h]: ["DELETE", "/apps/{appId}/backendenvironments/{environmentName}", 200] }, () => DeleteBackendEnvironmentRequest$, () => DeleteBackendEnvironmentResult$
1101
+ ];
1102
+ var DeleteBranch$ = [9, n0, _DB,
1103
+ { [_h]: ["DELETE", "/apps/{appId}/branches/{branchName}", 200] }, () => DeleteBranchRequest$, () => DeleteBranchResult$
1104
+ ];
1105
+ var DeleteDomainAssociation$ = [9, n0, _DDA,
1106
+ { [_h]: ["DELETE", "/apps/{appId}/domains/{domainName}", 200] }, () => DeleteDomainAssociationRequest$, () => DeleteDomainAssociationResult$
1107
+ ];
1108
+ var DeleteJob$ = [9, n0, _DJ,
1109
+ { [_h]: ["DELETE", "/apps/{appId}/branches/{branchName}/jobs/{jobId}", 200] }, () => DeleteJobRequest$, () => DeleteJobResult$
1110
+ ];
1111
+ var DeleteWebhook$ = [9, n0, _DW,
1112
+ { [_h]: ["DELETE", "/webhooks/{webhookId}", 200] }, () => DeleteWebhookRequest$, () => DeleteWebhookResult$
1113
+ ];
1114
+ var GenerateAccessLogs$ = [9, n0, _GAL,
1115
+ { [_h]: ["POST", "/apps/{appId}/accesslogs", 200] }, () => GenerateAccessLogsRequest$, () => GenerateAccessLogsResult$
1116
+ ];
1117
+ var GetApp$ = [9, n0, _GA,
1118
+ { [_h]: ["GET", "/apps/{appId}", 200] }, () => GetAppRequest$, () => GetAppResult$
1119
+ ];
1120
+ var GetArtifactUrl$ = [9, n0, _GAU,
1121
+ { [_h]: ["GET", "/artifacts/{artifactId}", 200] }, () => GetArtifactUrlRequest$, () => GetArtifactUrlResult$
1122
+ ];
1123
+ var GetBackendEnvironment$ = [9, n0, _GBE,
1124
+ { [_h]: ["GET", "/apps/{appId}/backendenvironments/{environmentName}", 200] }, () => GetBackendEnvironmentRequest$, () => GetBackendEnvironmentResult$
1125
+ ];
1126
+ var GetBranch$ = [9, n0, _GB,
1127
+ { [_h]: ["GET", "/apps/{appId}/branches/{branchName}", 200] }, () => GetBranchRequest$, () => GetBranchResult$
1128
+ ];
1129
+ var GetDomainAssociation$ = [9, n0, _GDA,
1130
+ { [_h]: ["GET", "/apps/{appId}/domains/{domainName}", 200] }, () => GetDomainAssociationRequest$, () => GetDomainAssociationResult$
1131
+ ];
1132
+ var GetJob$ = [9, n0, _GJ,
1133
+ { [_h]: ["GET", "/apps/{appId}/branches/{branchName}/jobs/{jobId}", 200] }, () => GetJobRequest$, () => GetJobResult$
1134
+ ];
1135
+ var GetWebhook$ = [9, n0, _GW,
1136
+ { [_h]: ["GET", "/webhooks/{webhookId}", 200] }, () => GetWebhookRequest$, () => GetWebhookResult$
1137
+ ];
1138
+ var ListApps$ = [9, n0, _LA,
1139
+ { [_h]: ["GET", "/apps", 200] }, () => ListAppsRequest$, () => ListAppsResult$
1140
+ ];
1141
+ var ListArtifacts$ = [9, n0, _LAi,
1142
+ { [_h]: ["GET", "/apps/{appId}/branches/{branchName}/jobs/{jobId}/artifacts", 200] }, () => ListArtifactsRequest$, () => ListArtifactsResult$
1143
+ ];
1144
+ var ListBackendEnvironments$ = [9, n0, _LBE,
1145
+ { [_h]: ["GET", "/apps/{appId}/backendenvironments", 200] }, () => ListBackendEnvironmentsRequest$, () => ListBackendEnvironmentsResult$
1146
+ ];
1147
+ var ListBranches$ = [9, n0, _LB,
1148
+ { [_h]: ["GET", "/apps/{appId}/branches", 200] }, () => ListBranchesRequest$, () => ListBranchesResult$
1149
+ ];
1150
+ var ListDomainAssociations$ = [9, n0, _LDA,
1151
+ { [_h]: ["GET", "/apps/{appId}/domains", 200] }, () => ListDomainAssociationsRequest$, () => ListDomainAssociationsResult$
1152
+ ];
1153
+ var ListJobs$ = [9, n0, _LJ,
1154
+ { [_h]: ["GET", "/apps/{appId}/branches/{branchName}/jobs", 200] }, () => ListJobsRequest$, () => ListJobsResult$
1155
+ ];
1156
+ var ListTagsForResource$ = [9, n0, _LTFR,
1157
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1158
+ ];
1159
+ var ListWebhooks$ = [9, n0, _LW,
1160
+ { [_h]: ["GET", "/apps/{appId}/webhooks", 200] }, () => ListWebhooksRequest$, () => ListWebhooksResult$
1161
+ ];
1162
+ var StartDeployment$ = [9, n0, _SDt,
1163
+ { [_h]: ["POST", "/apps/{appId}/branches/{branchName}/deployments/start", 200] }, () => StartDeploymentRequest$, () => StartDeploymentResult$
1164
+ ];
1165
+ var StartJob$ = [9, n0, _SJ,
1166
+ { [_h]: ["POST", "/apps/{appId}/branches/{branchName}/jobs", 200] }, () => StartJobRequest$, () => StartJobResult$
1167
+ ];
1168
+ var StopJob$ = [9, n0, _SJt,
1169
+ { [_h]: ["DELETE", "/apps/{appId}/branches/{branchName}/jobs/{jobId}/stop", 200] }, () => StopJobRequest$, () => StopJobResult$
1170
+ ];
1171
+ var TagResource$ = [9, n0, _TR,
1172
+ { [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1173
+ ];
1174
+ var UntagResource$ = [9, n0, _UR,
1175
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1176
+ ];
1177
+ var UpdateApp$ = [9, n0, _UA,
1178
+ { [_h]: ["POST", "/apps/{appId}", 200] }, () => UpdateAppRequest$, () => UpdateAppResult$
1179
+ ];
1180
+ var UpdateBranch$ = [9, n0, _UB,
1181
+ { [_h]: ["POST", "/apps/{appId}/branches/{branchName}", 200] }, () => UpdateBranchRequest$, () => UpdateBranchResult$
1182
+ ];
1183
+ var UpdateDomainAssociation$ = [9, n0, _UDA,
1184
+ { [_h]: ["POST", "/apps/{appId}/domains/{domainName}", 200] }, () => UpdateDomainAssociationRequest$, () => UpdateDomainAssociationResult$
1185
+ ];
1186
+ var UpdateWebhook$ = [9, n0, _UW,
1187
+ { [_h]: ["POST", "/webhooks/{webhookId}", 200] }, () => UpdateWebhookRequest$, () => UpdateWebhookResult$
1188
+ ];
1189
+
1190
+ const getRuntimeConfig$1 = (config) => {
1191
+ return {
1192
+ apiVersion: "2017-07-25",
1193
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1194
+ base64Encoder: config?.base64Encoder ?? toBase64,
1195
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1196
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1197
+ extensions: config?.extensions ?? [],
1198
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAmplifyHttpAuthSchemeProvider,
1199
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1200
+ {
1201
+ schemeId: "aws.auth#sigv4",
1202
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1203
+ signer: new AwsSdkSigV4Signer(),
1204
+ },
1205
+ ],
1206
+ logger: config?.logger ?? new NoOpLogger(),
1207
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1208
+ protocolSettings: config?.protocolSettings ?? {
1209
+ defaultNamespace: "com.amazonaws.amplify",
1210
+ errorTypeRegistries,
1211
+ xmlNamespace: "http://amplify.amazonaws.com",
1212
+ version: "2017-07-25",
1213
+ serviceTarget: "Amplify",
1214
+ },
1215
+ serviceId: config?.serviceId ?? "Amplify",
1216
+ urlParser: config?.urlParser ?? parseUrl,
1217
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1218
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1219
+ };
1220
+ };
1221
+
1222
+ const getRuntimeConfig = (config) => {
1223
+ emitWarningIfUnsupportedVersion(process.version);
1224
+ const defaultsMode = resolveDefaultsModeConfig(config);
1225
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1226
+ const clientSharedValues = getRuntimeConfig$1(config);
1227
+ emitWarningIfUnsupportedVersion$1(process.version);
1228
+ const loaderConfig = {
1229
+ profile: config?.profile,
1230
+ logger: clientSharedValues.logger,
1231
+ };
1232
+ return {
1233
+ ...clientSharedValues,
1234
+ ...config,
1235
+ runtime: "node",
1236
+ defaultsMode,
1237
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1238
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1239
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1240
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1241
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1242
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1243
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1244
+ retryMode: config?.retryMode ??
1245
+ loadConfig({
1246
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1247
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1248
+ }, config),
1249
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1250
+ streamCollector: config?.streamCollector ?? streamCollector,
1251
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1252
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1253
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1254
+ };
1255
+ };
1256
+
34
1257
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1258
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1259
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -693,55 +1916,203 @@ const JobStatus = {
693
1916
 
694
1917
  exports.Amplify = Amplify;
695
1918
  exports.AmplifyClient = AmplifyClient;
1919
+ exports.AmplifyServiceException = AmplifyServiceException;
1920
+ exports.AmplifyServiceException$ = AmplifyServiceException$;
1921
+ exports.App$ = App$;
1922
+ exports.Artifact$ = Artifact$;
1923
+ exports.AutoBranchCreationConfig$ = AutoBranchCreationConfig$;
1924
+ exports.Backend$ = Backend$;
1925
+ exports.BackendEnvironment$ = BackendEnvironment$;
1926
+ exports.BadRequestException = BadRequestException;
1927
+ exports.BadRequestException$ = BadRequestException$;
1928
+ exports.Branch$ = Branch$;
696
1929
  exports.BuildComputeType = BuildComputeType;
1930
+ exports.CacheConfig$ = CacheConfig$;
697
1931
  exports.CacheConfigType = CacheConfigType;
1932
+ exports.Certificate$ = Certificate$;
1933
+ exports.CertificateSettings$ = CertificateSettings$;
698
1934
  exports.CertificateType = CertificateType;
1935
+ exports.CreateApp$ = CreateApp$;
699
1936
  exports.CreateAppCommand = CreateAppCommand;
1937
+ exports.CreateAppRequest$ = CreateAppRequest$;
1938
+ exports.CreateAppResult$ = CreateAppResult$;
1939
+ exports.CreateBackendEnvironment$ = CreateBackendEnvironment$;
700
1940
  exports.CreateBackendEnvironmentCommand = CreateBackendEnvironmentCommand;
1941
+ exports.CreateBackendEnvironmentRequest$ = CreateBackendEnvironmentRequest$;
1942
+ exports.CreateBackendEnvironmentResult$ = CreateBackendEnvironmentResult$;
1943
+ exports.CreateBranch$ = CreateBranch$;
701
1944
  exports.CreateBranchCommand = CreateBranchCommand;
1945
+ exports.CreateBranchRequest$ = CreateBranchRequest$;
1946
+ exports.CreateBranchResult$ = CreateBranchResult$;
1947
+ exports.CreateDeployment$ = CreateDeployment$;
702
1948
  exports.CreateDeploymentCommand = CreateDeploymentCommand;
1949
+ exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
1950
+ exports.CreateDeploymentResult$ = CreateDeploymentResult$;
1951
+ exports.CreateDomainAssociation$ = CreateDomainAssociation$;
703
1952
  exports.CreateDomainAssociationCommand = CreateDomainAssociationCommand;
1953
+ exports.CreateDomainAssociationRequest$ = CreateDomainAssociationRequest$;
1954
+ exports.CreateDomainAssociationResult$ = CreateDomainAssociationResult$;
1955
+ exports.CreateWebhook$ = CreateWebhook$;
704
1956
  exports.CreateWebhookCommand = CreateWebhookCommand;
1957
+ exports.CreateWebhookRequest$ = CreateWebhookRequest$;
1958
+ exports.CreateWebhookResult$ = CreateWebhookResult$;
1959
+ exports.CustomRule$ = CustomRule$;
1960
+ exports.DeleteApp$ = DeleteApp$;
705
1961
  exports.DeleteAppCommand = DeleteAppCommand;
1962
+ exports.DeleteAppRequest$ = DeleteAppRequest$;
1963
+ exports.DeleteAppResult$ = DeleteAppResult$;
1964
+ exports.DeleteBackendEnvironment$ = DeleteBackendEnvironment$;
706
1965
  exports.DeleteBackendEnvironmentCommand = DeleteBackendEnvironmentCommand;
1966
+ exports.DeleteBackendEnvironmentRequest$ = DeleteBackendEnvironmentRequest$;
1967
+ exports.DeleteBackendEnvironmentResult$ = DeleteBackendEnvironmentResult$;
1968
+ exports.DeleteBranch$ = DeleteBranch$;
707
1969
  exports.DeleteBranchCommand = DeleteBranchCommand;
1970
+ exports.DeleteBranchRequest$ = DeleteBranchRequest$;
1971
+ exports.DeleteBranchResult$ = DeleteBranchResult$;
1972
+ exports.DeleteDomainAssociation$ = DeleteDomainAssociation$;
708
1973
  exports.DeleteDomainAssociationCommand = DeleteDomainAssociationCommand;
1974
+ exports.DeleteDomainAssociationRequest$ = DeleteDomainAssociationRequest$;
1975
+ exports.DeleteDomainAssociationResult$ = DeleteDomainAssociationResult$;
1976
+ exports.DeleteJob$ = DeleteJob$;
709
1977
  exports.DeleteJobCommand = DeleteJobCommand;
1978
+ exports.DeleteJobRequest$ = DeleteJobRequest$;
1979
+ exports.DeleteJobResult$ = DeleteJobResult$;
1980
+ exports.DeleteWebhook$ = DeleteWebhook$;
710
1981
  exports.DeleteWebhookCommand = DeleteWebhookCommand;
1982
+ exports.DeleteWebhookRequest$ = DeleteWebhookRequest$;
1983
+ exports.DeleteWebhookResult$ = DeleteWebhookResult$;
1984
+ exports.DependentServiceFailureException = DependentServiceFailureException;
1985
+ exports.DependentServiceFailureException$ = DependentServiceFailureException$;
1986
+ exports.DomainAssociation$ = DomainAssociation$;
711
1987
  exports.DomainStatus = DomainStatus;
1988
+ exports.GenerateAccessLogs$ = GenerateAccessLogs$;
712
1989
  exports.GenerateAccessLogsCommand = GenerateAccessLogsCommand;
1990
+ exports.GenerateAccessLogsRequest$ = GenerateAccessLogsRequest$;
1991
+ exports.GenerateAccessLogsResult$ = GenerateAccessLogsResult$;
1992
+ exports.GetApp$ = GetApp$;
713
1993
  exports.GetAppCommand = GetAppCommand;
1994
+ exports.GetAppRequest$ = GetAppRequest$;
1995
+ exports.GetAppResult$ = GetAppResult$;
1996
+ exports.GetArtifactUrl$ = GetArtifactUrl$;
714
1997
  exports.GetArtifactUrlCommand = GetArtifactUrlCommand;
1998
+ exports.GetArtifactUrlRequest$ = GetArtifactUrlRequest$;
1999
+ exports.GetArtifactUrlResult$ = GetArtifactUrlResult$;
2000
+ exports.GetBackendEnvironment$ = GetBackendEnvironment$;
715
2001
  exports.GetBackendEnvironmentCommand = GetBackendEnvironmentCommand;
2002
+ exports.GetBackendEnvironmentRequest$ = GetBackendEnvironmentRequest$;
2003
+ exports.GetBackendEnvironmentResult$ = GetBackendEnvironmentResult$;
2004
+ exports.GetBranch$ = GetBranch$;
716
2005
  exports.GetBranchCommand = GetBranchCommand;
2006
+ exports.GetBranchRequest$ = GetBranchRequest$;
2007
+ exports.GetBranchResult$ = GetBranchResult$;
2008
+ exports.GetDomainAssociation$ = GetDomainAssociation$;
717
2009
  exports.GetDomainAssociationCommand = GetDomainAssociationCommand;
2010
+ exports.GetDomainAssociationRequest$ = GetDomainAssociationRequest$;
2011
+ exports.GetDomainAssociationResult$ = GetDomainAssociationResult$;
2012
+ exports.GetJob$ = GetJob$;
718
2013
  exports.GetJobCommand = GetJobCommand;
2014
+ exports.GetJobRequest$ = GetJobRequest$;
2015
+ exports.GetJobResult$ = GetJobResult$;
2016
+ exports.GetWebhook$ = GetWebhook$;
719
2017
  exports.GetWebhookCommand = GetWebhookCommand;
2018
+ exports.GetWebhookRequest$ = GetWebhookRequest$;
2019
+ exports.GetWebhookResult$ = GetWebhookResult$;
2020
+ exports.InternalFailureException = InternalFailureException;
2021
+ exports.InternalFailureException$ = InternalFailureException$;
2022
+ exports.Job$ = Job$;
2023
+ exports.JobConfig$ = JobConfig$;
720
2024
  exports.JobStatus = JobStatus;
2025
+ exports.JobSummary$ = JobSummary$;
721
2026
  exports.JobType = JobType;
2027
+ exports.LimitExceededException = LimitExceededException;
2028
+ exports.LimitExceededException$ = LimitExceededException$;
2029
+ exports.ListApps$ = ListApps$;
722
2030
  exports.ListAppsCommand = ListAppsCommand;
2031
+ exports.ListAppsRequest$ = ListAppsRequest$;
2032
+ exports.ListAppsResult$ = ListAppsResult$;
2033
+ exports.ListArtifacts$ = ListArtifacts$;
723
2034
  exports.ListArtifactsCommand = ListArtifactsCommand;
2035
+ exports.ListArtifactsRequest$ = ListArtifactsRequest$;
2036
+ exports.ListArtifactsResult$ = ListArtifactsResult$;
2037
+ exports.ListBackendEnvironments$ = ListBackendEnvironments$;
724
2038
  exports.ListBackendEnvironmentsCommand = ListBackendEnvironmentsCommand;
2039
+ exports.ListBackendEnvironmentsRequest$ = ListBackendEnvironmentsRequest$;
2040
+ exports.ListBackendEnvironmentsResult$ = ListBackendEnvironmentsResult$;
2041
+ exports.ListBranches$ = ListBranches$;
725
2042
  exports.ListBranchesCommand = ListBranchesCommand;
2043
+ exports.ListBranchesRequest$ = ListBranchesRequest$;
2044
+ exports.ListBranchesResult$ = ListBranchesResult$;
2045
+ exports.ListDomainAssociations$ = ListDomainAssociations$;
726
2046
  exports.ListDomainAssociationsCommand = ListDomainAssociationsCommand;
2047
+ exports.ListDomainAssociationsRequest$ = ListDomainAssociationsRequest$;
2048
+ exports.ListDomainAssociationsResult$ = ListDomainAssociationsResult$;
2049
+ exports.ListJobs$ = ListJobs$;
727
2050
  exports.ListJobsCommand = ListJobsCommand;
2051
+ exports.ListJobsRequest$ = ListJobsRequest$;
2052
+ exports.ListJobsResult$ = ListJobsResult$;
2053
+ exports.ListTagsForResource$ = ListTagsForResource$;
728
2054
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2055
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2056
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2057
+ exports.ListWebhooks$ = ListWebhooks$;
729
2058
  exports.ListWebhooksCommand = ListWebhooksCommand;
2059
+ exports.ListWebhooksRequest$ = ListWebhooksRequest$;
2060
+ exports.ListWebhooksResult$ = ListWebhooksResult$;
2061
+ exports.NotFoundException = NotFoundException;
2062
+ exports.NotFoundException$ = NotFoundException$;
730
2063
  exports.Platform = Platform;
2064
+ exports.ProductionBranch$ = ProductionBranch$;
731
2065
  exports.RepositoryCloneMethod = RepositoryCloneMethod;
2066
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2067
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
732
2068
  exports.SourceUrlType = SourceUrlType;
733
2069
  exports.Stage = Stage;
2070
+ exports.StartDeployment$ = StartDeployment$;
734
2071
  exports.StartDeploymentCommand = StartDeploymentCommand;
2072
+ exports.StartDeploymentRequest$ = StartDeploymentRequest$;
2073
+ exports.StartDeploymentResult$ = StartDeploymentResult$;
2074
+ exports.StartJob$ = StartJob$;
735
2075
  exports.StartJobCommand = StartJobCommand;
2076
+ exports.StartJobRequest$ = StartJobRequest$;
2077
+ exports.StartJobResult$ = StartJobResult$;
2078
+ exports.Step$ = Step$;
2079
+ exports.StopJob$ = StopJob$;
736
2080
  exports.StopJobCommand = StopJobCommand;
2081
+ exports.StopJobRequest$ = StopJobRequest$;
2082
+ exports.StopJobResult$ = StopJobResult$;
2083
+ exports.SubDomain$ = SubDomain$;
2084
+ exports.SubDomainSetting$ = SubDomainSetting$;
2085
+ exports.TagResource$ = TagResource$;
737
2086
  exports.TagResourceCommand = TagResourceCommand;
2087
+ exports.TagResourceRequest$ = TagResourceRequest$;
2088
+ exports.TagResourceResponse$ = TagResourceResponse$;
2089
+ exports.UnauthorizedException = UnauthorizedException;
2090
+ exports.UnauthorizedException$ = UnauthorizedException$;
2091
+ exports.UntagResource$ = UntagResource$;
738
2092
  exports.UntagResourceCommand = UntagResourceCommand;
2093
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2094
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2095
+ exports.UpdateApp$ = UpdateApp$;
739
2096
  exports.UpdateAppCommand = UpdateAppCommand;
2097
+ exports.UpdateAppRequest$ = UpdateAppRequest$;
2098
+ exports.UpdateAppResult$ = UpdateAppResult$;
2099
+ exports.UpdateBranch$ = UpdateBranch$;
740
2100
  exports.UpdateBranchCommand = UpdateBranchCommand;
2101
+ exports.UpdateBranchRequest$ = UpdateBranchRequest$;
2102
+ exports.UpdateBranchResult$ = UpdateBranchResult$;
2103
+ exports.UpdateDomainAssociation$ = UpdateDomainAssociation$;
741
2104
  exports.UpdateDomainAssociationCommand = UpdateDomainAssociationCommand;
2105
+ exports.UpdateDomainAssociationRequest$ = UpdateDomainAssociationRequest$;
2106
+ exports.UpdateDomainAssociationResult$ = UpdateDomainAssociationResult$;
742
2107
  exports.UpdateStatus = UpdateStatus;
2108
+ exports.UpdateWebhook$ = UpdateWebhook$;
743
2109
  exports.UpdateWebhookCommand = UpdateWebhookCommand;
2110
+ exports.UpdateWebhookRequest$ = UpdateWebhookRequest$;
2111
+ exports.UpdateWebhookResult$ = UpdateWebhookResult$;
2112
+ exports.WafConfiguration$ = WafConfiguration$;
744
2113
  exports.WafStatus = WafStatus;
2114
+ exports.Webhook$ = Webhook$;
2115
+ exports.errorTypeRegistries = errorTypeRegistries;
745
2116
  exports.paginateListApps = paginateListApps;
746
2117
  exports.paginateListBranches = paginateListBranches;
747
2118
  exports.paginateListDomainAssociations = paginateListDomainAssociations;