@aws-sdk/client-cloudfront 3.936.0 → 3.939.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/README.md +120 -0
- package/dist-cjs/index.js +1018 -69
- package/dist-es/CloudFront.js +30 -0
- package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
- package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
- package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListTrustStoresCommand.js +16 -0
- package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
- package/dist-es/commands/index.js +18 -3
- package/dist-es/models/enums.js +31 -8
- package/dist-es/models/errors.js +14 -14
- package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
- package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +735 -34
- package/dist-types/CloudFront.d.ts +107 -0
- package/dist-types/CloudFrontClient.d.ts +17 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
- package/dist-types/commands/CreateAnycastIpListCommand.d.ts +19 -0
- package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
- package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
- package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
- package/dist-types/commands/GetAnycastIpListCommand.d.ts +11 -0
- package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
- package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
- package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -0
- package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
- package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
- package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
- package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +11 -0
- package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +18 -3
- package/dist-types/models/enums.d.ts +71 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +498 -314
- package/dist-types/models/models_1.d.ts +627 -3
- package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +57 -0
- package/dist-types/ts3.4/CloudFront.d.ts +263 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
- package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +18 -3
- package/dist-types/ts3.4/models/enums.d.ts +40 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +131 -82
- package/dist-types/ts3.4/models/models_1.d.ts +172 -0
- package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -0
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -1266,6 +1266,20 @@ let TooManyCloudFrontOriginAccessIdentities$1 = class TooManyCloudFrontOriginAcc
|
|
|
1266
1266
|
this.Message = opts.Message;
|
|
1267
1267
|
}
|
|
1268
1268
|
};
|
|
1269
|
+
let EntitySizeLimitExceeded$1 = class EntitySizeLimitExceeded extends CloudFrontServiceException$1 {
|
|
1270
|
+
name = "EntitySizeLimitExceeded";
|
|
1271
|
+
$fault = "client";
|
|
1272
|
+
Message;
|
|
1273
|
+
constructor(opts) {
|
|
1274
|
+
super({
|
|
1275
|
+
name: "EntitySizeLimitExceeded",
|
|
1276
|
+
$fault: "client",
|
|
1277
|
+
...opts,
|
|
1278
|
+
});
|
|
1279
|
+
Object.setPrototypeOf(this, EntitySizeLimitExceeded.prototype);
|
|
1280
|
+
this.Message = opts.Message;
|
|
1281
|
+
}
|
|
1282
|
+
};
|
|
1269
1283
|
let ContinuousDeploymentPolicyAlreadyExists$1 = class ContinuousDeploymentPolicyAlreadyExists extends CloudFrontServiceException$1 {
|
|
1270
1284
|
name = "ContinuousDeploymentPolicyAlreadyExists";
|
|
1271
1285
|
$fault = "client";
|
|
@@ -1644,20 +1658,6 @@ let TooManyPublicKeysInKeyGroup$1 = class TooManyPublicKeysInKeyGroup extends Cl
|
|
|
1644
1658
|
this.Message = opts.Message;
|
|
1645
1659
|
}
|
|
1646
1660
|
};
|
|
1647
|
-
let EntitySizeLimitExceeded$1 = class EntitySizeLimitExceeded extends CloudFrontServiceException$1 {
|
|
1648
|
-
name = "EntitySizeLimitExceeded";
|
|
1649
|
-
$fault = "client";
|
|
1650
|
-
Message;
|
|
1651
|
-
constructor(opts) {
|
|
1652
|
-
super({
|
|
1653
|
-
name: "EntitySizeLimitExceeded",
|
|
1654
|
-
$fault: "client",
|
|
1655
|
-
...opts,
|
|
1656
|
-
});
|
|
1657
|
-
Object.setPrototypeOf(this, EntitySizeLimitExceeded.prototype);
|
|
1658
|
-
this.Message = opts.Message;
|
|
1659
|
-
}
|
|
1660
|
-
};
|
|
1661
1661
|
let MonitoringSubscriptionAlreadyExists$1 = class MonitoringSubscriptionAlreadyExists extends CloudFrontServiceException$1 {
|
|
1662
1662
|
name = "MonitoringSubscriptionAlreadyExists";
|
|
1663
1663
|
$fault = "client";
|
|
@@ -2287,6 +2287,7 @@ const _AM = "AllowedMethods";
|
|
|
2287
2287
|
const _ARN = "ARN";
|
|
2288
2288
|
const _ATKG = "ActiveTrustedKeyGroups";
|
|
2289
2289
|
const _ATS = "ActiveTrustedSigners";
|
|
2290
|
+
const _ATSCN = "AdvertiseTrustStoreCaNames";
|
|
2290
2291
|
const _Ac = "Action";
|
|
2291
2292
|
const _Al = "Alias";
|
|
2292
2293
|
const _Ar = "Arn";
|
|
@@ -2306,12 +2307,17 @@ const _CBL = "CacheBehaviorList";
|
|
|
2306
2307
|
const _CBa = "CacheBehaviors";
|
|
2307
2308
|
const _CBo = "CookieBehavior";
|
|
2308
2309
|
const _CC = "CookiesConfig";
|
|
2310
|
+
const _CCBS = "CaCertificatesBundleSource";
|
|
2311
|
+
const _CCBSL = "CaCertificatesBundleS3Location";
|
|
2309
2312
|
const _CCDP = "CreateContinuousDeploymentPolicy";
|
|
2310
2313
|
const _CCDPR = "CreateContinuousDeploymentPolicyRequest";
|
|
2311
2314
|
const _CCDPRr = "CreateContinuousDeploymentPolicyResult";
|
|
2315
|
+
const _CCF = "CreateConnectionFunction";
|
|
2312
2316
|
const _CCFOAI = "CreateCloudFrontOriginAccessIdentity";
|
|
2313
2317
|
const _CCFOAIR = "CreateCloudFrontOriginAccessIdentityRequest";
|
|
2314
2318
|
const _CCFOAIRr = "CreateCloudFrontOriginAccessIdentityResult";
|
|
2319
|
+
const _CCFR = "CreateConnectionFunctionRequest";
|
|
2320
|
+
const _CCFRr = "CreateConnectionFunctionResult";
|
|
2315
2321
|
const _CCG = "CreateConnectionGroup";
|
|
2316
2322
|
const _CCGR = "CreateConnectionGroupRequest";
|
|
2317
2323
|
const _CCGRr = "CreateConnectionGroupResult";
|
|
@@ -2346,14 +2352,22 @@ const _CDr = "CreateDistribution";
|
|
|
2346
2352
|
const _CER = "CustomErrorResponse";
|
|
2347
2353
|
const _CERL = "CustomErrorResponseList";
|
|
2348
2354
|
const _CERu = "CustomErrorResponses";
|
|
2349
|
-
const _CF = "
|
|
2355
|
+
const _CF = "ConnectionFunctions";
|
|
2356
|
+
const _CFA = "ConnectionFunctionAssociation";
|
|
2357
|
+
const _CFAo = "ConnectionFunctionArn";
|
|
2358
|
+
const _CFC = "ConnectionFunctionConfig";
|
|
2359
|
+
const _CFCo = "ConnectionFunctionCode";
|
|
2350
2360
|
const _CFDC = "CloudFrontDefaultCertificate";
|
|
2361
|
+
const _CFEL = "ConnectionFunctionExecutionLogs";
|
|
2362
|
+
const _CFEM = "ConnectionFunctionErrorMessage";
|
|
2363
|
+
const _CFI = "ConnectionFunctionIdentifier";
|
|
2351
2364
|
const _CFLEC = "CreateFieldLevelEncryptionConfig";
|
|
2352
2365
|
const _CFLECR = "CreateFieldLevelEncryptionConfigRequest";
|
|
2353
2366
|
const _CFLECRr = "CreateFieldLevelEncryptionConfigResult";
|
|
2354
2367
|
const _CFLEP = "CreateFieldLevelEncryptionProfile";
|
|
2355
2368
|
const _CFLEPR = "CreateFieldLevelEncryptionProfileRequest";
|
|
2356
2369
|
const _CFLEPRr = "CreateFieldLevelEncryptionProfileResult";
|
|
2370
|
+
const _CFO = "ConnectionFunctionOutput";
|
|
2357
2371
|
const _CFOAI = "CloudFrontOriginAccessIdentity";
|
|
2358
2372
|
const _CFOAIAE = "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
2359
2373
|
const _CFOAIC = "CloudFrontOriginAccessIdentityConfig";
|
|
@@ -2363,6 +2377,10 @@ const _CFOAIS = "CloudFrontOriginAccessIdentitySummary";
|
|
|
2363
2377
|
const _CFOAISL = "CloudFrontOriginAccessIdentitySummaryList";
|
|
2364
2378
|
const _CFR = "CreateFunctionRequest";
|
|
2365
2379
|
const _CFRr = "CreateFunctionResult";
|
|
2380
|
+
const _CFS = "ConnectionFunctionSummary";
|
|
2381
|
+
const _CFSL = "ConnectionFunctionSummaryList";
|
|
2382
|
+
const _CFTR = "ConnectionFunctionTestResult";
|
|
2383
|
+
const _CFr = "CreateFunction";
|
|
2366
2384
|
const _CG = "ConnectionGroup";
|
|
2367
2385
|
const _CGAF = "ConnectionGroupAssociationFilter";
|
|
2368
2386
|
const _CGI = "ConnectionGroupId";
|
|
@@ -2392,6 +2410,7 @@ const _CN = "CookieNames";
|
|
|
2392
2410
|
const _CNAME = "CNAME";
|
|
2393
2411
|
const _CNAMEAE = "CNAMEAlreadyExists";
|
|
2394
2412
|
const _CNL = "CookieNameList";
|
|
2413
|
+
const _CO = "ConnectionObject";
|
|
2395
2414
|
const _COAC = "CreateOriginAccessControl";
|
|
2396
2415
|
const _COACR = "CreateOriginAccessControlRequest";
|
|
2397
2416
|
const _COACRr = "CreateOriginAccessControlResult";
|
|
@@ -2437,6 +2456,9 @@ const _CTP = "ContentTypeProfile";
|
|
|
2437
2456
|
const _CTPC = "ContentTypeProfileConfig";
|
|
2438
2457
|
const _CTPL = "ContentTypeProfileList";
|
|
2439
2458
|
const _CTPo = "ContentTypeProfiles";
|
|
2459
|
+
const _CTS = "CreateTrustStore";
|
|
2460
|
+
const _CTSR = "CreateTrustStoreRequest";
|
|
2461
|
+
const _CTSRr = "CreateTrustStoreResult";
|
|
2440
2462
|
const _CT_ = "Content-Type";
|
|
2441
2463
|
const _CTo = "ContentType";
|
|
2442
2464
|
const _CTon = "ConnectionTimeout";
|
|
@@ -2448,6 +2470,7 @@ const _CVO = "CreateVpcOrigin";
|
|
|
2448
2470
|
const _CVOR = "CreateVpcOriginRequest";
|
|
2449
2471
|
const _CVORr = "CreateVpcOriginResult";
|
|
2450
2472
|
const _Ce = "Certificate";
|
|
2473
|
+
const _Ci = "Cidr";
|
|
2451
2474
|
const _Co = "Comment";
|
|
2452
2475
|
const _Coo = "Cookies";
|
|
2453
2476
|
const _Cu = "Customizations";
|
|
@@ -2459,8 +2482,13 @@ const _DC = "DistributionConfig";
|
|
|
2459
2482
|
const _DCB = "DefaultCacheBehavior";
|
|
2460
2483
|
const _DCDP = "DeleteContinuousDeploymentPolicy";
|
|
2461
2484
|
const _DCDPR = "DeleteContinuousDeploymentPolicyRequest";
|
|
2485
|
+
const _DCF = "DeleteConnectionFunction";
|
|
2462
2486
|
const _DCFOAI = "DeleteCloudFrontOriginAccessIdentity";
|
|
2463
2487
|
const _DCFOAIR = "DeleteCloudFrontOriginAccessIdentityRequest";
|
|
2488
|
+
const _DCFR = "DeleteConnectionFunctionRequest";
|
|
2489
|
+
const _DCFRe = "DescribeConnectionFunctionRequest";
|
|
2490
|
+
const _DCFRes = "DescribeConnectionFunctionResult";
|
|
2491
|
+
const _DCFe = "DescribeConnectionFunction";
|
|
2464
2492
|
const _DCG = "DeleteConnectionGroup";
|
|
2465
2493
|
const _DCGR = "DeleteConnectionGroupRequest";
|
|
2466
2494
|
const _DCL = "DnsConfigurationList";
|
|
@@ -2538,6 +2566,8 @@ const _DTAF = "DistributionTenantAssociationFilter";
|
|
|
2538
2566
|
const _DTI = "DistributionTenantId";
|
|
2539
2567
|
const _DTL = "DistributionTenantList";
|
|
2540
2568
|
const _DTS = "DistributionTenantSummary";
|
|
2569
|
+
const _DTSR = "DeleteTrustStoreRequest";
|
|
2570
|
+
const _DTSe = "DeleteTrustStore";
|
|
2541
2571
|
const _DTTL = "DefaultTTL";
|
|
2542
2572
|
const _DV = "DefaultValue";
|
|
2543
2573
|
const _DVO = "DeleteVpcOrigin";
|
|
@@ -2626,12 +2656,15 @@ const _GCDPCR = "GetContinuousDeploymentPolicyConfigRequest";
|
|
|
2626
2656
|
const _GCDPCRe = "GetContinuousDeploymentPolicyConfigResult";
|
|
2627
2657
|
const _GCDPR = "GetContinuousDeploymentPolicyRequest";
|
|
2628
2658
|
const _GCDPRe = "GetContinuousDeploymentPolicyResult";
|
|
2659
|
+
const _GCF = "GetConnectionFunction";
|
|
2629
2660
|
const _GCFOAI = "GetCloudFrontOriginAccessIdentity";
|
|
2630
2661
|
const _GCFOAIC = "GetCloudFrontOriginAccessIdentityConfig";
|
|
2631
2662
|
const _GCFOAICR = "GetCloudFrontOriginAccessIdentityConfigRequest";
|
|
2632
2663
|
const _GCFOAICRe = "GetCloudFrontOriginAccessIdentityConfigResult";
|
|
2633
2664
|
const _GCFOAIR = "GetCloudFrontOriginAccessIdentityRequest";
|
|
2634
2665
|
const _GCFOAIRe = "GetCloudFrontOriginAccessIdentityResult";
|
|
2666
|
+
const _GCFR = "GetConnectionFunctionRequest";
|
|
2667
|
+
const _GCFRe = "GetConnectionFunctionResult";
|
|
2635
2668
|
const _GCG = "GetConnectionGroup";
|
|
2636
2669
|
const _GCGBRE = "GetConnectionGroupByRoutingEndpoint";
|
|
2637
2670
|
const _GCGBRER = "GetConnectionGroupByRoutingEndpointRequest";
|
|
@@ -2728,6 +2761,9 @@ const _GSDCR = "GetStreamingDistributionConfigRequest";
|
|
|
2728
2761
|
const _GSDCRe = "GetStreamingDistributionConfigResult";
|
|
2729
2762
|
const _GSDR = "GetStreamingDistributionRequest";
|
|
2730
2763
|
const _GSDRe = "GetStreamingDistributionResult";
|
|
2764
|
+
const _GTS = "GetTrustStore";
|
|
2765
|
+
const _GTSR = "GetTrustStoreRequest";
|
|
2766
|
+
const _GTSRe = "GetTrustStoreResult";
|
|
2731
2767
|
const _GVO = "GetVpcOrigin";
|
|
2732
2768
|
const _GVOR = "GetVpcOriginRequest";
|
|
2733
2769
|
const _GVORe = "GetVpcOriginResult";
|
|
@@ -2748,9 +2784,14 @@ const _IAT = "IpAddressType";
|
|
|
2748
2784
|
const _IAn = "InvalidAssociation";
|
|
2749
2785
|
const _IB = "InvalidationBatch";
|
|
2750
2786
|
const _IBn = "IncludeBody";
|
|
2751
|
-
const _IC = "
|
|
2787
|
+
const _IC = "IpamConfig";
|
|
2788
|
+
const _ICC = "IpamCidrConfigs";
|
|
2789
|
+
const _ICCL = "IpamCidrConfigList";
|
|
2790
|
+
const _ICCp = "IpamCidrConfig";
|
|
2791
|
+
const _ICE = "IgnoreCertificateExpiry";
|
|
2752
2792
|
const _ICPRS = "ICPRecordalStatus";
|
|
2753
2793
|
const _ICn = "IncludeCookies";
|
|
2794
|
+
const _ICp = "IpCount";
|
|
2754
2795
|
const _ID = "IsDefault";
|
|
2755
2796
|
const _IDNFOAC = "InvalidDomainNameForOriginAccessControl";
|
|
2756
2797
|
const _IDRO = "InvalidDefaultRootObject";
|
|
@@ -2776,6 +2817,7 @@ const _IOACn = "InvalidOriginAccessControl";
|
|
|
2776
2817
|
const _IOAI = "InvalidOriginAccessIdentity";
|
|
2777
2818
|
const _IOKT = "InvalidOriginKeepaliveTimeout";
|
|
2778
2819
|
const _IORT = "InvalidOriginReadTimeout";
|
|
2820
|
+
const _IPA = "IpamPoolArn";
|
|
2779
2821
|
const _IPIB = "InProgressInvalidationBatches";
|
|
2780
2822
|
const _IPS = "InvalidProtocolSettings";
|
|
2781
2823
|
const _IQ = "InconsistentQuantities";
|
|
@@ -2829,9 +2871,12 @@ const _LCARi = "ListConflictingAliasesResult";
|
|
|
2829
2871
|
const _LCDP = "ListContinuousDeploymentPolicies";
|
|
2830
2872
|
const _LCDPR = "ListContinuousDeploymentPoliciesRequest";
|
|
2831
2873
|
const _LCDPRi = "ListContinuousDeploymentPoliciesResult";
|
|
2874
|
+
const _LCF = "ListConnectionFunctions";
|
|
2832
2875
|
const _LCFOAI = "ListCloudFrontOriginAccessIdentities";
|
|
2833
2876
|
const _LCFOAIR = "ListCloudFrontOriginAccessIdentitiesRequest";
|
|
2834
2877
|
const _LCFOAIRi = "ListCloudFrontOriginAccessIdentitiesResult";
|
|
2878
|
+
const _LCFR = "ListConnectionFunctionsRequest";
|
|
2879
|
+
const _LCFRi = "ListConnectionFunctionsResult";
|
|
2835
2880
|
const _LCG = "ListConnectionGroups";
|
|
2836
2881
|
const _LCGR = "ListConnectionGroupsRequest";
|
|
2837
2882
|
const _LCGRi = "ListConnectionGroupsResult";
|
|
@@ -2842,6 +2887,9 @@ const _LD = "ListDistributions";
|
|
|
2842
2887
|
const _LDBAILI = "ListDistributionsByAnycastIpListId";
|
|
2843
2888
|
const _LDBAILIR = "ListDistributionsByAnycastIpListIdRequest";
|
|
2844
2889
|
const _LDBAILIRi = "ListDistributionsByAnycastIpListIdResult";
|
|
2890
|
+
const _LDBCF = "ListDistributionsByConnectionFunction";
|
|
2891
|
+
const _LDBCFR = "ListDistributionsByConnectionFunctionRequest";
|
|
2892
|
+
const _LDBCFRi = "ListDistributionsByConnectionFunctionResult";
|
|
2845
2893
|
const _LDBCM = "ListDistributionsByConnectionMode";
|
|
2846
2894
|
const _LDBCMR = "ListDistributionsByConnectionModeRequest";
|
|
2847
2895
|
const _LDBCMRi = "ListDistributionsByConnectionModeResult";
|
|
@@ -2863,6 +2911,9 @@ const _LDBRHPIRi = "ListDistributionsByResponseHeadersPolicyIdResult";
|
|
|
2863
2911
|
const _LDBRLC = "ListDistributionsByRealtimeLogConfig";
|
|
2864
2912
|
const _LDBRLCR = "ListDistributionsByRealtimeLogConfigRequest";
|
|
2865
2913
|
const _LDBRLCRi = "ListDistributionsByRealtimeLogConfigResult";
|
|
2914
|
+
const _LDBTS = "ListDistributionsByTrustStore";
|
|
2915
|
+
const _LDBTSR = "ListDistributionsByTrustStoreRequest";
|
|
2916
|
+
const _LDBTSRi = "ListDistributionsByTrustStoreResult";
|
|
2866
2917
|
const _LDBVOI = "ListDistributionsByVpcOriginId";
|
|
2867
2918
|
const _LDBVOIR = "ListDistributionsByVpcOriginIdRequest";
|
|
2868
2919
|
const _LDBVOIRi = "ListDistributionsByVpcOriginIdResult";
|
|
@@ -2928,6 +2979,9 @@ const _LSDRi = "ListStreamingDistributionsResult";
|
|
|
2928
2979
|
const _LTFR = "ListTagsForResource";
|
|
2929
2980
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
2930
2981
|
const _LTFRRi = "ListTagsForResourceResult";
|
|
2982
|
+
const _LTS = "ListTrustStores";
|
|
2983
|
+
const _LTSR = "ListTrustStoresRequest";
|
|
2984
|
+
const _LTSRi = "ListTrustStoresResult";
|
|
2931
2985
|
const _LVO = "ListVpcOrigins";
|
|
2932
2986
|
const _LVOR = "ListVpcOriginsRequest";
|
|
2933
2987
|
const _LVORi = "ListVpcOriginsResult";
|
|
@@ -2949,8 +3003,10 @@ const _MTTLax = "MaximumTTL";
|
|
|
2949
3003
|
const _Ma = "Marker";
|
|
2950
3004
|
const _Me = "Members";
|
|
2951
3005
|
const _Met = "Method";
|
|
3006
|
+
const _Mo = "Mode";
|
|
2952
3007
|
const _N = "Name";
|
|
2953
3008
|
const _NM = "NextMarker";
|
|
3009
|
+
const _NOCC = "NumberOfCaCertificates";
|
|
2954
3010
|
const _NSCDP = "NoSuchContinuousDeploymentPolicy";
|
|
2955
3011
|
const _NSCFOAI = "NoSuchCloudFrontOriginAccessIdentity";
|
|
2956
3012
|
const _NSCP = "NoSuchCachePolicy";
|
|
@@ -3015,6 +3071,9 @@ const _Or = "Origin";
|
|
|
3015
3071
|
const _Ov = "Override";
|
|
3016
3072
|
const _P = "Parameters";
|
|
3017
3073
|
const _PC = "PriceClass";
|
|
3074
|
+
const _PCF = "PublishConnectionFunction";
|
|
3075
|
+
const _PCFR = "PublishConnectionFunctionRequest";
|
|
3076
|
+
const _PCFRu = "PublishConnectionFunctionResult";
|
|
3018
3077
|
const _PD = "PolicyDocument";
|
|
3019
3078
|
const _PDI = "PrimaryDistributionId";
|
|
3020
3079
|
const _PDN = "PrimaryDomainName";
|
|
@@ -3063,7 +3122,7 @@ const _QSCKL = "QueryStringCacheKeysList";
|
|
|
3063
3122
|
const _QSN = "QueryStringNames";
|
|
3064
3123
|
const _QSNL = "QueryStringNamesList";
|
|
3065
3124
|
const _QSu = "QueryString";
|
|
3066
|
-
const _R = "
|
|
3125
|
+
const _R = "Region";
|
|
3067
3126
|
const _RA = "ResourceArn";
|
|
3068
3127
|
const _RARN = "RoleARN";
|
|
3069
3128
|
const _RC = "ResponseCode";
|
|
@@ -3117,7 +3176,8 @@ const _RT = "ResourceType";
|
|
|
3117
3176
|
const _RTe = "RestrictionType";
|
|
3118
3177
|
const _RTed = "RedirectTo";
|
|
3119
3178
|
const _RU = "ReportUri";
|
|
3120
|
-
const _Re = "
|
|
3179
|
+
const _Re = "Restrictions";
|
|
3180
|
+
const _Rea = "Reason";
|
|
3121
3181
|
const _Req = "Required";
|
|
3122
3182
|
const _Res = "Resource";
|
|
3123
3183
|
const _Ru = "Runtime";
|
|
@@ -3163,10 +3223,13 @@ const _STS = "StrictTransportSecurity";
|
|
|
3163
3223
|
const _STo = "SourceType";
|
|
3164
3224
|
const _SWC = "SingleWeightConfig";
|
|
3165
3225
|
const _Si = "Signer";
|
|
3166
|
-
const _St = "
|
|
3167
|
-
const _Sta = "
|
|
3226
|
+
const _St = "Stage";
|
|
3227
|
+
const _Sta = "Staging";
|
|
3168
3228
|
const _T = "Type";
|
|
3169
3229
|
const _TC = "TrafficConfig";
|
|
3230
|
+
const _TCF = "TestConnectionFunction";
|
|
3231
|
+
const _TCFR = "TestConnectionFunctionRequest";
|
|
3232
|
+
const _TCFRe = "TestConnectionFunctionResult";
|
|
3170
3233
|
const _TCe = "TenantConfig";
|
|
3171
3234
|
const _TDI = "TargetDistributionId";
|
|
3172
3235
|
const _TF = "TestFunction";
|
|
@@ -3237,7 +3300,13 @@ const _TRR = "TagResourceRequest";
|
|
|
3237
3300
|
const _TRa = "TargetResource";
|
|
3238
3301
|
const _TRag = "TagResource";
|
|
3239
3302
|
const _TS = "TrustedSigners";
|
|
3303
|
+
const _TSC = "TrustStoreConfig";
|
|
3240
3304
|
const _TSDNE = "TrustedSignerDoesNotExist";
|
|
3305
|
+
const _TSI = "TrustStoreIdentifier";
|
|
3306
|
+
const _TSIr = "TrustStoreId";
|
|
3307
|
+
const _TSL = "TrustStoreList";
|
|
3308
|
+
const _TSS = "TrustStoreSummary";
|
|
3309
|
+
const _TSr = "TrustStore";
|
|
3241
3310
|
const _Ta = "Tags";
|
|
3242
3311
|
const _Tag = "Tag";
|
|
3243
3312
|
const _UAIL = "UpdateAnycastIpList";
|
|
@@ -3246,9 +3315,12 @@ const _UAILRp = "UpdateAnycastIpListResult";
|
|
|
3246
3315
|
const _UCDP = "UpdateContinuousDeploymentPolicy";
|
|
3247
3316
|
const _UCDPR = "UpdateContinuousDeploymentPolicyRequest";
|
|
3248
3317
|
const _UCDPRp = "UpdateContinuousDeploymentPolicyResult";
|
|
3318
|
+
const _UCF = "UpdateConnectionFunction";
|
|
3249
3319
|
const _UCFOAI = "UpdateCloudFrontOriginAccessIdentity";
|
|
3250
3320
|
const _UCFOAIR = "UpdateCloudFrontOriginAccessIdentityRequest";
|
|
3251
3321
|
const _UCFOAIRp = "UpdateCloudFrontOriginAccessIdentityResult";
|
|
3322
|
+
const _UCFR = "UpdateConnectionFunctionRequest";
|
|
3323
|
+
const _UCFRp = "UpdateConnectionFunctionResult";
|
|
3252
3324
|
const _UCG = "UpdateConnectionGroup";
|
|
3253
3325
|
const _UCGR = "UpdateConnectionGroupRequest";
|
|
3254
3326
|
const _UCGRp = "UpdateConnectionGroupResult";
|
|
@@ -3303,14 +3375,18 @@ const _URR = "UntagResourceRequest";
|
|
|
3303
3375
|
const _USD = "UpdateStreamingDistribution";
|
|
3304
3376
|
const _USDR = "UpdateStreamingDistributionRequest";
|
|
3305
3377
|
const _USDRp = "UpdateStreamingDistributionResult";
|
|
3378
|
+
const _UTS = "UpdateTrustStore";
|
|
3379
|
+
const _UTSR = "UpdateTrustStoreRequest";
|
|
3380
|
+
const _UTSRp = "UpdateTrustStoreResult";
|
|
3306
3381
|
const _UVO = "UpdateVpcOrigin";
|
|
3307
3382
|
const _UVOR = "UpdateVpcOriginRequest";
|
|
3308
3383
|
const _UVORp = "UpdateVpcOriginResult";
|
|
3309
|
-
const _V = "
|
|
3384
|
+
const _V = "Version";
|
|
3310
3385
|
const _VC = "ViewerCertificate";
|
|
3311
3386
|
const _VDC = "VerifyDnsConfiguration";
|
|
3312
3387
|
const _VDCR = "VerifyDnsConfigurationRequest";
|
|
3313
3388
|
const _VDCRe = "VerifyDnsConfigurationResult";
|
|
3389
|
+
const _VMC = "ViewerMtlsConfig";
|
|
3314
3390
|
const _VO = "VpcOrigin";
|
|
3315
3391
|
const _VOC = "VpcOriginConfig";
|
|
3316
3392
|
const _VOEC = "VpcOriginEndpointConfig";
|
|
@@ -3323,6 +3399,7 @@ const _VTD = "ValidationTokenDetails";
|
|
|
3323
3399
|
const _VTDL = "ValidationTokenDetailList";
|
|
3324
3400
|
const _VTDa = "ValidationTokenDetail";
|
|
3325
3401
|
const _VTH = "ValidationTokenHost";
|
|
3402
|
+
const _Va = "Value";
|
|
3326
3403
|
const _W = "Weight";
|
|
3327
3404
|
const _WA = "WebAcl";
|
|
3328
3405
|
const _WAC = "WebAclCustomization";
|
|
@@ -3383,8 +3460,8 @@ var AnycastIpList = [
|
|
|
3383
3460
|
n0,
|
|
3384
3461
|
_AIL,
|
|
3385
3462
|
0,
|
|
3386
|
-
[_Id, _N, _S, _Ar, _IAT, _AI,
|
|
3387
|
-
[0, 0, 0, 0, 0, [() => AnycastIps, 0], 1, 4],
|
|
3463
|
+
[_Id, _N, _S, _Ar, _IAT, _IC, _AI, _ICp, _LMT],
|
|
3464
|
+
[0, 0, 0, 0, 0, [() => IpamConfig, 0], [() => AnycastIps, 0], 1, 4],
|
|
3388
3465
|
];
|
|
3389
3466
|
var AnycastIpListCollection = [
|
|
3390
3467
|
3,
|
|
@@ -3399,8 +3476,8 @@ var AnycastIpListSummary = [
|
|
|
3399
3476
|
n0,
|
|
3400
3477
|
_AILS,
|
|
3401
3478
|
0,
|
|
3402
|
-
[_Id, _N, _S, _Ar,
|
|
3403
|
-
[0, 0, 0, 0, 1, 4, 0, 0],
|
|
3479
|
+
[_Id, _N, _S, _Ar, _ICp, _LMT, _IAT, _ET, _IC],
|
|
3480
|
+
[0, 0, 0, 0, 1, 4, 0, 0, [() => IpamConfig, 0]],
|
|
3404
3481
|
];
|
|
3405
3482
|
var AssociateAliasRequest = [
|
|
3406
3483
|
3,
|
|
@@ -3498,6 +3575,7 @@ var BatchTooLarge = [
|
|
|
3498
3575
|
[0],
|
|
3499
3576
|
];
|
|
3500
3577
|
schema.TypeRegistry.for(n0).registerError(BatchTooLarge, BatchTooLarge$1);
|
|
3578
|
+
var CaCertificatesBundleS3Location = [3, n0, _CCBSL, 0, [_B, _K, _R, _V], [0, 0, 0, 0]];
|
|
3501
3579
|
var CacheBehavior = [
|
|
3502
3580
|
3,
|
|
3503
3581
|
n0,
|
|
@@ -3723,6 +3801,29 @@ var ConflictingAliasesList = [
|
|
|
3723
3801
|
[_NM, _MI, _Q, _I],
|
|
3724
3802
|
[0, 1, 1, [() => ConflictingAliases, 0]],
|
|
3725
3803
|
];
|
|
3804
|
+
var ConnectionFunctionAssociation = [3, n0, _CFA, 0, [_Id], [0]];
|
|
3805
|
+
var ConnectionFunctionSummary = [
|
|
3806
|
+
3,
|
|
3807
|
+
n0,
|
|
3808
|
+
_CFS,
|
|
3809
|
+
0,
|
|
3810
|
+
[_N, _Id, _CFC, _CFAo, _S, _St, _CTr, _LMT],
|
|
3811
|
+
[0, 0, [() => FunctionConfig, 0], 0, 0, 0, 4, 4],
|
|
3812
|
+
];
|
|
3813
|
+
var ConnectionFunctionTestResult = [
|
|
3814
|
+
3,
|
|
3815
|
+
n0,
|
|
3816
|
+
_CFTR,
|
|
3817
|
+
0,
|
|
3818
|
+
[_CFS, _CU, _CFEL, _CFEM, _CFO],
|
|
3819
|
+
[
|
|
3820
|
+
[() => ConnectionFunctionSummary, 0],
|
|
3821
|
+
0,
|
|
3822
|
+
[() => FunctionExecutionLogList, 0],
|
|
3823
|
+
[() => sensitiveStringType, 0],
|
|
3824
|
+
[() => sensitiveStringType, 0],
|
|
3825
|
+
],
|
|
3826
|
+
];
|
|
3726
3827
|
var ConnectionGroup = [
|
|
3727
3828
|
3,
|
|
3728
3829
|
n0,
|
|
@@ -3813,7 +3914,7 @@ var ContinuousDeploymentPolicySummary = [
|
|
|
3813
3914
|
[_CDP],
|
|
3814
3915
|
[[() => ContinuousDeploymentPolicy, 0]],
|
|
3815
3916
|
];
|
|
3816
|
-
var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He,
|
|
3917
|
+
var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He, _Va], [0, 0]];
|
|
3817
3918
|
var ContinuousDeploymentSingleWeightConfig = [
|
|
3818
3919
|
3,
|
|
3819
3920
|
n0,
|
|
@@ -3829,13 +3930,13 @@ var CopyDistributionRequest = [
|
|
|
3829
3930
|
n0,
|
|
3830
3931
|
_CDR,
|
|
3831
3932
|
0,
|
|
3832
|
-
[_PDI,
|
|
3933
|
+
[_PDI, _Sta, _IM, _CR, _E],
|
|
3833
3934
|
[
|
|
3834
3935
|
[0, 1],
|
|
3835
3936
|
[
|
|
3836
3937
|
2,
|
|
3837
3938
|
{
|
|
3838
|
-
[_hH]:
|
|
3939
|
+
[_hH]: _Sta,
|
|
3839
3940
|
},
|
|
3840
3941
|
],
|
|
3841
3942
|
[
|
|
@@ -3875,8 +3976,8 @@ var CreateAnycastIpListRequest = [
|
|
|
3875
3976
|
n0,
|
|
3876
3977
|
_CAILR,
|
|
3877
3978
|
0,
|
|
3878
|
-
[_N,
|
|
3879
|
-
[0, 1, [() => Tags, 0], 0],
|
|
3979
|
+
[_N, _ICp, _Ta, _IAT, _ICC],
|
|
3980
|
+
[0, 1, [() => Tags, 0], 0, [() => IpamCidrConfigList, 0]],
|
|
3880
3981
|
];
|
|
3881
3982
|
var CreateAnycastIpListResult = [
|
|
3882
3983
|
3,
|
|
@@ -3970,6 +4071,36 @@ var CreateCloudFrontOriginAccessIdentityResult = [
|
|
|
3970
4071
|
],
|
|
3971
4072
|
],
|
|
3972
4073
|
];
|
|
4074
|
+
var CreateConnectionFunctionRequest = [
|
|
4075
|
+
3,
|
|
4076
|
+
n0,
|
|
4077
|
+
_CCFR,
|
|
4078
|
+
0,
|
|
4079
|
+
[_N, _CFC, _CFCo, _Ta],
|
|
4080
|
+
[0, [() => FunctionConfig, 0], [() => FunctionBlob, 0], [() => Tags, 0]],
|
|
4081
|
+
];
|
|
4082
|
+
var CreateConnectionFunctionResult = [
|
|
4083
|
+
3,
|
|
4084
|
+
n0,
|
|
4085
|
+
_CCFRr,
|
|
4086
|
+
0,
|
|
4087
|
+
[_CFS, _L, _ET],
|
|
4088
|
+
[
|
|
4089
|
+
[() => ConnectionFunctionSummary, 16],
|
|
4090
|
+
[
|
|
4091
|
+
0,
|
|
4092
|
+
{
|
|
4093
|
+
[_hH]: _L,
|
|
4094
|
+
},
|
|
4095
|
+
],
|
|
4096
|
+
[
|
|
4097
|
+
0,
|
|
4098
|
+
{
|
|
4099
|
+
[_hH]: _ET,
|
|
4100
|
+
},
|
|
4101
|
+
],
|
|
4102
|
+
],
|
|
4103
|
+
];
|
|
3973
4104
|
var CreateConnectionGroupRequest = [
|
|
3974
4105
|
3,
|
|
3975
4106
|
n0,
|
|
@@ -4651,6 +4782,30 @@ var CreateStreamingDistributionWithTagsResult = [
|
|
|
4651
4782
|
],
|
|
4652
4783
|
],
|
|
4653
4784
|
];
|
|
4785
|
+
var CreateTrustStoreRequest = [
|
|
4786
|
+
3,
|
|
4787
|
+
n0,
|
|
4788
|
+
_CTSR,
|
|
4789
|
+
0,
|
|
4790
|
+
[_N, _CCBS, _Ta],
|
|
4791
|
+
[0, () => CaCertificatesBundleSource, [() => Tags, 0]],
|
|
4792
|
+
];
|
|
4793
|
+
var CreateTrustStoreResult = [
|
|
4794
|
+
3,
|
|
4795
|
+
n0,
|
|
4796
|
+
_CTSRr,
|
|
4797
|
+
0,
|
|
4798
|
+
[_TSr, _ET],
|
|
4799
|
+
[
|
|
4800
|
+
[() => TrustStore, 16],
|
|
4801
|
+
[
|
|
4802
|
+
0,
|
|
4803
|
+
{
|
|
4804
|
+
[_hH]: _ET,
|
|
4805
|
+
},
|
|
4806
|
+
],
|
|
4807
|
+
],
|
|
4808
|
+
];
|
|
4654
4809
|
var CreateVpcOriginRequest = [
|
|
4655
4810
|
3,
|
|
4656
4811
|
n0,
|
|
@@ -4786,6 +4941,22 @@ var DeleteCloudFrontOriginAccessIdentityRequest = [
|
|
|
4786
4941
|
],
|
|
4787
4942
|
],
|
|
4788
4943
|
];
|
|
4944
|
+
var DeleteConnectionFunctionRequest = [
|
|
4945
|
+
3,
|
|
4946
|
+
n0,
|
|
4947
|
+
_DCFR,
|
|
4948
|
+
0,
|
|
4949
|
+
[_Id, _IM],
|
|
4950
|
+
[
|
|
4951
|
+
[0, 1],
|
|
4952
|
+
[
|
|
4953
|
+
0,
|
|
4954
|
+
{
|
|
4955
|
+
[_hH]: _IM_,
|
|
4956
|
+
},
|
|
4957
|
+
],
|
|
4958
|
+
],
|
|
4959
|
+
];
|
|
4789
4960
|
var DeleteConnectionGroupRequest = [
|
|
4790
4961
|
3,
|
|
4791
4962
|
n0,
|
|
@@ -5014,6 +5185,22 @@ var DeleteStreamingDistributionRequest = [
|
|
|
5014
5185
|
],
|
|
5015
5186
|
],
|
|
5016
5187
|
];
|
|
5188
|
+
var DeleteTrustStoreRequest = [
|
|
5189
|
+
3,
|
|
5190
|
+
n0,
|
|
5191
|
+
_DTSR,
|
|
5192
|
+
0,
|
|
5193
|
+
[_Id, _IM],
|
|
5194
|
+
[
|
|
5195
|
+
[0, 1],
|
|
5196
|
+
[
|
|
5197
|
+
0,
|
|
5198
|
+
{
|
|
5199
|
+
[_hH]: _IM_,
|
|
5200
|
+
},
|
|
5201
|
+
],
|
|
5202
|
+
],
|
|
5203
|
+
];
|
|
5017
5204
|
var DeleteVpcOriginRequest = [
|
|
5018
5205
|
3,
|
|
5019
5206
|
n0,
|
|
@@ -5046,18 +5233,50 @@ var DeleteVpcOriginResult = [
|
|
|
5046
5233
|
],
|
|
5047
5234
|
],
|
|
5048
5235
|
];
|
|
5236
|
+
var DescribeConnectionFunctionRequest = [
|
|
5237
|
+
3,
|
|
5238
|
+
n0,
|
|
5239
|
+
_DCFRe,
|
|
5240
|
+
0,
|
|
5241
|
+
[_Ide, _St],
|
|
5242
|
+
[
|
|
5243
|
+
[0, 1],
|
|
5244
|
+
[
|
|
5245
|
+
0,
|
|
5246
|
+
{
|
|
5247
|
+
[_hQ]: _St,
|
|
5248
|
+
},
|
|
5249
|
+
],
|
|
5250
|
+
],
|
|
5251
|
+
];
|
|
5252
|
+
var DescribeConnectionFunctionResult = [
|
|
5253
|
+
3,
|
|
5254
|
+
n0,
|
|
5255
|
+
_DCFRes,
|
|
5256
|
+
0,
|
|
5257
|
+
[_CFS, _ET],
|
|
5258
|
+
[
|
|
5259
|
+
[() => ConnectionFunctionSummary, 16],
|
|
5260
|
+
[
|
|
5261
|
+
0,
|
|
5262
|
+
{
|
|
5263
|
+
[_hH]: _ET,
|
|
5264
|
+
},
|
|
5265
|
+
],
|
|
5266
|
+
],
|
|
5267
|
+
];
|
|
5049
5268
|
var DescribeFunctionRequest = [
|
|
5050
5269
|
3,
|
|
5051
5270
|
n0,
|
|
5052
5271
|
_DFRe,
|
|
5053
5272
|
0,
|
|
5054
|
-
[_N,
|
|
5273
|
+
[_N, _St],
|
|
5055
5274
|
[
|
|
5056
5275
|
[0, 1],
|
|
5057
5276
|
[
|
|
5058
5277
|
0,
|
|
5059
5278
|
{
|
|
5060
|
-
[_hQ]:
|
|
5279
|
+
[_hQ]: _St,
|
|
5061
5280
|
},
|
|
5062
5281
|
],
|
|
5063
5282
|
],
|
|
@@ -5209,15 +5428,17 @@ var DistributionConfig = [
|
|
|
5209
5428
|
_PC,
|
|
5210
5429
|
_E,
|
|
5211
5430
|
_VC,
|
|
5212
|
-
|
|
5431
|
+
_Re,
|
|
5213
5432
|
_WACLI,
|
|
5214
5433
|
_HV,
|
|
5215
5434
|
_IIPVE,
|
|
5216
5435
|
_CDPI,
|
|
5217
|
-
|
|
5436
|
+
_Sta,
|
|
5218
5437
|
_AILI,
|
|
5219
5438
|
_TCe,
|
|
5220
5439
|
_CMo,
|
|
5440
|
+
_VMC,
|
|
5441
|
+
_CFA,
|
|
5221
5442
|
],
|
|
5222
5443
|
[
|
|
5223
5444
|
0,
|
|
@@ -5242,6 +5463,8 @@ var DistributionConfig = [
|
|
|
5242
5463
|
0,
|
|
5243
5464
|
[() => TenantConfig, 0],
|
|
5244
5465
|
0,
|
|
5466
|
+
() => ViewerMtlsConfig,
|
|
5467
|
+
() => ConnectionFunctionAssociation,
|
|
5245
5468
|
],
|
|
5246
5469
|
];
|
|
5247
5470
|
var DistributionConfigWithTags = [
|
|
@@ -5315,14 +5538,16 @@ var DistributionSummary = [
|
|
|
5315
5538
|
_PC,
|
|
5316
5539
|
_E,
|
|
5317
5540
|
_VC,
|
|
5318
|
-
|
|
5541
|
+
_Re,
|
|
5319
5542
|
_WACLI,
|
|
5320
5543
|
_HV,
|
|
5321
5544
|
_IIPVE,
|
|
5322
5545
|
_AICPRl,
|
|
5323
|
-
|
|
5546
|
+
_Sta,
|
|
5324
5547
|
_CMo,
|
|
5325
5548
|
_AILI,
|
|
5549
|
+
_VMC,
|
|
5550
|
+
_CFA,
|
|
5326
5551
|
],
|
|
5327
5552
|
[
|
|
5328
5553
|
0,
|
|
@@ -5349,6 +5574,8 @@ var DistributionSummary = [
|
|
|
5349
5574
|
2,
|
|
5350
5575
|
0,
|
|
5351
5576
|
0,
|
|
5577
|
+
() => ViewerMtlsConfig,
|
|
5578
|
+
() => ConnectionFunctionAssociation,
|
|
5352
5579
|
],
|
|
5353
5580
|
];
|
|
5354
5581
|
var DistributionTenant = [
|
|
@@ -5368,7 +5595,7 @@ var DistributionTenantSummary = [
|
|
|
5368
5595
|
[_Id, _DI, _N, _Ar, _Do, _CGI, _Cu, _CTr, _LMT, _ET, _E, _S],
|
|
5369
5596
|
[0, 0, 0, 0, () => DomainResultList, 0, [() => Customizations, 0], 4, 4, 0, 2, 0],
|
|
5370
5597
|
];
|
|
5371
|
-
var DnsConfiguration = [3, n0, _DCn, 0, [_Dom, _S,
|
|
5598
|
+
var DnsConfiguration = [3, n0, _DCn, 0, [_Dom, _S, _Rea], [0, 0, 0]];
|
|
5372
5599
|
var DomainConflict = [3, n0, _DCo, 0, [_Dom, _RT, _RI, _AIc], [0, 0, 0, 0]];
|
|
5373
5600
|
var DomainItem = [3, n0, _DIo, 0, [_Dom], [0]];
|
|
5374
5601
|
var DomainResult = [3, n0, _DR, 0, [_Dom, _S], [0, 0]];
|
|
@@ -5612,7 +5839,7 @@ var FunctionList = [
|
|
|
5612
5839
|
[_NM, _MI, _Q, _I],
|
|
5613
5840
|
[0, 1, 1, [() => FunctionSummaryList, 0]],
|
|
5614
5841
|
];
|
|
5615
|
-
var FunctionMetadata = [3, n0, _FM, 0, [_FARN,
|
|
5842
|
+
var FunctionMetadata = [3, n0, _FM, 0, [_FARN, _St, _CTr, _LMT], [0, 0, 4, 4]];
|
|
5616
5843
|
var FunctionSizeLimitExceeded = [
|
|
5617
5844
|
-3,
|
|
5618
5845
|
n0,
|
|
@@ -5734,6 +5961,44 @@ var GetCloudFrontOriginAccessIdentityResult = [
|
|
|
5734
5961
|
],
|
|
5735
5962
|
],
|
|
5736
5963
|
];
|
|
5964
|
+
var GetConnectionFunctionRequest = [
|
|
5965
|
+
3,
|
|
5966
|
+
n0,
|
|
5967
|
+
_GCFR,
|
|
5968
|
+
0,
|
|
5969
|
+
[_Ide, _St],
|
|
5970
|
+
[
|
|
5971
|
+
[0, 1],
|
|
5972
|
+
[
|
|
5973
|
+
0,
|
|
5974
|
+
{
|
|
5975
|
+
[_hQ]: _St,
|
|
5976
|
+
},
|
|
5977
|
+
],
|
|
5978
|
+
],
|
|
5979
|
+
];
|
|
5980
|
+
var GetConnectionFunctionResult = [
|
|
5981
|
+
3,
|
|
5982
|
+
n0,
|
|
5983
|
+
_GCFRe,
|
|
5984
|
+
0,
|
|
5985
|
+
[_CFCo, _ET, _CTo],
|
|
5986
|
+
[
|
|
5987
|
+
[() => FunctionBlob, 16],
|
|
5988
|
+
[
|
|
5989
|
+
0,
|
|
5990
|
+
{
|
|
5991
|
+
[_hH]: _ET,
|
|
5992
|
+
},
|
|
5993
|
+
],
|
|
5994
|
+
[
|
|
5995
|
+
0,
|
|
5996
|
+
{
|
|
5997
|
+
[_hH]: _CT_,
|
|
5998
|
+
},
|
|
5999
|
+
],
|
|
6000
|
+
],
|
|
6001
|
+
];
|
|
5737
6002
|
var GetConnectionGroupByRoutingEndpointRequest = [
|
|
5738
6003
|
3,
|
|
5739
6004
|
n0,
|
|
@@ -5971,13 +6236,13 @@ var GetFunctionRequest = [
|
|
|
5971
6236
|
n0,
|
|
5972
6237
|
_GFR,
|
|
5973
6238
|
0,
|
|
5974
|
-
[_N,
|
|
6239
|
+
[_N, _St],
|
|
5975
6240
|
[
|
|
5976
6241
|
[0, 1],
|
|
5977
6242
|
[
|
|
5978
6243
|
0,
|
|
5979
6244
|
{
|
|
5980
|
-
[_hQ]:
|
|
6245
|
+
[_hQ]: _St,
|
|
5981
6246
|
},
|
|
5982
6247
|
],
|
|
5983
6248
|
],
|
|
@@ -6268,6 +6533,23 @@ var GetStreamingDistributionResult = [
|
|
|
6268
6533
|
],
|
|
6269
6534
|
],
|
|
6270
6535
|
];
|
|
6536
|
+
var GetTrustStoreRequest = [3, n0, _GTSR, 0, [_Ide], [[0, 1]]];
|
|
6537
|
+
var GetTrustStoreResult = [
|
|
6538
|
+
3,
|
|
6539
|
+
n0,
|
|
6540
|
+
_GTSRe,
|
|
6541
|
+
0,
|
|
6542
|
+
[_TSr, _ET],
|
|
6543
|
+
[
|
|
6544
|
+
[() => TrustStore, 16],
|
|
6545
|
+
[
|
|
6546
|
+
0,
|
|
6547
|
+
{
|
|
6548
|
+
[_hH]: _ET,
|
|
6549
|
+
},
|
|
6550
|
+
],
|
|
6551
|
+
],
|
|
6552
|
+
];
|
|
6271
6553
|
var GetVpcOriginRequest = [3, n0, _GVOR, 0, [_Id], [[0, 1]]];
|
|
6272
6554
|
var GetVpcOriginResult = [
|
|
6273
6555
|
3,
|
|
@@ -6690,6 +6972,8 @@ var InvalidWebACLId = [
|
|
|
6690
6972
|
[0],
|
|
6691
6973
|
];
|
|
6692
6974
|
schema.TypeRegistry.for(n0).registerError(InvalidWebACLId, InvalidWebACLId$1);
|
|
6975
|
+
var IpamCidrConfig = [3, n0, _ICCp, 0, [_Ci, _IPA, _AIn, _S], [0, 0, 0, 0]];
|
|
6976
|
+
var IpamConfig = [3, n0, _IC, 0, [_Q, _ICC], [1, [() => IpamCidrConfigList, 0]]];
|
|
6693
6977
|
var KeyGroup = [3, n0, _KG, 0, [_Id, _LMT, _KGC], [0, 4, [() => KeyGroupConfig, 0]]];
|
|
6694
6978
|
var KeyGroupAlreadyExists = [
|
|
6695
6979
|
-3,
|
|
@@ -6878,6 +7162,15 @@ var ListConflictingAliasesResult = [
|
|
|
6878
7162
|
[_CAL],
|
|
6879
7163
|
[[() => ConflictingAliasesList, 16]],
|
|
6880
7164
|
];
|
|
7165
|
+
var ListConnectionFunctionsRequest = [3, n0, _LCFR, 0, [_Ma, _MI, _St], [0, 1, 0]];
|
|
7166
|
+
var ListConnectionFunctionsResult = [
|
|
7167
|
+
3,
|
|
7168
|
+
n0,
|
|
7169
|
+
_LCFRi,
|
|
7170
|
+
0,
|
|
7171
|
+
[_NM, _CF],
|
|
7172
|
+
[0, [() => ConnectionFunctionSummaryList, 0]],
|
|
7173
|
+
];
|
|
6881
7174
|
var ListConnectionGroupsRequest = [
|
|
6882
7175
|
3,
|
|
6883
7176
|
n0,
|
|
@@ -6983,6 +7276,41 @@ var ListDistributionsByCachePolicyIdResult = [
|
|
|
6983
7276
|
[_DIL],
|
|
6984
7277
|
[[() => DistributionIdList, 16]],
|
|
6985
7278
|
];
|
|
7279
|
+
var ListDistributionsByConnectionFunctionRequest = [
|
|
7280
|
+
3,
|
|
7281
|
+
n0,
|
|
7282
|
+
_LDBCFR,
|
|
7283
|
+
0,
|
|
7284
|
+
[_Ma, _MI, _CFI],
|
|
7285
|
+
[
|
|
7286
|
+
[
|
|
7287
|
+
0,
|
|
7288
|
+
{
|
|
7289
|
+
[_hQ]: _Ma,
|
|
7290
|
+
},
|
|
7291
|
+
],
|
|
7292
|
+
[
|
|
7293
|
+
1,
|
|
7294
|
+
{
|
|
7295
|
+
[_hQ]: _MI,
|
|
7296
|
+
},
|
|
7297
|
+
],
|
|
7298
|
+
[
|
|
7299
|
+
0,
|
|
7300
|
+
{
|
|
7301
|
+
[_hQ]: _CFI,
|
|
7302
|
+
},
|
|
7303
|
+
],
|
|
7304
|
+
],
|
|
7305
|
+
];
|
|
7306
|
+
var ListDistributionsByConnectionFunctionResult = [
|
|
7307
|
+
3,
|
|
7308
|
+
n0,
|
|
7309
|
+
_LDBCFRi,
|
|
7310
|
+
0,
|
|
7311
|
+
[_DL],
|
|
7312
|
+
[[() => DistributionList, 16]],
|
|
7313
|
+
];
|
|
6986
7314
|
var ListDistributionsByConnectionModeRequest = [
|
|
6987
7315
|
3,
|
|
6988
7316
|
n0,
|
|
@@ -7149,6 +7477,41 @@ var ListDistributionsByResponseHeadersPolicyIdResult = [
|
|
|
7149
7477
|
[_DIL],
|
|
7150
7478
|
[[() => DistributionIdList, 16]],
|
|
7151
7479
|
];
|
|
7480
|
+
var ListDistributionsByTrustStoreRequest = [
|
|
7481
|
+
3,
|
|
7482
|
+
n0,
|
|
7483
|
+
_LDBTSR,
|
|
7484
|
+
0,
|
|
7485
|
+
[_TSI, _Ma, _MI],
|
|
7486
|
+
[
|
|
7487
|
+
[
|
|
7488
|
+
0,
|
|
7489
|
+
{
|
|
7490
|
+
[_hQ]: _TSI,
|
|
7491
|
+
},
|
|
7492
|
+
],
|
|
7493
|
+
[
|
|
7494
|
+
0,
|
|
7495
|
+
{
|
|
7496
|
+
[_hQ]: _Ma,
|
|
7497
|
+
},
|
|
7498
|
+
],
|
|
7499
|
+
[
|
|
7500
|
+
1,
|
|
7501
|
+
{
|
|
7502
|
+
[_hQ]: _MI,
|
|
7503
|
+
},
|
|
7504
|
+
],
|
|
7505
|
+
],
|
|
7506
|
+
];
|
|
7507
|
+
var ListDistributionsByTrustStoreResult = [
|
|
7508
|
+
3,
|
|
7509
|
+
n0,
|
|
7510
|
+
_LDBTSRi,
|
|
7511
|
+
0,
|
|
7512
|
+
[_DL],
|
|
7513
|
+
[[() => DistributionList, 16]],
|
|
7514
|
+
];
|
|
7152
7515
|
var ListDistributionsByVpcOriginIdRequest = [
|
|
7153
7516
|
3,
|
|
7154
7517
|
n0,
|
|
@@ -7342,7 +7705,7 @@ var ListFunctionsRequest = [
|
|
|
7342
7705
|
n0,
|
|
7343
7706
|
_LFR,
|
|
7344
7707
|
0,
|
|
7345
|
-
[_Ma, _MI,
|
|
7708
|
+
[_Ma, _MI, _St],
|
|
7346
7709
|
[
|
|
7347
7710
|
[
|
|
7348
7711
|
0,
|
|
@@ -7359,7 +7722,7 @@ var ListFunctionsRequest = [
|
|
|
7359
7722
|
[
|
|
7360
7723
|
0,
|
|
7361
7724
|
{
|
|
7362
|
-
[_hQ]:
|
|
7725
|
+
[_hQ]: _St,
|
|
7363
7726
|
},
|
|
7364
7727
|
],
|
|
7365
7728
|
],
|
|
@@ -7670,6 +8033,15 @@ var ListTagsForResourceRequest = [
|
|
|
7670
8033
|
],
|
|
7671
8034
|
];
|
|
7672
8035
|
var ListTagsForResourceResult = [3, n0, _LTFRRi, 0, [_Ta], [[() => Tags, 16]]];
|
|
8036
|
+
var ListTrustStoresRequest = [3, n0, _LTSR, 0, [_Ma, _MI], [0, 1]];
|
|
8037
|
+
var ListTrustStoresResult = [
|
|
8038
|
+
3,
|
|
8039
|
+
n0,
|
|
8040
|
+
_LTSRi,
|
|
8041
|
+
0,
|
|
8042
|
+
[_NM, _TSL],
|
|
8043
|
+
[0, [() => TrustStoreList, 0]],
|
|
8044
|
+
];
|
|
7673
8045
|
var ListVpcOriginsRequest = [
|
|
7674
8046
|
3,
|
|
7675
8047
|
n0,
|
|
@@ -8131,7 +8503,7 @@ var OriginRequestPolicySummary = [
|
|
|
8131
8503
|
var Origins = [3, n0, _O, 0, [_Q, _I], [1, [() => OriginList, 0]]];
|
|
8132
8504
|
var OriginShield = [3, n0, _OS, 0, [_E, _OSR], [2, 0]];
|
|
8133
8505
|
var OriginSslProtocols = [3, n0, _OSP, 0, [_Q, _I], [1, [() => SslProtocolsList, 0]]];
|
|
8134
|
-
var Parameter = [3, n0, _Par, 0, [_N,
|
|
8506
|
+
var Parameter = [3, n0, _Par, 0, [_N, _Va], [0, 0]];
|
|
8135
8507
|
var ParameterDefinition = [
|
|
8136
8508
|
3,
|
|
8137
8509
|
n0,
|
|
@@ -8203,12 +8575,12 @@ var PublicKeyList = [
|
|
|
8203
8575
|
[0, 1, 1, [() => PublicKeySummaryList, 0]],
|
|
8204
8576
|
];
|
|
8205
8577
|
var PublicKeySummary = [3, n0, _PKS, 0, [_Id, _N, _CTr, _EK, _Co], [0, 0, 4, 0, 0]];
|
|
8206
|
-
var
|
|
8578
|
+
var PublishConnectionFunctionRequest = [
|
|
8207
8579
|
3,
|
|
8208
8580
|
n0,
|
|
8209
|
-
|
|
8581
|
+
_PCFR,
|
|
8210
8582
|
0,
|
|
8211
|
-
[
|
|
8583
|
+
[_Id, _IM],
|
|
8212
8584
|
[
|
|
8213
8585
|
[0, 1],
|
|
8214
8586
|
[
|
|
@@ -8219,20 +8591,44 @@ var PublishFunctionRequest = [
|
|
|
8219
8591
|
],
|
|
8220
8592
|
],
|
|
8221
8593
|
];
|
|
8222
|
-
var
|
|
8223
|
-
var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _PD], [0, 0]];
|
|
8224
|
-
var PutResourcePolicyResult = [3, n0, _PRPRu, 0, [_RA], [0]];
|
|
8225
|
-
var QueryArgProfile = [3, n0, _QAP, 0, [_QA, _PI], [0, 0]];
|
|
8226
|
-
var QueryArgProfileConfig = [
|
|
8594
|
+
var PublishConnectionFunctionResult = [
|
|
8227
8595
|
3,
|
|
8228
8596
|
n0,
|
|
8229
|
-
|
|
8597
|
+
_PCFRu,
|
|
8230
8598
|
0,
|
|
8231
|
-
[
|
|
8232
|
-
[
|
|
8599
|
+
[_CFS],
|
|
8600
|
+
[[() => ConnectionFunctionSummary, 16]],
|
|
8233
8601
|
];
|
|
8234
|
-
var
|
|
8235
|
-
|
|
8602
|
+
var PublishFunctionRequest = [
|
|
8603
|
+
3,
|
|
8604
|
+
n0,
|
|
8605
|
+
_PFR,
|
|
8606
|
+
0,
|
|
8607
|
+
[_N, _IM],
|
|
8608
|
+
[
|
|
8609
|
+
[0, 1],
|
|
8610
|
+
[
|
|
8611
|
+
0,
|
|
8612
|
+
{
|
|
8613
|
+
[_hH]: _IM_,
|
|
8614
|
+
},
|
|
8615
|
+
],
|
|
8616
|
+
],
|
|
8617
|
+
];
|
|
8618
|
+
var PublishFunctionResult = [3, n0, _PFRu, 0, [_FS], [[() => FunctionSummary, 16]]];
|
|
8619
|
+
var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _PD], [0, 0]];
|
|
8620
|
+
var PutResourcePolicyResult = [3, n0, _PRPRu, 0, [_RA], [0]];
|
|
8621
|
+
var QueryArgProfile = [3, n0, _QAP, 0, [_QA, _PI], [0, 0]];
|
|
8622
|
+
var QueryArgProfileConfig = [
|
|
8623
|
+
3,
|
|
8624
|
+
n0,
|
|
8625
|
+
_QAPC,
|
|
8626
|
+
0,
|
|
8627
|
+
[_FWQAPIU, _QAPu],
|
|
8628
|
+
[2, [() => QueryArgProfiles, 0]],
|
|
8629
|
+
];
|
|
8630
|
+
var QueryArgProfileEmpty = [
|
|
8631
|
+
-3,
|
|
8236
8632
|
n0,
|
|
8237
8633
|
_QAPE,
|
|
8238
8634
|
{
|
|
@@ -8416,7 +8812,7 @@ var ResponseHeadersPolicyCorsConfig = [
|
|
|
8416
8812
|
2,
|
|
8417
8813
|
],
|
|
8418
8814
|
];
|
|
8419
|
-
var ResponseHeadersPolicyCustomHeader = [3, n0, _RHPCH, 0, [_He,
|
|
8815
|
+
var ResponseHeadersPolicyCustomHeader = [3, n0, _RHPCH, 0, [_He, _Va, _Ov], [0, 0, 2]];
|
|
8420
8816
|
var ResponseHeadersPolicyCustomHeadersConfig = [
|
|
8421
8817
|
3,
|
|
8422
8818
|
n0,
|
|
@@ -8503,7 +8899,7 @@ var ResponseHeadersPolicyXSSProtection = [
|
|
|
8503
8899
|
[_Ov, _Pro, _MBo, _RU],
|
|
8504
8900
|
[2, 2, 2, 0],
|
|
8505
8901
|
];
|
|
8506
|
-
var Restrictions = [3, n0,
|
|
8902
|
+
var Restrictions = [3, n0, _Re, 0, [_GRe], [[() => GeoRestriction, 0]]];
|
|
8507
8903
|
var S3Origin = [3, n0, _SO, 0, [_DN, _OAIr], [0, 0]];
|
|
8508
8904
|
var S3OriginConfig = [3, n0, _SOC, 0, [_OAIr, _ORT], [0, 1]];
|
|
8509
8905
|
var SessionStickinessConfig = [3, n0, _SSC, 0, [_ITTL, _MTTLax], [1, 1]];
|
|
@@ -8605,7 +9001,7 @@ var StringSchemaConfig = [
|
|
|
8605
9001
|
[_Co, _DV, _Req],
|
|
8606
9002
|
[[() => sensitiveStringType, 0], 0, 2],
|
|
8607
9003
|
];
|
|
8608
|
-
var Tag = [3, n0, _Tag, 0, [_K,
|
|
9004
|
+
var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
|
|
8609
9005
|
var TagKeys = [3, n0, _TK, 0, [_I], [[() => TagKeyList, 0]]];
|
|
8610
9006
|
var TagResourceRequest = [
|
|
8611
9007
|
3,
|
|
@@ -8631,6 +9027,32 @@ var TagResourceRequest = [
|
|
|
8631
9027
|
];
|
|
8632
9028
|
var Tags = [3, n0, _Ta, 0, [_I], [[() => TagList, 0]]];
|
|
8633
9029
|
var TenantConfig = [3, n0, _TCe, 0, [_PDar], [[() => ParameterDefinitions, 0]]];
|
|
9030
|
+
var TestConnectionFunctionRequest = [
|
|
9031
|
+
3,
|
|
9032
|
+
n0,
|
|
9033
|
+
_TCFR,
|
|
9034
|
+
0,
|
|
9035
|
+
[_Id, _IM, _St, _CO],
|
|
9036
|
+
[
|
|
9037
|
+
[0, 1],
|
|
9038
|
+
[
|
|
9039
|
+
0,
|
|
9040
|
+
{
|
|
9041
|
+
[_hH]: _IM_,
|
|
9042
|
+
},
|
|
9043
|
+
],
|
|
9044
|
+
0,
|
|
9045
|
+
[() => FunctionEventObject, 0],
|
|
9046
|
+
],
|
|
9047
|
+
];
|
|
9048
|
+
var TestConnectionFunctionResult = [
|
|
9049
|
+
3,
|
|
9050
|
+
n0,
|
|
9051
|
+
_TCFRe,
|
|
9052
|
+
0,
|
|
9053
|
+
[_CFTR],
|
|
9054
|
+
[[() => ConnectionFunctionTestResult, 16]],
|
|
9055
|
+
];
|
|
8634
9056
|
var TestFunctionFailed = [
|
|
8635
9057
|
-3,
|
|
8636
9058
|
n0,
|
|
@@ -8648,7 +9070,7 @@ var TestFunctionRequest = [
|
|
|
8648
9070
|
n0,
|
|
8649
9071
|
_TFR,
|
|
8650
9072
|
0,
|
|
8651
|
-
[_N, _IM,
|
|
9073
|
+
[_N, _IM, _St, _EO],
|
|
8652
9074
|
[
|
|
8653
9075
|
[0, 1],
|
|
8654
9076
|
[
|
|
@@ -9348,6 +9770,23 @@ var TrustedSigners = [
|
|
|
9348
9770
|
[_E, _Q, _I],
|
|
9349
9771
|
[2, 1, [() => AwsAccountNumberList, 0]],
|
|
9350
9772
|
];
|
|
9773
|
+
var TrustStore = [
|
|
9774
|
+
3,
|
|
9775
|
+
n0,
|
|
9776
|
+
_TSr,
|
|
9777
|
+
0,
|
|
9778
|
+
[_Id, _Ar, _N, _S, _NOCC, _LMT, _Rea],
|
|
9779
|
+
[0, 0, 0, 0, 1, 4, 0],
|
|
9780
|
+
];
|
|
9781
|
+
var TrustStoreConfig = [3, n0, _TSC, 0, [_TSIr, _ATSCN, _ICE], [0, 2, 2]];
|
|
9782
|
+
var TrustStoreSummary = [
|
|
9783
|
+
3,
|
|
9784
|
+
n0,
|
|
9785
|
+
_TSS,
|
|
9786
|
+
0,
|
|
9787
|
+
[_Id, _Ar, _N, _S, _NOCC, _LMT, _Rea, _ET],
|
|
9788
|
+
[0, 0, 0, 0, 1, 4, 0, 0],
|
|
9789
|
+
];
|
|
9351
9790
|
var UnsupportedOperation = [
|
|
9352
9791
|
-3,
|
|
9353
9792
|
n0,
|
|
@@ -9493,6 +9932,40 @@ var UpdateCloudFrontOriginAccessIdentityResult = [
|
|
|
9493
9932
|
],
|
|
9494
9933
|
],
|
|
9495
9934
|
];
|
|
9935
|
+
var UpdateConnectionFunctionRequest = [
|
|
9936
|
+
3,
|
|
9937
|
+
n0,
|
|
9938
|
+
_UCFR,
|
|
9939
|
+
0,
|
|
9940
|
+
[_Id, _IM, _CFC, _CFCo],
|
|
9941
|
+
[
|
|
9942
|
+
[0, 1],
|
|
9943
|
+
[
|
|
9944
|
+
0,
|
|
9945
|
+
{
|
|
9946
|
+
[_hH]: _IM_,
|
|
9947
|
+
},
|
|
9948
|
+
],
|
|
9949
|
+
[() => FunctionConfig, 0],
|
|
9950
|
+
[() => FunctionBlob, 0],
|
|
9951
|
+
],
|
|
9952
|
+
];
|
|
9953
|
+
var UpdateConnectionFunctionResult = [
|
|
9954
|
+
3,
|
|
9955
|
+
n0,
|
|
9956
|
+
_UCFRp,
|
|
9957
|
+
0,
|
|
9958
|
+
[_CFS, _ET],
|
|
9959
|
+
[
|
|
9960
|
+
[() => ConnectionFunctionSummary, 16],
|
|
9961
|
+
[
|
|
9962
|
+
0,
|
|
9963
|
+
{
|
|
9964
|
+
[_hH]: _ET,
|
|
9965
|
+
},
|
|
9966
|
+
],
|
|
9967
|
+
],
|
|
9968
|
+
];
|
|
9496
9969
|
var UpdateConnectionGroupRequest = [
|
|
9497
9970
|
3,
|
|
9498
9971
|
n0,
|
|
@@ -10112,6 +10585,39 @@ var UpdateStreamingDistributionResult = [
|
|
|
10112
10585
|
],
|
|
10113
10586
|
],
|
|
10114
10587
|
];
|
|
10588
|
+
var UpdateTrustStoreRequest = [
|
|
10589
|
+
3,
|
|
10590
|
+
n0,
|
|
10591
|
+
_UTSR,
|
|
10592
|
+
0,
|
|
10593
|
+
[_Id, _CCBS, _IM],
|
|
10594
|
+
[
|
|
10595
|
+
[0, 1],
|
|
10596
|
+
[() => CaCertificatesBundleSource, 16],
|
|
10597
|
+
[
|
|
10598
|
+
0,
|
|
10599
|
+
{
|
|
10600
|
+
[_hH]: _IM_,
|
|
10601
|
+
},
|
|
10602
|
+
],
|
|
10603
|
+
],
|
|
10604
|
+
];
|
|
10605
|
+
var UpdateTrustStoreResult = [
|
|
10606
|
+
3,
|
|
10607
|
+
n0,
|
|
10608
|
+
_UTSRp,
|
|
10609
|
+
0,
|
|
10610
|
+
[_TSr, _ET],
|
|
10611
|
+
[
|
|
10612
|
+
[() => TrustStore, 16],
|
|
10613
|
+
[
|
|
10614
|
+
0,
|
|
10615
|
+
{
|
|
10616
|
+
[_hH]: _ET,
|
|
10617
|
+
},
|
|
10618
|
+
],
|
|
10619
|
+
],
|
|
10620
|
+
];
|
|
10115
10621
|
var UpdateVpcOriginRequest = [
|
|
10116
10622
|
3,
|
|
10117
10623
|
n0,
|
|
@@ -10169,6 +10675,7 @@ var ViewerCertificate = [
|
|
|
10169
10675
|
[_CFDC, _IAMCI, _ACMCA, _SSLSM, _MPV, _Ce, _CSe],
|
|
10170
10676
|
[2, 0, 0, 0, 0, 0, 0],
|
|
10171
10677
|
];
|
|
10678
|
+
var ViewerMtlsConfig = [3, n0, _VMC, 0, [_Mo, _TSC], [0, () => TrustStoreConfig]];
|
|
10172
10679
|
var VpcOrigin = [
|
|
10173
10680
|
3,
|
|
10174
10681
|
n0,
|
|
@@ -10362,6 +10869,18 @@ var ConflictingAliases = [
|
|
|
10362
10869
|
},
|
|
10363
10870
|
],
|
|
10364
10871
|
];
|
|
10872
|
+
var ConnectionFunctionSummaryList = [
|
|
10873
|
+
1,
|
|
10874
|
+
n0,
|
|
10875
|
+
_CFSL,
|
|
10876
|
+
0,
|
|
10877
|
+
[
|
|
10878
|
+
() => ConnectionFunctionSummary,
|
|
10879
|
+
{
|
|
10880
|
+
[_xN]: _CFS,
|
|
10881
|
+
},
|
|
10882
|
+
],
|
|
10883
|
+
];
|
|
10365
10884
|
var ConnectionGroupSummaryList = [
|
|
10366
10885
|
1,
|
|
10367
10886
|
n0,
|
|
@@ -10606,6 +11125,18 @@ var InvalidationSummaryList = [
|
|
|
10606
11125
|
},
|
|
10607
11126
|
],
|
|
10608
11127
|
];
|
|
11128
|
+
var IpamCidrConfigList = [
|
|
11129
|
+
1,
|
|
11130
|
+
n0,
|
|
11131
|
+
_ICCL,
|
|
11132
|
+
0,
|
|
11133
|
+
[
|
|
11134
|
+
() => IpamCidrConfig,
|
|
11135
|
+
{
|
|
11136
|
+
[_xN]: _ICCp,
|
|
11137
|
+
},
|
|
11138
|
+
],
|
|
11139
|
+
];
|
|
10609
11140
|
var KeyGroupSummaryList = [
|
|
10610
11141
|
1,
|
|
10611
11142
|
n0,
|
|
@@ -10981,6 +11512,18 @@ var TrustedKeyGroupIdList = [
|
|
|
10981
11512
|
},
|
|
10982
11513
|
],
|
|
10983
11514
|
];
|
|
11515
|
+
var TrustStoreList = [
|
|
11516
|
+
1,
|
|
11517
|
+
n0,
|
|
11518
|
+
_TSL,
|
|
11519
|
+
0,
|
|
11520
|
+
[
|
|
11521
|
+
() => TrustStoreSummary,
|
|
11522
|
+
{
|
|
11523
|
+
[_xN]: _TSS,
|
|
11524
|
+
},
|
|
11525
|
+
],
|
|
11526
|
+
];
|
|
10984
11527
|
var ValidationTokenDetailList = [1, n0, _VTDL, 0, () => ValidationTokenDetail];
|
|
10985
11528
|
var VpcOriginSummaryList = [
|
|
10986
11529
|
1,
|
|
@@ -10994,6 +11537,14 @@ var VpcOriginSummaryList = [
|
|
|
10994
11537
|
},
|
|
10995
11538
|
],
|
|
10996
11539
|
];
|
|
11540
|
+
var CaCertificatesBundleSource = [
|
|
11541
|
+
3,
|
|
11542
|
+
n0,
|
|
11543
|
+
_CCBS,
|
|
11544
|
+
0,
|
|
11545
|
+
[_CCBSL],
|
|
11546
|
+
[() => CaCertificatesBundleS3Location],
|
|
11547
|
+
];
|
|
10997
11548
|
var AssociateAlias = [
|
|
10998
11549
|
9,
|
|
10999
11550
|
n0,
|
|
@@ -11064,6 +11615,16 @@ var CreateCloudFrontOriginAccessIdentity = [
|
|
|
11064
11615
|
() => CreateCloudFrontOriginAccessIdentityRequest,
|
|
11065
11616
|
() => CreateCloudFrontOriginAccessIdentityResult,
|
|
11066
11617
|
];
|
|
11618
|
+
var CreateConnectionFunction = [
|
|
11619
|
+
9,
|
|
11620
|
+
n0,
|
|
11621
|
+
_CCF,
|
|
11622
|
+
{
|
|
11623
|
+
[_h]: ["POST", "/2020-05-31/connection-function", 201],
|
|
11624
|
+
},
|
|
11625
|
+
() => CreateConnectionFunctionRequest,
|
|
11626
|
+
() => CreateConnectionFunctionResult,
|
|
11627
|
+
];
|
|
11067
11628
|
var CreateConnectionGroup = [
|
|
11068
11629
|
9,
|
|
11069
11630
|
n0,
|
|
@@ -11137,7 +11698,7 @@ var CreateFieldLevelEncryptionProfile = [
|
|
|
11137
11698
|
var CreateFunction = [
|
|
11138
11699
|
9,
|
|
11139
11700
|
n0,
|
|
11140
|
-
|
|
11701
|
+
_CFr,
|
|
11141
11702
|
{
|
|
11142
11703
|
[_h]: ["POST", "/2020-05-31/function", 201],
|
|
11143
11704
|
},
|
|
@@ -11264,6 +11825,16 @@ var CreateStreamingDistributionWithTags = [
|
|
|
11264
11825
|
() => CreateStreamingDistributionWithTagsRequest,
|
|
11265
11826
|
() => CreateStreamingDistributionWithTagsResult,
|
|
11266
11827
|
];
|
|
11828
|
+
var CreateTrustStore = [
|
|
11829
|
+
9,
|
|
11830
|
+
n0,
|
|
11831
|
+
_CTS,
|
|
11832
|
+
{
|
|
11833
|
+
[_h]: ["POST", "/2020-05-31/trust-store", 201],
|
|
11834
|
+
},
|
|
11835
|
+
() => CreateTrustStoreRequest,
|
|
11836
|
+
() => CreateTrustStoreResult,
|
|
11837
|
+
];
|
|
11267
11838
|
var CreateVpcOrigin = [
|
|
11268
11839
|
9,
|
|
11269
11840
|
n0,
|
|
@@ -11304,6 +11875,16 @@ var DeleteCloudFrontOriginAccessIdentity = [
|
|
|
11304
11875
|
() => DeleteCloudFrontOriginAccessIdentityRequest,
|
|
11305
11876
|
() => __Unit,
|
|
11306
11877
|
];
|
|
11878
|
+
var DeleteConnectionFunction = [
|
|
11879
|
+
9,
|
|
11880
|
+
n0,
|
|
11881
|
+
_DCF,
|
|
11882
|
+
{
|
|
11883
|
+
[_h]: ["DELETE", "/2020-05-31/connection-function/{Id}", 204],
|
|
11884
|
+
},
|
|
11885
|
+
() => DeleteConnectionFunctionRequest,
|
|
11886
|
+
() => __Unit,
|
|
11887
|
+
];
|
|
11307
11888
|
var DeleteConnectionGroup = [
|
|
11308
11889
|
9,
|
|
11309
11890
|
n0,
|
|
@@ -11474,6 +12055,16 @@ var DeleteStreamingDistribution = [
|
|
|
11474
12055
|
() => DeleteStreamingDistributionRequest,
|
|
11475
12056
|
() => __Unit,
|
|
11476
12057
|
];
|
|
12058
|
+
var DeleteTrustStore = [
|
|
12059
|
+
9,
|
|
12060
|
+
n0,
|
|
12061
|
+
_DTSe,
|
|
12062
|
+
{
|
|
12063
|
+
[_h]: ["DELETE", "/2020-05-31/trust-store/{Id}", 204],
|
|
12064
|
+
},
|
|
12065
|
+
() => DeleteTrustStoreRequest,
|
|
12066
|
+
() => __Unit,
|
|
12067
|
+
];
|
|
11477
12068
|
var DeleteVpcOrigin = [
|
|
11478
12069
|
9,
|
|
11479
12070
|
n0,
|
|
@@ -11484,6 +12075,16 @@ var DeleteVpcOrigin = [
|
|
|
11484
12075
|
() => DeleteVpcOriginRequest,
|
|
11485
12076
|
() => DeleteVpcOriginResult,
|
|
11486
12077
|
];
|
|
12078
|
+
var DescribeConnectionFunction = [
|
|
12079
|
+
9,
|
|
12080
|
+
n0,
|
|
12081
|
+
_DCFe,
|
|
12082
|
+
{
|
|
12083
|
+
[_h]: ["GET", "/2020-05-31/connection-function/{Identifier}/describe", 200],
|
|
12084
|
+
},
|
|
12085
|
+
() => DescribeConnectionFunctionRequest,
|
|
12086
|
+
() => DescribeConnectionFunctionResult,
|
|
12087
|
+
];
|
|
11487
12088
|
var DescribeFunction = [
|
|
11488
12089
|
9,
|
|
11489
12090
|
n0,
|
|
@@ -11574,6 +12175,16 @@ var GetCloudFrontOriginAccessIdentityConfig = [
|
|
|
11574
12175
|
() => GetCloudFrontOriginAccessIdentityConfigRequest,
|
|
11575
12176
|
() => GetCloudFrontOriginAccessIdentityConfigResult,
|
|
11576
12177
|
];
|
|
12178
|
+
var GetConnectionFunction = [
|
|
12179
|
+
9,
|
|
12180
|
+
n0,
|
|
12181
|
+
_GCF,
|
|
12182
|
+
{
|
|
12183
|
+
[_h]: ["GET", "/2020-05-31/connection-function/{Identifier}", 200],
|
|
12184
|
+
},
|
|
12185
|
+
() => GetConnectionFunctionRequest,
|
|
12186
|
+
() => GetConnectionFunctionResult,
|
|
12187
|
+
];
|
|
11577
12188
|
var GetConnectionGroup = [
|
|
11578
12189
|
9,
|
|
11579
12190
|
n0,
|
|
@@ -11884,6 +12495,16 @@ var GetStreamingDistributionConfig = [
|
|
|
11884
12495
|
() => GetStreamingDistributionConfigRequest,
|
|
11885
12496
|
() => GetStreamingDistributionConfigResult,
|
|
11886
12497
|
];
|
|
12498
|
+
var GetTrustStore = [
|
|
12499
|
+
9,
|
|
12500
|
+
n0,
|
|
12501
|
+
_GTS,
|
|
12502
|
+
{
|
|
12503
|
+
[_h]: ["GET", "/2020-05-31/trust-store/{Identifier}", 200],
|
|
12504
|
+
},
|
|
12505
|
+
() => GetTrustStoreRequest,
|
|
12506
|
+
() => GetTrustStoreResult,
|
|
12507
|
+
];
|
|
11887
12508
|
var GetVpcOrigin = [
|
|
11888
12509
|
9,
|
|
11889
12510
|
n0,
|
|
@@ -11934,6 +12555,16 @@ var ListConflictingAliases = [
|
|
|
11934
12555
|
() => ListConflictingAliasesRequest,
|
|
11935
12556
|
() => ListConflictingAliasesResult,
|
|
11936
12557
|
];
|
|
12558
|
+
var ListConnectionFunctions = [
|
|
12559
|
+
9,
|
|
12560
|
+
n0,
|
|
12561
|
+
_LCF,
|
|
12562
|
+
{
|
|
12563
|
+
[_h]: ["POST", "/2020-05-31/connection-functions", 200],
|
|
12564
|
+
},
|
|
12565
|
+
() => ListConnectionFunctionsRequest,
|
|
12566
|
+
() => ListConnectionFunctionsResult,
|
|
12567
|
+
];
|
|
11937
12568
|
var ListConnectionGroups = [
|
|
11938
12569
|
9,
|
|
11939
12570
|
n0,
|
|
@@ -11984,6 +12615,16 @@ var ListDistributionsByCachePolicyId = [
|
|
|
11984
12615
|
() => ListDistributionsByCachePolicyIdRequest,
|
|
11985
12616
|
() => ListDistributionsByCachePolicyIdResult,
|
|
11986
12617
|
];
|
|
12618
|
+
var ListDistributionsByConnectionFunction = [
|
|
12619
|
+
9,
|
|
12620
|
+
n0,
|
|
12621
|
+
_LDBCF,
|
|
12622
|
+
{
|
|
12623
|
+
[_h]: ["GET", "/2020-05-31/distributionsByConnectionFunction", 200],
|
|
12624
|
+
},
|
|
12625
|
+
() => ListDistributionsByConnectionFunctionRequest,
|
|
12626
|
+
() => ListDistributionsByConnectionFunctionResult,
|
|
12627
|
+
];
|
|
11987
12628
|
var ListDistributionsByConnectionMode = [
|
|
11988
12629
|
9,
|
|
11989
12630
|
n0,
|
|
@@ -12044,6 +12685,16 @@ var ListDistributionsByResponseHeadersPolicyId = [
|
|
|
12044
12685
|
() => ListDistributionsByResponseHeadersPolicyIdRequest,
|
|
12045
12686
|
() => ListDistributionsByResponseHeadersPolicyIdResult,
|
|
12046
12687
|
];
|
|
12688
|
+
var ListDistributionsByTrustStore = [
|
|
12689
|
+
9,
|
|
12690
|
+
n0,
|
|
12691
|
+
_LDBTS,
|
|
12692
|
+
{
|
|
12693
|
+
[_h]: ["GET", "/2020-05-31/distributionsByTrustStore", 200],
|
|
12694
|
+
},
|
|
12695
|
+
() => ListDistributionsByTrustStoreRequest,
|
|
12696
|
+
() => ListDistributionsByTrustStoreResult,
|
|
12697
|
+
];
|
|
12047
12698
|
var ListDistributionsByVpcOriginId = [
|
|
12048
12699
|
9,
|
|
12049
12700
|
n0,
|
|
@@ -12234,6 +12885,16 @@ var ListTagsForResource = [
|
|
|
12234
12885
|
() => ListTagsForResourceRequest,
|
|
12235
12886
|
() => ListTagsForResourceResult,
|
|
12236
12887
|
];
|
|
12888
|
+
var ListTrustStores = [
|
|
12889
|
+
9,
|
|
12890
|
+
n0,
|
|
12891
|
+
_LTS,
|
|
12892
|
+
{
|
|
12893
|
+
[_h]: ["POST", "/2020-05-31/trust-stores", 200],
|
|
12894
|
+
},
|
|
12895
|
+
() => ListTrustStoresRequest,
|
|
12896
|
+
() => ListTrustStoresResult,
|
|
12897
|
+
];
|
|
12237
12898
|
var ListVpcOrigins = [
|
|
12238
12899
|
9,
|
|
12239
12900
|
n0,
|
|
@@ -12244,6 +12905,16 @@ var ListVpcOrigins = [
|
|
|
12244
12905
|
() => ListVpcOriginsRequest,
|
|
12245
12906
|
() => ListVpcOriginsResult,
|
|
12246
12907
|
];
|
|
12908
|
+
var PublishConnectionFunction = [
|
|
12909
|
+
9,
|
|
12910
|
+
n0,
|
|
12911
|
+
_PCF,
|
|
12912
|
+
{
|
|
12913
|
+
[_h]: ["POST", "/2020-05-31/connection-function/{Id}/publish", 200],
|
|
12914
|
+
},
|
|
12915
|
+
() => PublishConnectionFunctionRequest,
|
|
12916
|
+
() => PublishConnectionFunctionResult,
|
|
12917
|
+
];
|
|
12247
12918
|
var PublishFunction = [
|
|
12248
12919
|
9,
|
|
12249
12920
|
n0,
|
|
@@ -12274,6 +12945,16 @@ var TagResource = [
|
|
|
12274
12945
|
() => TagResourceRequest,
|
|
12275
12946
|
() => __Unit,
|
|
12276
12947
|
];
|
|
12948
|
+
var TestConnectionFunction = [
|
|
12949
|
+
9,
|
|
12950
|
+
n0,
|
|
12951
|
+
_TCF,
|
|
12952
|
+
{
|
|
12953
|
+
[_h]: ["POST", "/2020-05-31/connection-function/{Id}/test", 200],
|
|
12954
|
+
},
|
|
12955
|
+
() => TestConnectionFunctionRequest,
|
|
12956
|
+
() => TestConnectionFunctionResult,
|
|
12957
|
+
];
|
|
12277
12958
|
var TestFunction = [
|
|
12278
12959
|
9,
|
|
12279
12960
|
n0,
|
|
@@ -12324,6 +13005,16 @@ var UpdateCloudFrontOriginAccessIdentity = [
|
|
|
12324
13005
|
() => UpdateCloudFrontOriginAccessIdentityRequest,
|
|
12325
13006
|
() => UpdateCloudFrontOriginAccessIdentityResult,
|
|
12326
13007
|
];
|
|
13008
|
+
var UpdateConnectionFunction = [
|
|
13009
|
+
9,
|
|
13010
|
+
n0,
|
|
13011
|
+
_UCF,
|
|
13012
|
+
{
|
|
13013
|
+
[_h]: ["PUT", "/2020-05-31/connection-function/{Id}", 200],
|
|
13014
|
+
},
|
|
13015
|
+
() => UpdateConnectionFunctionRequest,
|
|
13016
|
+
() => UpdateConnectionFunctionResult,
|
|
13017
|
+
];
|
|
12327
13018
|
var UpdateConnectionGroup = [
|
|
12328
13019
|
9,
|
|
12329
13020
|
n0,
|
|
@@ -12494,6 +13185,16 @@ var UpdateStreamingDistribution = [
|
|
|
12494
13185
|
() => UpdateStreamingDistributionRequest,
|
|
12495
13186
|
() => UpdateStreamingDistributionResult,
|
|
12496
13187
|
];
|
|
13188
|
+
var UpdateTrustStore = [
|
|
13189
|
+
9,
|
|
13190
|
+
n0,
|
|
13191
|
+
_UTS,
|
|
13192
|
+
{
|
|
13193
|
+
[_h]: ["PUT", "/2020-05-31/trust-store/{Id}", 200],
|
|
13194
|
+
},
|
|
13195
|
+
() => UpdateTrustStoreRequest,
|
|
13196
|
+
() => UpdateTrustStoreResult,
|
|
13197
|
+
];
|
|
12497
13198
|
var UpdateVpcOrigin = [
|
|
12498
13199
|
9,
|
|
12499
13200
|
n0,
|
|
@@ -12599,6 +13300,18 @@ class CreateCloudFrontOriginAccessIdentityCommand extends smithyClient.Command
|
|
|
12599
13300
|
.build() {
|
|
12600
13301
|
}
|
|
12601
13302
|
|
|
13303
|
+
class CreateConnectionFunctionCommand extends smithyClient.Command
|
|
13304
|
+
.classBuilder()
|
|
13305
|
+
.ep(commonParams)
|
|
13306
|
+
.m(function (Command, cs, config, o) {
|
|
13307
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13308
|
+
})
|
|
13309
|
+
.s("Cloudfront2020_05_31", "CreateConnectionFunction", {})
|
|
13310
|
+
.n("CloudFrontClient", "CreateConnectionFunctionCommand")
|
|
13311
|
+
.sc(CreateConnectionFunction)
|
|
13312
|
+
.build() {
|
|
13313
|
+
}
|
|
13314
|
+
|
|
12602
13315
|
class CreateConnectionGroupCommand extends smithyClient.Command
|
|
12603
13316
|
.classBuilder()
|
|
12604
13317
|
.ep(commonParams)
|
|
@@ -12839,6 +13552,18 @@ class CreateStreamingDistributionWithTagsCommand extends smithyClient.Command
|
|
|
12839
13552
|
.build() {
|
|
12840
13553
|
}
|
|
12841
13554
|
|
|
13555
|
+
class CreateTrustStoreCommand extends smithyClient.Command
|
|
13556
|
+
.classBuilder()
|
|
13557
|
+
.ep(commonParams)
|
|
13558
|
+
.m(function (Command, cs, config, o) {
|
|
13559
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13560
|
+
})
|
|
13561
|
+
.s("Cloudfront2020_05_31", "CreateTrustStore", {})
|
|
13562
|
+
.n("CloudFrontClient", "CreateTrustStoreCommand")
|
|
13563
|
+
.sc(CreateTrustStore)
|
|
13564
|
+
.build() {
|
|
13565
|
+
}
|
|
13566
|
+
|
|
12842
13567
|
class CreateVpcOriginCommand extends smithyClient.Command
|
|
12843
13568
|
.classBuilder()
|
|
12844
13569
|
.ep(commonParams)
|
|
@@ -12887,6 +13612,18 @@ class DeleteCloudFrontOriginAccessIdentityCommand extends smithyClient.Command
|
|
|
12887
13612
|
.build() {
|
|
12888
13613
|
}
|
|
12889
13614
|
|
|
13615
|
+
class DeleteConnectionFunctionCommand extends smithyClient.Command
|
|
13616
|
+
.classBuilder()
|
|
13617
|
+
.ep(commonParams)
|
|
13618
|
+
.m(function (Command, cs, config, o) {
|
|
13619
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13620
|
+
})
|
|
13621
|
+
.s("Cloudfront2020_05_31", "DeleteConnectionFunction", {})
|
|
13622
|
+
.n("CloudFrontClient", "DeleteConnectionFunctionCommand")
|
|
13623
|
+
.sc(DeleteConnectionFunction)
|
|
13624
|
+
.build() {
|
|
13625
|
+
}
|
|
13626
|
+
|
|
12890
13627
|
class DeleteConnectionGroupCommand extends smithyClient.Command
|
|
12891
13628
|
.classBuilder()
|
|
12892
13629
|
.ep(commonParams)
|
|
@@ -13091,6 +13828,18 @@ class DeleteStreamingDistributionCommand extends smithyClient.Command
|
|
|
13091
13828
|
.build() {
|
|
13092
13829
|
}
|
|
13093
13830
|
|
|
13831
|
+
class DeleteTrustStoreCommand extends smithyClient.Command
|
|
13832
|
+
.classBuilder()
|
|
13833
|
+
.ep(commonParams)
|
|
13834
|
+
.m(function (Command, cs, config, o) {
|
|
13835
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13836
|
+
})
|
|
13837
|
+
.s("Cloudfront2020_05_31", "DeleteTrustStore", {})
|
|
13838
|
+
.n("CloudFrontClient", "DeleteTrustStoreCommand")
|
|
13839
|
+
.sc(DeleteTrustStore)
|
|
13840
|
+
.build() {
|
|
13841
|
+
}
|
|
13842
|
+
|
|
13094
13843
|
class DeleteVpcOriginCommand extends smithyClient.Command
|
|
13095
13844
|
.classBuilder()
|
|
13096
13845
|
.ep(commonParams)
|
|
@@ -13103,6 +13852,18 @@ class DeleteVpcOriginCommand extends smithyClient.Command
|
|
|
13103
13852
|
.build() {
|
|
13104
13853
|
}
|
|
13105
13854
|
|
|
13855
|
+
class DescribeConnectionFunctionCommand extends smithyClient.Command
|
|
13856
|
+
.classBuilder()
|
|
13857
|
+
.ep(commonParams)
|
|
13858
|
+
.m(function (Command, cs, config, o) {
|
|
13859
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13860
|
+
})
|
|
13861
|
+
.s("Cloudfront2020_05_31", "DescribeConnectionFunction", {})
|
|
13862
|
+
.n("CloudFrontClient", "DescribeConnectionFunctionCommand")
|
|
13863
|
+
.sc(DescribeConnectionFunction)
|
|
13864
|
+
.build() {
|
|
13865
|
+
}
|
|
13866
|
+
|
|
13106
13867
|
class DescribeFunctionCommand extends smithyClient.Command
|
|
13107
13868
|
.classBuilder()
|
|
13108
13869
|
.ep(commonParams)
|
|
@@ -13211,6 +13972,18 @@ class GetCloudFrontOriginAccessIdentityConfigCommand extends smithyClient.Comman
|
|
|
13211
13972
|
.build() {
|
|
13212
13973
|
}
|
|
13213
13974
|
|
|
13975
|
+
class GetConnectionFunctionCommand extends smithyClient.Command
|
|
13976
|
+
.classBuilder()
|
|
13977
|
+
.ep(commonParams)
|
|
13978
|
+
.m(function (Command, cs, config, o) {
|
|
13979
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
13980
|
+
})
|
|
13981
|
+
.s("Cloudfront2020_05_31", "GetConnectionFunction", {})
|
|
13982
|
+
.n("CloudFrontClient", "GetConnectionFunctionCommand")
|
|
13983
|
+
.sc(GetConnectionFunction)
|
|
13984
|
+
.build() {
|
|
13985
|
+
}
|
|
13986
|
+
|
|
13214
13987
|
class GetConnectionGroupByRoutingEndpointCommand extends smithyClient.Command
|
|
13215
13988
|
.classBuilder()
|
|
13216
13989
|
.ep(commonParams)
|
|
@@ -13583,6 +14356,18 @@ class GetStreamingDistributionConfigCommand extends smithyClient.Command
|
|
|
13583
14356
|
.build() {
|
|
13584
14357
|
}
|
|
13585
14358
|
|
|
14359
|
+
class GetTrustStoreCommand extends smithyClient.Command
|
|
14360
|
+
.classBuilder()
|
|
14361
|
+
.ep(commonParams)
|
|
14362
|
+
.m(function (Command, cs, config, o) {
|
|
14363
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14364
|
+
})
|
|
14365
|
+
.s("Cloudfront2020_05_31", "GetTrustStore", {})
|
|
14366
|
+
.n("CloudFrontClient", "GetTrustStoreCommand")
|
|
14367
|
+
.sc(GetTrustStore)
|
|
14368
|
+
.build() {
|
|
14369
|
+
}
|
|
14370
|
+
|
|
13586
14371
|
class GetVpcOriginCommand extends smithyClient.Command
|
|
13587
14372
|
.classBuilder()
|
|
13588
14373
|
.ep(commonParams)
|
|
@@ -13643,6 +14428,18 @@ class ListConflictingAliasesCommand extends smithyClient.Command
|
|
|
13643
14428
|
.build() {
|
|
13644
14429
|
}
|
|
13645
14430
|
|
|
14431
|
+
class ListConnectionFunctionsCommand extends smithyClient.Command
|
|
14432
|
+
.classBuilder()
|
|
14433
|
+
.ep(commonParams)
|
|
14434
|
+
.m(function (Command, cs, config, o) {
|
|
14435
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14436
|
+
})
|
|
14437
|
+
.s("Cloudfront2020_05_31", "ListConnectionFunctions", {})
|
|
14438
|
+
.n("CloudFrontClient", "ListConnectionFunctionsCommand")
|
|
14439
|
+
.sc(ListConnectionFunctions)
|
|
14440
|
+
.build() {
|
|
14441
|
+
}
|
|
14442
|
+
|
|
13646
14443
|
class ListConnectionGroupsCommand extends smithyClient.Command
|
|
13647
14444
|
.classBuilder()
|
|
13648
14445
|
.ep(commonParams)
|
|
@@ -13691,6 +14488,18 @@ class ListDistributionsByCachePolicyIdCommand extends smithyClient.Command
|
|
|
13691
14488
|
.build() {
|
|
13692
14489
|
}
|
|
13693
14490
|
|
|
14491
|
+
class ListDistributionsByConnectionFunctionCommand extends smithyClient.Command
|
|
14492
|
+
.classBuilder()
|
|
14493
|
+
.ep(commonParams)
|
|
14494
|
+
.m(function (Command, cs, config, o) {
|
|
14495
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14496
|
+
})
|
|
14497
|
+
.s("Cloudfront2020_05_31", "ListDistributionsByConnectionFunction", {})
|
|
14498
|
+
.n("CloudFrontClient", "ListDistributionsByConnectionFunctionCommand")
|
|
14499
|
+
.sc(ListDistributionsByConnectionFunction)
|
|
14500
|
+
.build() {
|
|
14501
|
+
}
|
|
14502
|
+
|
|
13694
14503
|
class ListDistributionsByConnectionModeCommand extends smithyClient.Command
|
|
13695
14504
|
.classBuilder()
|
|
13696
14505
|
.ep(commonParams)
|
|
@@ -13763,6 +14572,18 @@ class ListDistributionsByResponseHeadersPolicyIdCommand extends smithyClient.Com
|
|
|
13763
14572
|
.build() {
|
|
13764
14573
|
}
|
|
13765
14574
|
|
|
14575
|
+
class ListDistributionsByTrustStoreCommand extends smithyClient.Command
|
|
14576
|
+
.classBuilder()
|
|
14577
|
+
.ep(commonParams)
|
|
14578
|
+
.m(function (Command, cs, config, o) {
|
|
14579
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14580
|
+
})
|
|
14581
|
+
.s("Cloudfront2020_05_31", "ListDistributionsByTrustStore", {})
|
|
14582
|
+
.n("CloudFrontClient", "ListDistributionsByTrustStoreCommand")
|
|
14583
|
+
.sc(ListDistributionsByTrustStore)
|
|
14584
|
+
.build() {
|
|
14585
|
+
}
|
|
14586
|
+
|
|
13766
14587
|
class ListDistributionsByVpcOriginIdCommand extends smithyClient.Command
|
|
13767
14588
|
.classBuilder()
|
|
13768
14589
|
.ep(commonParams)
|
|
@@ -14003,6 +14824,18 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
14003
14824
|
.build() {
|
|
14004
14825
|
}
|
|
14005
14826
|
|
|
14827
|
+
class ListTrustStoresCommand extends smithyClient.Command
|
|
14828
|
+
.classBuilder()
|
|
14829
|
+
.ep(commonParams)
|
|
14830
|
+
.m(function (Command, cs, config, o) {
|
|
14831
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14832
|
+
})
|
|
14833
|
+
.s("Cloudfront2020_05_31", "ListTrustStores", {})
|
|
14834
|
+
.n("CloudFrontClient", "ListTrustStoresCommand")
|
|
14835
|
+
.sc(ListTrustStores)
|
|
14836
|
+
.build() {
|
|
14837
|
+
}
|
|
14838
|
+
|
|
14006
14839
|
class ListVpcOriginsCommand extends smithyClient.Command
|
|
14007
14840
|
.classBuilder()
|
|
14008
14841
|
.ep(commonParams)
|
|
@@ -14015,6 +14848,18 @@ class ListVpcOriginsCommand extends smithyClient.Command
|
|
|
14015
14848
|
.build() {
|
|
14016
14849
|
}
|
|
14017
14850
|
|
|
14851
|
+
class PublishConnectionFunctionCommand extends smithyClient.Command
|
|
14852
|
+
.classBuilder()
|
|
14853
|
+
.ep(commonParams)
|
|
14854
|
+
.m(function (Command, cs, config, o) {
|
|
14855
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14856
|
+
})
|
|
14857
|
+
.s("Cloudfront2020_05_31", "PublishConnectionFunction", {})
|
|
14858
|
+
.n("CloudFrontClient", "PublishConnectionFunctionCommand")
|
|
14859
|
+
.sc(PublishConnectionFunction)
|
|
14860
|
+
.build() {
|
|
14861
|
+
}
|
|
14862
|
+
|
|
14018
14863
|
class PublishFunctionCommand extends smithyClient.Command
|
|
14019
14864
|
.classBuilder()
|
|
14020
14865
|
.ep(commonParams)
|
|
@@ -14051,6 +14896,18 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
14051
14896
|
.build() {
|
|
14052
14897
|
}
|
|
14053
14898
|
|
|
14899
|
+
class TestConnectionFunctionCommand extends smithyClient.Command
|
|
14900
|
+
.classBuilder()
|
|
14901
|
+
.ep(commonParams)
|
|
14902
|
+
.m(function (Command, cs, config, o) {
|
|
14903
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14904
|
+
})
|
|
14905
|
+
.s("Cloudfront2020_05_31", "TestConnectionFunction", {})
|
|
14906
|
+
.n("CloudFrontClient", "TestConnectionFunctionCommand")
|
|
14907
|
+
.sc(TestConnectionFunction)
|
|
14908
|
+
.build() {
|
|
14909
|
+
}
|
|
14910
|
+
|
|
14054
14911
|
class TestFunctionCommand extends smithyClient.Command
|
|
14055
14912
|
.classBuilder()
|
|
14056
14913
|
.ep(commonParams)
|
|
@@ -14111,6 +14968,18 @@ class UpdateCloudFrontOriginAccessIdentityCommand extends smithyClient.Command
|
|
|
14111
14968
|
.build() {
|
|
14112
14969
|
}
|
|
14113
14970
|
|
|
14971
|
+
class UpdateConnectionFunctionCommand extends smithyClient.Command
|
|
14972
|
+
.classBuilder()
|
|
14973
|
+
.ep(commonParams)
|
|
14974
|
+
.m(function (Command, cs, config, o) {
|
|
14975
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
14976
|
+
})
|
|
14977
|
+
.s("Cloudfront2020_05_31", "UpdateConnectionFunction", {})
|
|
14978
|
+
.n("CloudFrontClient", "UpdateConnectionFunctionCommand")
|
|
14979
|
+
.sc(UpdateConnectionFunction)
|
|
14980
|
+
.build() {
|
|
14981
|
+
}
|
|
14982
|
+
|
|
14114
14983
|
class UpdateConnectionGroupCommand extends smithyClient.Command
|
|
14115
14984
|
.classBuilder()
|
|
14116
14985
|
.ep(commonParams)
|
|
@@ -14315,6 +15184,18 @@ class UpdateStreamingDistributionCommand extends smithyClient.Command
|
|
|
14315
15184
|
.build() {
|
|
14316
15185
|
}
|
|
14317
15186
|
|
|
15187
|
+
class UpdateTrustStoreCommand extends smithyClient.Command
|
|
15188
|
+
.classBuilder()
|
|
15189
|
+
.ep(commonParams)
|
|
15190
|
+
.m(function (Command, cs, config, o) {
|
|
15191
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15192
|
+
})
|
|
15193
|
+
.s("Cloudfront2020_05_31", "UpdateTrustStore", {})
|
|
15194
|
+
.n("CloudFrontClient", "UpdateTrustStoreCommand")
|
|
15195
|
+
.sc(UpdateTrustStore)
|
|
15196
|
+
.build() {
|
|
15197
|
+
}
|
|
15198
|
+
|
|
14318
15199
|
class UpdateVpcOriginCommand extends smithyClient.Command
|
|
14319
15200
|
.classBuilder()
|
|
14320
15201
|
.ep(commonParams)
|
|
@@ -14347,6 +15228,7 @@ const commands = {
|
|
|
14347
15228
|
CreateAnycastIpListCommand,
|
|
14348
15229
|
CreateCachePolicyCommand,
|
|
14349
15230
|
CreateCloudFrontOriginAccessIdentityCommand,
|
|
15231
|
+
CreateConnectionFunctionCommand,
|
|
14350
15232
|
CreateConnectionGroupCommand,
|
|
14351
15233
|
CreateContinuousDeploymentPolicyCommand,
|
|
14352
15234
|
CreateDistributionCommand,
|
|
@@ -14367,10 +15249,12 @@ const commands = {
|
|
|
14367
15249
|
CreateResponseHeadersPolicyCommand,
|
|
14368
15250
|
CreateStreamingDistributionCommand,
|
|
14369
15251
|
CreateStreamingDistributionWithTagsCommand,
|
|
15252
|
+
CreateTrustStoreCommand,
|
|
14370
15253
|
CreateVpcOriginCommand,
|
|
14371
15254
|
DeleteAnycastIpListCommand,
|
|
14372
15255
|
DeleteCachePolicyCommand,
|
|
14373
15256
|
DeleteCloudFrontOriginAccessIdentityCommand,
|
|
15257
|
+
DeleteConnectionFunctionCommand,
|
|
14374
15258
|
DeleteConnectionGroupCommand,
|
|
14375
15259
|
DeleteContinuousDeploymentPolicyCommand,
|
|
14376
15260
|
DeleteDistributionCommand,
|
|
@@ -14388,7 +15272,9 @@ const commands = {
|
|
|
14388
15272
|
DeleteResourcePolicyCommand,
|
|
14389
15273
|
DeleteResponseHeadersPolicyCommand,
|
|
14390
15274
|
DeleteStreamingDistributionCommand,
|
|
15275
|
+
DeleteTrustStoreCommand,
|
|
14391
15276
|
DeleteVpcOriginCommand,
|
|
15277
|
+
DescribeConnectionFunctionCommand,
|
|
14392
15278
|
DescribeFunctionCommand,
|
|
14393
15279
|
DescribeKeyValueStoreCommand,
|
|
14394
15280
|
DisassociateDistributionTenantWebACLCommand,
|
|
@@ -14398,6 +15284,7 @@ const commands = {
|
|
|
14398
15284
|
GetCachePolicyConfigCommand,
|
|
14399
15285
|
GetCloudFrontOriginAccessIdentityCommand,
|
|
14400
15286
|
GetCloudFrontOriginAccessIdentityConfigCommand,
|
|
15287
|
+
GetConnectionFunctionCommand,
|
|
14401
15288
|
GetConnectionGroupCommand,
|
|
14402
15289
|
GetConnectionGroupByRoutingEndpointCommand,
|
|
14403
15290
|
GetContinuousDeploymentPolicyCommand,
|
|
@@ -14429,22 +15316,26 @@ const commands = {
|
|
|
14429
15316
|
GetResponseHeadersPolicyConfigCommand,
|
|
14430
15317
|
GetStreamingDistributionCommand,
|
|
14431
15318
|
GetStreamingDistributionConfigCommand,
|
|
15319
|
+
GetTrustStoreCommand,
|
|
14432
15320
|
GetVpcOriginCommand,
|
|
14433
15321
|
ListAnycastIpListsCommand,
|
|
14434
15322
|
ListCachePoliciesCommand,
|
|
14435
15323
|
ListCloudFrontOriginAccessIdentitiesCommand,
|
|
14436
15324
|
ListConflictingAliasesCommand,
|
|
15325
|
+
ListConnectionFunctionsCommand,
|
|
14437
15326
|
ListConnectionGroupsCommand,
|
|
14438
15327
|
ListContinuousDeploymentPoliciesCommand,
|
|
14439
15328
|
ListDistributionsCommand,
|
|
14440
15329
|
ListDistributionsByAnycastIpListIdCommand,
|
|
14441
15330
|
ListDistributionsByCachePolicyIdCommand,
|
|
15331
|
+
ListDistributionsByConnectionFunctionCommand,
|
|
14442
15332
|
ListDistributionsByConnectionModeCommand,
|
|
14443
15333
|
ListDistributionsByKeyGroupCommand,
|
|
14444
15334
|
ListDistributionsByOriginRequestPolicyIdCommand,
|
|
14445
15335
|
ListDistributionsByOwnedResourceCommand,
|
|
14446
15336
|
ListDistributionsByRealtimeLogConfigCommand,
|
|
14447
15337
|
ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
15338
|
+
ListDistributionsByTrustStoreCommand,
|
|
14448
15339
|
ListDistributionsByVpcOriginIdCommand,
|
|
14449
15340
|
ListDistributionsByWebACLIdCommand,
|
|
14450
15341
|
ListDistributionTenantsCommand,
|
|
@@ -14464,15 +15355,19 @@ const commands = {
|
|
|
14464
15355
|
ListResponseHeadersPoliciesCommand,
|
|
14465
15356
|
ListStreamingDistributionsCommand,
|
|
14466
15357
|
ListTagsForResourceCommand,
|
|
15358
|
+
ListTrustStoresCommand,
|
|
14467
15359
|
ListVpcOriginsCommand,
|
|
15360
|
+
PublishConnectionFunctionCommand,
|
|
14468
15361
|
PublishFunctionCommand,
|
|
14469
15362
|
PutResourcePolicyCommand,
|
|
14470
15363
|
TagResourceCommand,
|
|
15364
|
+
TestConnectionFunctionCommand,
|
|
14471
15365
|
TestFunctionCommand,
|
|
14472
15366
|
UntagResourceCommand,
|
|
14473
15367
|
UpdateAnycastIpListCommand,
|
|
14474
15368
|
UpdateCachePolicyCommand,
|
|
14475
15369
|
UpdateCloudFrontOriginAccessIdentityCommand,
|
|
15370
|
+
UpdateConnectionFunctionCommand,
|
|
14476
15371
|
UpdateConnectionGroupCommand,
|
|
14477
15372
|
UpdateContinuousDeploymentPolicyCommand,
|
|
14478
15373
|
UpdateDistributionCommand,
|
|
@@ -14490,6 +15385,7 @@ const commands = {
|
|
|
14490
15385
|
UpdateRealtimeLogConfigCommand,
|
|
14491
15386
|
UpdateResponseHeadersPolicyCommand,
|
|
14492
15387
|
UpdateStreamingDistributionCommand,
|
|
15388
|
+
UpdateTrustStoreCommand,
|
|
14493
15389
|
UpdateVpcOriginCommand,
|
|
14494
15390
|
VerifyDnsConfigurationCommand,
|
|
14495
15391
|
};
|
|
@@ -14499,14 +15395,20 @@ smithyClient.createAggregatedClient(commands, CloudFront);
|
|
|
14499
15395
|
|
|
14500
15396
|
const paginateListCloudFrontOriginAccessIdentities = core.createPaginator(CloudFrontClient, ListCloudFrontOriginAccessIdentitiesCommand, "Marker", "CloudFrontOriginAccessIdentityList.NextMarker", "MaxItems");
|
|
14501
15397
|
|
|
15398
|
+
const paginateListConnectionFunctions = core.createPaginator(CloudFrontClient, ListConnectionFunctionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
15399
|
+
|
|
14502
15400
|
const paginateListConnectionGroups = core.createPaginator(CloudFrontClient, ListConnectionGroupsCommand, "Marker", "NextMarker", "MaxItems");
|
|
14503
15401
|
|
|
14504
15402
|
const paginateListDistributionTenantsByCustomization = core.createPaginator(CloudFrontClient, ListDistributionTenantsByCustomizationCommand, "Marker", "NextMarker", "MaxItems");
|
|
14505
15403
|
|
|
14506
15404
|
const paginateListDistributionTenants = core.createPaginator(CloudFrontClient, ListDistributionTenantsCommand, "Marker", "NextMarker", "MaxItems");
|
|
14507
15405
|
|
|
15406
|
+
const paginateListDistributionsByConnectionFunction = core.createPaginator(CloudFrontClient, ListDistributionsByConnectionFunctionCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
15407
|
+
|
|
14508
15408
|
const paginateListDistributionsByConnectionMode = core.createPaginator(CloudFrontClient, ListDistributionsByConnectionModeCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
14509
15409
|
|
|
15410
|
+
const paginateListDistributionsByTrustStore = core.createPaginator(CloudFrontClient, ListDistributionsByTrustStoreCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
15411
|
+
|
|
14510
15412
|
const paginateListDistributions = core.createPaginator(CloudFrontClient, ListDistributionsCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
14511
15413
|
|
|
14512
15414
|
const paginateListDomainConflicts = core.createPaginator(CloudFrontClient, ListDomainConflictsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -14523,6 +15425,8 @@ const paginateListPublicKeys = core.createPaginator(CloudFrontClient, ListPublic
|
|
|
14523
15425
|
|
|
14524
15426
|
const paginateListStreamingDistributions = core.createPaginator(CloudFrontClient, ListStreamingDistributionsCommand, "Marker", "StreamingDistributionList.NextMarker", "MaxItems");
|
|
14525
15427
|
|
|
15428
|
+
const paginateListTrustStores = core.createPaginator(CloudFrontClient, ListTrustStoresCommand, "Marker", "NextMarker", "MaxItems");
|
|
15429
|
+
|
|
14526
15430
|
const checkState$3 = async (client, input) => {
|
|
14527
15431
|
let reason;
|
|
14528
15432
|
try {
|
|
@@ -14672,6 +15576,20 @@ const IpAddressType = {
|
|
|
14672
15576
|
Ipv4: "ipv4",
|
|
14673
15577
|
Ipv6: "ipv6",
|
|
14674
15578
|
};
|
|
15579
|
+
const IpamCidrStatus = {
|
|
15580
|
+
Advertised: "advertised",
|
|
15581
|
+
Advertising: "advertising",
|
|
15582
|
+
Deprovisioned: "deprovisioned",
|
|
15583
|
+
Deprovisioning: "deprovisioning",
|
|
15584
|
+
FailedAdvertise: "failed-advertise",
|
|
15585
|
+
FailedDeprovision: "failed-deprovision",
|
|
15586
|
+
FailedProvision: "failed-provision",
|
|
15587
|
+
FailedWithdraw: "failed-withdraw",
|
|
15588
|
+
Provisioned: "provisioned",
|
|
15589
|
+
Provisioning: "provisioning",
|
|
15590
|
+
Withdrawing: "withdrawing",
|
|
15591
|
+
Withdrawn: "withdrawn",
|
|
15592
|
+
};
|
|
14675
15593
|
const ItemSelection = {
|
|
14676
15594
|
all: "all",
|
|
14677
15595
|
none: "none",
|
|
@@ -14769,6 +15687,18 @@ const SSLSupportMethod = {
|
|
|
14769
15687
|
static_ip: "static-ip",
|
|
14770
15688
|
vip: "vip",
|
|
14771
15689
|
};
|
|
15690
|
+
const ViewerMtlsMode = {
|
|
15691
|
+
Optional: "optional",
|
|
15692
|
+
Required: "required",
|
|
15693
|
+
};
|
|
15694
|
+
const FunctionRuntime = {
|
|
15695
|
+
cloudfront_js_1_0: "cloudfront-js-1.0",
|
|
15696
|
+
cloudfront_js_2_0: "cloudfront-js-2.0",
|
|
15697
|
+
};
|
|
15698
|
+
const FunctionStage = {
|
|
15699
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
15700
|
+
LIVE: "LIVE",
|
|
15701
|
+
};
|
|
14772
15702
|
const ContinuousDeploymentPolicyType = {
|
|
14773
15703
|
SingleHeader: "SingleHeader",
|
|
14774
15704
|
SingleWeight: "SingleWeight",
|
|
@@ -14788,14 +15718,6 @@ const DomainStatus = {
|
|
|
14788
15718
|
const Format = {
|
|
14789
15719
|
URLEncoded: "URLEncoded",
|
|
14790
15720
|
};
|
|
14791
|
-
const FunctionRuntime = {
|
|
14792
|
-
cloudfront_js_1_0: "cloudfront-js-1.0",
|
|
14793
|
-
cloudfront_js_2_0: "cloudfront-js-2.0",
|
|
14794
|
-
};
|
|
14795
|
-
const FunctionStage = {
|
|
14796
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
14797
|
-
LIVE: "LIVE",
|
|
14798
|
-
};
|
|
14799
15721
|
const ImportSourceType = {
|
|
14800
15722
|
S3: "S3",
|
|
14801
15723
|
};
|
|
@@ -14850,6 +15772,11 @@ const ReferrerPolicyList = {
|
|
|
14850
15772
|
strict_origin_when_cross_origin: "strict-origin-when-cross-origin",
|
|
14851
15773
|
unsafe_url: "unsafe-url",
|
|
14852
15774
|
};
|
|
15775
|
+
const TrustStoreStatus = {
|
|
15776
|
+
Active: "active",
|
|
15777
|
+
Failed: "failed",
|
|
15778
|
+
Pending: "pending",
|
|
15779
|
+
};
|
|
14853
15780
|
const ManagedCertificateStatus = {
|
|
14854
15781
|
Expired: "expired",
|
|
14855
15782
|
Failed: "failed",
|
|
@@ -14915,6 +15842,7 @@ exports.CopyDistributionCommand = CopyDistributionCommand;
|
|
|
14915
15842
|
exports.CreateAnycastIpListCommand = CreateAnycastIpListCommand;
|
|
14916
15843
|
exports.CreateCachePolicyCommand = CreateCachePolicyCommand;
|
|
14917
15844
|
exports.CreateCloudFrontOriginAccessIdentityCommand = CreateCloudFrontOriginAccessIdentityCommand;
|
|
15845
|
+
exports.CreateConnectionFunctionCommand = CreateConnectionFunctionCommand;
|
|
14918
15846
|
exports.CreateConnectionGroupCommand = CreateConnectionGroupCommand;
|
|
14919
15847
|
exports.CreateContinuousDeploymentPolicyCommand = CreateContinuousDeploymentPolicyCommand;
|
|
14920
15848
|
exports.CreateDistributionCommand = CreateDistributionCommand;
|
|
@@ -14935,11 +15863,13 @@ exports.CreateRealtimeLogConfigCommand = CreateRealtimeLogConfigCommand;
|
|
|
14935
15863
|
exports.CreateResponseHeadersPolicyCommand = CreateResponseHeadersPolicyCommand;
|
|
14936
15864
|
exports.CreateStreamingDistributionCommand = CreateStreamingDistributionCommand;
|
|
14937
15865
|
exports.CreateStreamingDistributionWithTagsCommand = CreateStreamingDistributionWithTagsCommand;
|
|
15866
|
+
exports.CreateTrustStoreCommand = CreateTrustStoreCommand;
|
|
14938
15867
|
exports.CreateVpcOriginCommand = CreateVpcOriginCommand;
|
|
14939
15868
|
exports.CustomizationActionType = CustomizationActionType;
|
|
14940
15869
|
exports.DeleteAnycastIpListCommand = DeleteAnycastIpListCommand;
|
|
14941
15870
|
exports.DeleteCachePolicyCommand = DeleteCachePolicyCommand;
|
|
14942
15871
|
exports.DeleteCloudFrontOriginAccessIdentityCommand = DeleteCloudFrontOriginAccessIdentityCommand;
|
|
15872
|
+
exports.DeleteConnectionFunctionCommand = DeleteConnectionFunctionCommand;
|
|
14943
15873
|
exports.DeleteConnectionGroupCommand = DeleteConnectionGroupCommand;
|
|
14944
15874
|
exports.DeleteContinuousDeploymentPolicyCommand = DeleteContinuousDeploymentPolicyCommand;
|
|
14945
15875
|
exports.DeleteDistributionCommand = DeleteDistributionCommand;
|
|
@@ -14957,7 +15887,9 @@ exports.DeleteRealtimeLogConfigCommand = DeleteRealtimeLogConfigCommand;
|
|
|
14957
15887
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
14958
15888
|
exports.DeleteResponseHeadersPolicyCommand = DeleteResponseHeadersPolicyCommand;
|
|
14959
15889
|
exports.DeleteStreamingDistributionCommand = DeleteStreamingDistributionCommand;
|
|
15890
|
+
exports.DeleteTrustStoreCommand = DeleteTrustStoreCommand;
|
|
14960
15891
|
exports.DeleteVpcOriginCommand = DeleteVpcOriginCommand;
|
|
15892
|
+
exports.DescribeConnectionFunctionCommand = DescribeConnectionFunctionCommand;
|
|
14961
15893
|
exports.DescribeFunctionCommand = DescribeFunctionCommand;
|
|
14962
15894
|
exports.DescribeKeyValueStoreCommand = DescribeKeyValueStoreCommand;
|
|
14963
15895
|
exports.DisassociateDistributionTenantWebACLCommand = DisassociateDistributionTenantWebACLCommand;
|
|
@@ -14990,6 +15922,7 @@ exports.GetCachePolicyCommand = GetCachePolicyCommand;
|
|
|
14990
15922
|
exports.GetCachePolicyConfigCommand = GetCachePolicyConfigCommand;
|
|
14991
15923
|
exports.GetCloudFrontOriginAccessIdentityCommand = GetCloudFrontOriginAccessIdentityCommand;
|
|
14992
15924
|
exports.GetCloudFrontOriginAccessIdentityConfigCommand = GetCloudFrontOriginAccessIdentityConfigCommand;
|
|
15925
|
+
exports.GetConnectionFunctionCommand = GetConnectionFunctionCommand;
|
|
14993
15926
|
exports.GetConnectionGroupByRoutingEndpointCommand = GetConnectionGroupByRoutingEndpointCommand;
|
|
14994
15927
|
exports.GetConnectionGroupCommand = GetConnectionGroupCommand;
|
|
14995
15928
|
exports.GetContinuousDeploymentPolicyCommand = GetContinuousDeploymentPolicyCommand;
|
|
@@ -15021,6 +15954,7 @@ exports.GetResponseHeadersPolicyCommand = GetResponseHeadersPolicyCommand;
|
|
|
15021
15954
|
exports.GetResponseHeadersPolicyConfigCommand = GetResponseHeadersPolicyConfigCommand;
|
|
15022
15955
|
exports.GetStreamingDistributionCommand = GetStreamingDistributionCommand;
|
|
15023
15956
|
exports.GetStreamingDistributionConfigCommand = GetStreamingDistributionConfigCommand;
|
|
15957
|
+
exports.GetTrustStoreCommand = GetTrustStoreCommand;
|
|
15024
15958
|
exports.GetVpcOriginCommand = GetVpcOriginCommand;
|
|
15025
15959
|
exports.HttpVersion = HttpVersion;
|
|
15026
15960
|
exports.ICPRecordalStatus = ICPRecordalStatus;
|
|
@@ -15058,24 +15992,28 @@ exports.InvalidTagging = InvalidTagging$1;
|
|
|
15058
15992
|
exports.InvalidViewerCertificate = InvalidViewerCertificate$1;
|
|
15059
15993
|
exports.InvalidWebACLId = InvalidWebACLId$1;
|
|
15060
15994
|
exports.IpAddressType = IpAddressType;
|
|
15995
|
+
exports.IpamCidrStatus = IpamCidrStatus;
|
|
15061
15996
|
exports.ItemSelection = ItemSelection;
|
|
15062
15997
|
exports.KeyGroupAlreadyExists = KeyGroupAlreadyExists$1;
|
|
15063
15998
|
exports.ListAnycastIpListsCommand = ListAnycastIpListsCommand;
|
|
15064
15999
|
exports.ListCachePoliciesCommand = ListCachePoliciesCommand;
|
|
15065
16000
|
exports.ListCloudFrontOriginAccessIdentitiesCommand = ListCloudFrontOriginAccessIdentitiesCommand;
|
|
15066
16001
|
exports.ListConflictingAliasesCommand = ListConflictingAliasesCommand;
|
|
16002
|
+
exports.ListConnectionFunctionsCommand = ListConnectionFunctionsCommand;
|
|
15067
16003
|
exports.ListConnectionGroupsCommand = ListConnectionGroupsCommand;
|
|
15068
16004
|
exports.ListContinuousDeploymentPoliciesCommand = ListContinuousDeploymentPoliciesCommand;
|
|
15069
16005
|
exports.ListDistributionTenantsByCustomizationCommand = ListDistributionTenantsByCustomizationCommand;
|
|
15070
16006
|
exports.ListDistributionTenantsCommand = ListDistributionTenantsCommand;
|
|
15071
16007
|
exports.ListDistributionsByAnycastIpListIdCommand = ListDistributionsByAnycastIpListIdCommand;
|
|
15072
16008
|
exports.ListDistributionsByCachePolicyIdCommand = ListDistributionsByCachePolicyIdCommand;
|
|
16009
|
+
exports.ListDistributionsByConnectionFunctionCommand = ListDistributionsByConnectionFunctionCommand;
|
|
15073
16010
|
exports.ListDistributionsByConnectionModeCommand = ListDistributionsByConnectionModeCommand;
|
|
15074
16011
|
exports.ListDistributionsByKeyGroupCommand = ListDistributionsByKeyGroupCommand;
|
|
15075
16012
|
exports.ListDistributionsByOriginRequestPolicyIdCommand = ListDistributionsByOriginRequestPolicyIdCommand;
|
|
15076
16013
|
exports.ListDistributionsByOwnedResourceCommand = ListDistributionsByOwnedResourceCommand;
|
|
15077
16014
|
exports.ListDistributionsByRealtimeLogConfigCommand = ListDistributionsByRealtimeLogConfigCommand;
|
|
15078
16015
|
exports.ListDistributionsByResponseHeadersPolicyIdCommand = ListDistributionsByResponseHeadersPolicyIdCommand;
|
|
16016
|
+
exports.ListDistributionsByTrustStoreCommand = ListDistributionsByTrustStoreCommand;
|
|
15079
16017
|
exports.ListDistributionsByVpcOriginIdCommand = ListDistributionsByVpcOriginIdCommand;
|
|
15080
16018
|
exports.ListDistributionsByWebACLIdCommand = ListDistributionsByWebACLIdCommand;
|
|
15081
16019
|
exports.ListDistributionsCommand = ListDistributionsCommand;
|
|
@@ -15094,6 +16032,7 @@ exports.ListRealtimeLogConfigsCommand = ListRealtimeLogConfigsCommand;
|
|
|
15094
16032
|
exports.ListResponseHeadersPoliciesCommand = ListResponseHeadersPoliciesCommand;
|
|
15095
16033
|
exports.ListStreamingDistributionsCommand = ListStreamingDistributionsCommand;
|
|
15096
16034
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
16035
|
+
exports.ListTrustStoresCommand = ListTrustStoresCommand;
|
|
15097
16036
|
exports.ListVpcOriginsCommand = ListVpcOriginsCommand;
|
|
15098
16037
|
exports.ManagedCertificateStatus = ManagedCertificateStatus;
|
|
15099
16038
|
exports.Method = Method;
|
|
@@ -15134,6 +16073,7 @@ exports.PreconditionFailed = PreconditionFailed$1;
|
|
|
15134
16073
|
exports.PriceClass = PriceClass;
|
|
15135
16074
|
exports.PublicKeyAlreadyExists = PublicKeyAlreadyExists$1;
|
|
15136
16075
|
exports.PublicKeyInUse = PublicKeyInUse$1;
|
|
16076
|
+
exports.PublishConnectionFunctionCommand = PublishConnectionFunctionCommand;
|
|
15137
16077
|
exports.PublishFunctionCommand = PublishFunctionCommand;
|
|
15138
16078
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
15139
16079
|
exports.QueryArgProfileEmpty = QueryArgProfileEmpty$1;
|
|
@@ -15154,6 +16094,7 @@ exports.StagingDistributionInUse = StagingDistributionInUse$1;
|
|
|
15154
16094
|
exports.StreamingDistributionAlreadyExists = StreamingDistributionAlreadyExists$1;
|
|
15155
16095
|
exports.StreamingDistributionNotDisabled = StreamingDistributionNotDisabled$1;
|
|
15156
16096
|
exports.TagResourceCommand = TagResourceCommand;
|
|
16097
|
+
exports.TestConnectionFunctionCommand = TestConnectionFunctionCommand;
|
|
15157
16098
|
exports.TestFunctionCommand = TestFunctionCommand;
|
|
15158
16099
|
exports.TestFunctionFailed = TestFunctionFailed$1;
|
|
15159
16100
|
exports.TooLongCSPInResponseHeadersPolicy = TooLongCSPInResponseHeadersPolicy$1;
|
|
@@ -15208,6 +16149,7 @@ exports.TooManyResponseHeadersPolicies = TooManyResponseHeadersPolicies$1;
|
|
|
15208
16149
|
exports.TooManyStreamingDistributionCNAMEs = TooManyStreamingDistributionCNAMEs$1;
|
|
15209
16150
|
exports.TooManyStreamingDistributions = TooManyStreamingDistributions$1;
|
|
15210
16151
|
exports.TooManyTrustedSigners = TooManyTrustedSigners$1;
|
|
16152
|
+
exports.TrustStoreStatus = TrustStoreStatus;
|
|
15211
16153
|
exports.TrustedKeyGroupDoesNotExist = TrustedKeyGroupDoesNotExist$1;
|
|
15212
16154
|
exports.TrustedSignerDoesNotExist = TrustedSignerDoesNotExist$1;
|
|
15213
16155
|
exports.UnsupportedOperation = UnsupportedOperation$1;
|
|
@@ -15215,6 +16157,7 @@ exports.UntagResourceCommand = UntagResourceCommand;
|
|
|
15215
16157
|
exports.UpdateAnycastIpListCommand = UpdateAnycastIpListCommand;
|
|
15216
16158
|
exports.UpdateCachePolicyCommand = UpdateCachePolicyCommand;
|
|
15217
16159
|
exports.UpdateCloudFrontOriginAccessIdentityCommand = UpdateCloudFrontOriginAccessIdentityCommand;
|
|
16160
|
+
exports.UpdateConnectionFunctionCommand = UpdateConnectionFunctionCommand;
|
|
15218
16161
|
exports.UpdateConnectionGroupCommand = UpdateConnectionGroupCommand;
|
|
15219
16162
|
exports.UpdateContinuousDeploymentPolicyCommand = UpdateContinuousDeploymentPolicyCommand;
|
|
15220
16163
|
exports.UpdateDistributionCommand = UpdateDistributionCommand;
|
|
@@ -15232,16 +16175,21 @@ exports.UpdatePublicKeyCommand = UpdatePublicKeyCommand;
|
|
|
15232
16175
|
exports.UpdateRealtimeLogConfigCommand = UpdateRealtimeLogConfigCommand;
|
|
15233
16176
|
exports.UpdateResponseHeadersPolicyCommand = UpdateResponseHeadersPolicyCommand;
|
|
15234
16177
|
exports.UpdateStreamingDistributionCommand = UpdateStreamingDistributionCommand;
|
|
16178
|
+
exports.UpdateTrustStoreCommand = UpdateTrustStoreCommand;
|
|
15235
16179
|
exports.UpdateVpcOriginCommand = UpdateVpcOriginCommand;
|
|
15236
16180
|
exports.ValidationTokenHost = ValidationTokenHost;
|
|
15237
16181
|
exports.VerifyDnsConfigurationCommand = VerifyDnsConfigurationCommand;
|
|
16182
|
+
exports.ViewerMtlsMode = ViewerMtlsMode;
|
|
15238
16183
|
exports.ViewerProtocolPolicy = ViewerProtocolPolicy;
|
|
15239
16184
|
exports.paginateListCloudFrontOriginAccessIdentities = paginateListCloudFrontOriginAccessIdentities;
|
|
16185
|
+
exports.paginateListConnectionFunctions = paginateListConnectionFunctions;
|
|
15240
16186
|
exports.paginateListConnectionGroups = paginateListConnectionGroups;
|
|
15241
16187
|
exports.paginateListDistributionTenants = paginateListDistributionTenants;
|
|
15242
16188
|
exports.paginateListDistributionTenantsByCustomization = paginateListDistributionTenantsByCustomization;
|
|
15243
16189
|
exports.paginateListDistributions = paginateListDistributions;
|
|
16190
|
+
exports.paginateListDistributionsByConnectionFunction = paginateListDistributionsByConnectionFunction;
|
|
15244
16191
|
exports.paginateListDistributionsByConnectionMode = paginateListDistributionsByConnectionMode;
|
|
16192
|
+
exports.paginateListDistributionsByTrustStore = paginateListDistributionsByTrustStore;
|
|
15245
16193
|
exports.paginateListDomainConflicts = paginateListDomainConflicts;
|
|
15246
16194
|
exports.paginateListInvalidations = paginateListInvalidations;
|
|
15247
16195
|
exports.paginateListInvalidationsForDistributionTenant = paginateListInvalidationsForDistributionTenant;
|
|
@@ -15249,6 +16197,7 @@ exports.paginateListKeyValueStores = paginateListKeyValueStores;
|
|
|
15249
16197
|
exports.paginateListOriginAccessControls = paginateListOriginAccessControls;
|
|
15250
16198
|
exports.paginateListPublicKeys = paginateListPublicKeys;
|
|
15251
16199
|
exports.paginateListStreamingDistributions = paginateListStreamingDistributions;
|
|
16200
|
+
exports.paginateListTrustStores = paginateListTrustStores;
|
|
15252
16201
|
exports.waitForDistributionDeployed = waitForDistributionDeployed;
|
|
15253
16202
|
exports.waitForInvalidationCompleted = waitForInvalidationCompleted;
|
|
15254
16203
|
exports.waitForInvalidationForDistributionTenantCompleted = waitForInvalidationForDistributionTenantCompleted;
|