@aws-sdk/client-cloudfront 3.937.0 → 3.940.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 +977 -63
- 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 +17 -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 +708 -27
- 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/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/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/GetTrustStoreCommand.d.ts +92 -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/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 +49 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +440 -288
- package/dist-types/models/models_1.d.ts +601 -2
- 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 +54 -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/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 +24 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +117 -75
- package/dist-types/ts3.4/models/models_1.d.ts +165 -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 +54 -0
- package/package.json +5 -5
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";
|
|
@@ -2460,8 +2482,13 @@ const _DC = "DistributionConfig";
|
|
|
2460
2482
|
const _DCB = "DefaultCacheBehavior";
|
|
2461
2483
|
const _DCDP = "DeleteContinuousDeploymentPolicy";
|
|
2462
2484
|
const _DCDPR = "DeleteContinuousDeploymentPolicyRequest";
|
|
2485
|
+
const _DCF = "DeleteConnectionFunction";
|
|
2463
2486
|
const _DCFOAI = "DeleteCloudFrontOriginAccessIdentity";
|
|
2464
2487
|
const _DCFOAIR = "DeleteCloudFrontOriginAccessIdentityRequest";
|
|
2488
|
+
const _DCFR = "DeleteConnectionFunctionRequest";
|
|
2489
|
+
const _DCFRe = "DescribeConnectionFunctionRequest";
|
|
2490
|
+
const _DCFRes = "DescribeConnectionFunctionResult";
|
|
2491
|
+
const _DCFe = "DescribeConnectionFunction";
|
|
2465
2492
|
const _DCG = "DeleteConnectionGroup";
|
|
2466
2493
|
const _DCGR = "DeleteConnectionGroupRequest";
|
|
2467
2494
|
const _DCL = "DnsConfigurationList";
|
|
@@ -2539,6 +2566,8 @@ const _DTAF = "DistributionTenantAssociationFilter";
|
|
|
2539
2566
|
const _DTI = "DistributionTenantId";
|
|
2540
2567
|
const _DTL = "DistributionTenantList";
|
|
2541
2568
|
const _DTS = "DistributionTenantSummary";
|
|
2569
|
+
const _DTSR = "DeleteTrustStoreRequest";
|
|
2570
|
+
const _DTSe = "DeleteTrustStore";
|
|
2542
2571
|
const _DTTL = "DefaultTTL";
|
|
2543
2572
|
const _DV = "DefaultValue";
|
|
2544
2573
|
const _DVO = "DeleteVpcOrigin";
|
|
@@ -2627,12 +2656,15 @@ const _GCDPCR = "GetContinuousDeploymentPolicyConfigRequest";
|
|
|
2627
2656
|
const _GCDPCRe = "GetContinuousDeploymentPolicyConfigResult";
|
|
2628
2657
|
const _GCDPR = "GetContinuousDeploymentPolicyRequest";
|
|
2629
2658
|
const _GCDPRe = "GetContinuousDeploymentPolicyResult";
|
|
2659
|
+
const _GCF = "GetConnectionFunction";
|
|
2630
2660
|
const _GCFOAI = "GetCloudFrontOriginAccessIdentity";
|
|
2631
2661
|
const _GCFOAIC = "GetCloudFrontOriginAccessIdentityConfig";
|
|
2632
2662
|
const _GCFOAICR = "GetCloudFrontOriginAccessIdentityConfigRequest";
|
|
2633
2663
|
const _GCFOAICRe = "GetCloudFrontOriginAccessIdentityConfigResult";
|
|
2634
2664
|
const _GCFOAIR = "GetCloudFrontOriginAccessIdentityRequest";
|
|
2635
2665
|
const _GCFOAIRe = "GetCloudFrontOriginAccessIdentityResult";
|
|
2666
|
+
const _GCFR = "GetConnectionFunctionRequest";
|
|
2667
|
+
const _GCFRe = "GetConnectionFunctionResult";
|
|
2636
2668
|
const _GCG = "GetConnectionGroup";
|
|
2637
2669
|
const _GCGBRE = "GetConnectionGroupByRoutingEndpoint";
|
|
2638
2670
|
const _GCGBRER = "GetConnectionGroupByRoutingEndpointRequest";
|
|
@@ -2729,6 +2761,9 @@ const _GSDCR = "GetStreamingDistributionConfigRequest";
|
|
|
2729
2761
|
const _GSDCRe = "GetStreamingDistributionConfigResult";
|
|
2730
2762
|
const _GSDR = "GetStreamingDistributionRequest";
|
|
2731
2763
|
const _GSDRe = "GetStreamingDistributionResult";
|
|
2764
|
+
const _GTS = "GetTrustStore";
|
|
2765
|
+
const _GTSR = "GetTrustStoreRequest";
|
|
2766
|
+
const _GTSRe = "GetTrustStoreResult";
|
|
2732
2767
|
const _GVO = "GetVpcOrigin";
|
|
2733
2768
|
const _GVOR = "GetVpcOriginRequest";
|
|
2734
2769
|
const _GVORe = "GetVpcOriginResult";
|
|
@@ -2753,6 +2788,7 @@ const _IC = "IpamConfig";
|
|
|
2753
2788
|
const _ICC = "IpamCidrConfigs";
|
|
2754
2789
|
const _ICCL = "IpamCidrConfigList";
|
|
2755
2790
|
const _ICCp = "IpamCidrConfig";
|
|
2791
|
+
const _ICE = "IgnoreCertificateExpiry";
|
|
2756
2792
|
const _ICPRS = "ICPRecordalStatus";
|
|
2757
2793
|
const _ICn = "IncludeCookies";
|
|
2758
2794
|
const _ICp = "IpCount";
|
|
@@ -2835,9 +2871,12 @@ const _LCARi = "ListConflictingAliasesResult";
|
|
|
2835
2871
|
const _LCDP = "ListContinuousDeploymentPolicies";
|
|
2836
2872
|
const _LCDPR = "ListContinuousDeploymentPoliciesRequest";
|
|
2837
2873
|
const _LCDPRi = "ListContinuousDeploymentPoliciesResult";
|
|
2874
|
+
const _LCF = "ListConnectionFunctions";
|
|
2838
2875
|
const _LCFOAI = "ListCloudFrontOriginAccessIdentities";
|
|
2839
2876
|
const _LCFOAIR = "ListCloudFrontOriginAccessIdentitiesRequest";
|
|
2840
2877
|
const _LCFOAIRi = "ListCloudFrontOriginAccessIdentitiesResult";
|
|
2878
|
+
const _LCFR = "ListConnectionFunctionsRequest";
|
|
2879
|
+
const _LCFRi = "ListConnectionFunctionsResult";
|
|
2841
2880
|
const _LCG = "ListConnectionGroups";
|
|
2842
2881
|
const _LCGR = "ListConnectionGroupsRequest";
|
|
2843
2882
|
const _LCGRi = "ListConnectionGroupsResult";
|
|
@@ -2848,6 +2887,9 @@ const _LD = "ListDistributions";
|
|
|
2848
2887
|
const _LDBAILI = "ListDistributionsByAnycastIpListId";
|
|
2849
2888
|
const _LDBAILIR = "ListDistributionsByAnycastIpListIdRequest";
|
|
2850
2889
|
const _LDBAILIRi = "ListDistributionsByAnycastIpListIdResult";
|
|
2890
|
+
const _LDBCF = "ListDistributionsByConnectionFunction";
|
|
2891
|
+
const _LDBCFR = "ListDistributionsByConnectionFunctionRequest";
|
|
2892
|
+
const _LDBCFRi = "ListDistributionsByConnectionFunctionResult";
|
|
2851
2893
|
const _LDBCM = "ListDistributionsByConnectionMode";
|
|
2852
2894
|
const _LDBCMR = "ListDistributionsByConnectionModeRequest";
|
|
2853
2895
|
const _LDBCMRi = "ListDistributionsByConnectionModeResult";
|
|
@@ -2869,6 +2911,9 @@ const _LDBRHPIRi = "ListDistributionsByResponseHeadersPolicyIdResult";
|
|
|
2869
2911
|
const _LDBRLC = "ListDistributionsByRealtimeLogConfig";
|
|
2870
2912
|
const _LDBRLCR = "ListDistributionsByRealtimeLogConfigRequest";
|
|
2871
2913
|
const _LDBRLCRi = "ListDistributionsByRealtimeLogConfigResult";
|
|
2914
|
+
const _LDBTS = "ListDistributionsByTrustStore";
|
|
2915
|
+
const _LDBTSR = "ListDistributionsByTrustStoreRequest";
|
|
2916
|
+
const _LDBTSRi = "ListDistributionsByTrustStoreResult";
|
|
2872
2917
|
const _LDBVOI = "ListDistributionsByVpcOriginId";
|
|
2873
2918
|
const _LDBVOIR = "ListDistributionsByVpcOriginIdRequest";
|
|
2874
2919
|
const _LDBVOIRi = "ListDistributionsByVpcOriginIdResult";
|
|
@@ -2934,6 +2979,9 @@ const _LSDRi = "ListStreamingDistributionsResult";
|
|
|
2934
2979
|
const _LTFR = "ListTagsForResource";
|
|
2935
2980
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
2936
2981
|
const _LTFRRi = "ListTagsForResourceResult";
|
|
2982
|
+
const _LTS = "ListTrustStores";
|
|
2983
|
+
const _LTSR = "ListTrustStoresRequest";
|
|
2984
|
+
const _LTSRi = "ListTrustStoresResult";
|
|
2937
2985
|
const _LVO = "ListVpcOrigins";
|
|
2938
2986
|
const _LVOR = "ListVpcOriginsRequest";
|
|
2939
2987
|
const _LVORi = "ListVpcOriginsResult";
|
|
@@ -2955,8 +3003,10 @@ const _MTTLax = "MaximumTTL";
|
|
|
2955
3003
|
const _Ma = "Marker";
|
|
2956
3004
|
const _Me = "Members";
|
|
2957
3005
|
const _Met = "Method";
|
|
3006
|
+
const _Mo = "Mode";
|
|
2958
3007
|
const _N = "Name";
|
|
2959
3008
|
const _NM = "NextMarker";
|
|
3009
|
+
const _NOCC = "NumberOfCaCertificates";
|
|
2960
3010
|
const _NSCDP = "NoSuchContinuousDeploymentPolicy";
|
|
2961
3011
|
const _NSCFOAI = "NoSuchCloudFrontOriginAccessIdentity";
|
|
2962
3012
|
const _NSCP = "NoSuchCachePolicy";
|
|
@@ -3021,6 +3071,9 @@ const _Or = "Origin";
|
|
|
3021
3071
|
const _Ov = "Override";
|
|
3022
3072
|
const _P = "Parameters";
|
|
3023
3073
|
const _PC = "PriceClass";
|
|
3074
|
+
const _PCF = "PublishConnectionFunction";
|
|
3075
|
+
const _PCFR = "PublishConnectionFunctionRequest";
|
|
3076
|
+
const _PCFRu = "PublishConnectionFunctionResult";
|
|
3024
3077
|
const _PD = "PolicyDocument";
|
|
3025
3078
|
const _PDI = "PrimaryDistributionId";
|
|
3026
3079
|
const _PDN = "PrimaryDomainName";
|
|
@@ -3069,7 +3122,7 @@ const _QSCKL = "QueryStringCacheKeysList";
|
|
|
3069
3122
|
const _QSN = "QueryStringNames";
|
|
3070
3123
|
const _QSNL = "QueryStringNamesList";
|
|
3071
3124
|
const _QSu = "QueryString";
|
|
3072
|
-
const _R = "
|
|
3125
|
+
const _R = "Region";
|
|
3073
3126
|
const _RA = "ResourceArn";
|
|
3074
3127
|
const _RARN = "RoleARN";
|
|
3075
3128
|
const _RC = "ResponseCode";
|
|
@@ -3123,7 +3176,8 @@ const _RT = "ResourceType";
|
|
|
3123
3176
|
const _RTe = "RestrictionType";
|
|
3124
3177
|
const _RTed = "RedirectTo";
|
|
3125
3178
|
const _RU = "ReportUri";
|
|
3126
|
-
const _Re = "
|
|
3179
|
+
const _Re = "Restrictions";
|
|
3180
|
+
const _Rea = "Reason";
|
|
3127
3181
|
const _Req = "Required";
|
|
3128
3182
|
const _Res = "Resource";
|
|
3129
3183
|
const _Ru = "Runtime";
|
|
@@ -3169,10 +3223,13 @@ const _STS = "StrictTransportSecurity";
|
|
|
3169
3223
|
const _STo = "SourceType";
|
|
3170
3224
|
const _SWC = "SingleWeightConfig";
|
|
3171
3225
|
const _Si = "Signer";
|
|
3172
|
-
const _St = "
|
|
3173
|
-
const _Sta = "
|
|
3226
|
+
const _St = "Stage";
|
|
3227
|
+
const _Sta = "Staging";
|
|
3174
3228
|
const _T = "Type";
|
|
3175
3229
|
const _TC = "TrafficConfig";
|
|
3230
|
+
const _TCF = "TestConnectionFunction";
|
|
3231
|
+
const _TCFR = "TestConnectionFunctionRequest";
|
|
3232
|
+
const _TCFRe = "TestConnectionFunctionResult";
|
|
3176
3233
|
const _TCe = "TenantConfig";
|
|
3177
3234
|
const _TDI = "TargetDistributionId";
|
|
3178
3235
|
const _TF = "TestFunction";
|
|
@@ -3243,7 +3300,13 @@ const _TRR = "TagResourceRequest";
|
|
|
3243
3300
|
const _TRa = "TargetResource";
|
|
3244
3301
|
const _TRag = "TagResource";
|
|
3245
3302
|
const _TS = "TrustedSigners";
|
|
3303
|
+
const _TSC = "TrustStoreConfig";
|
|
3246
3304
|
const _TSDNE = "TrustedSignerDoesNotExist";
|
|
3305
|
+
const _TSI = "TrustStoreIdentifier";
|
|
3306
|
+
const _TSIr = "TrustStoreId";
|
|
3307
|
+
const _TSL = "TrustStoreList";
|
|
3308
|
+
const _TSS = "TrustStoreSummary";
|
|
3309
|
+
const _TSr = "TrustStore";
|
|
3247
3310
|
const _Ta = "Tags";
|
|
3248
3311
|
const _Tag = "Tag";
|
|
3249
3312
|
const _UAIL = "UpdateAnycastIpList";
|
|
@@ -3252,9 +3315,12 @@ const _UAILRp = "UpdateAnycastIpListResult";
|
|
|
3252
3315
|
const _UCDP = "UpdateContinuousDeploymentPolicy";
|
|
3253
3316
|
const _UCDPR = "UpdateContinuousDeploymentPolicyRequest";
|
|
3254
3317
|
const _UCDPRp = "UpdateContinuousDeploymentPolicyResult";
|
|
3318
|
+
const _UCF = "UpdateConnectionFunction";
|
|
3255
3319
|
const _UCFOAI = "UpdateCloudFrontOriginAccessIdentity";
|
|
3256
3320
|
const _UCFOAIR = "UpdateCloudFrontOriginAccessIdentityRequest";
|
|
3257
3321
|
const _UCFOAIRp = "UpdateCloudFrontOriginAccessIdentityResult";
|
|
3322
|
+
const _UCFR = "UpdateConnectionFunctionRequest";
|
|
3323
|
+
const _UCFRp = "UpdateConnectionFunctionResult";
|
|
3258
3324
|
const _UCG = "UpdateConnectionGroup";
|
|
3259
3325
|
const _UCGR = "UpdateConnectionGroupRequest";
|
|
3260
3326
|
const _UCGRp = "UpdateConnectionGroupResult";
|
|
@@ -3309,14 +3375,18 @@ const _URR = "UntagResourceRequest";
|
|
|
3309
3375
|
const _USD = "UpdateStreamingDistribution";
|
|
3310
3376
|
const _USDR = "UpdateStreamingDistributionRequest";
|
|
3311
3377
|
const _USDRp = "UpdateStreamingDistributionResult";
|
|
3378
|
+
const _UTS = "UpdateTrustStore";
|
|
3379
|
+
const _UTSR = "UpdateTrustStoreRequest";
|
|
3380
|
+
const _UTSRp = "UpdateTrustStoreResult";
|
|
3312
3381
|
const _UVO = "UpdateVpcOrigin";
|
|
3313
3382
|
const _UVOR = "UpdateVpcOriginRequest";
|
|
3314
3383
|
const _UVORp = "UpdateVpcOriginResult";
|
|
3315
|
-
const _V = "
|
|
3384
|
+
const _V = "Version";
|
|
3316
3385
|
const _VC = "ViewerCertificate";
|
|
3317
3386
|
const _VDC = "VerifyDnsConfiguration";
|
|
3318
3387
|
const _VDCR = "VerifyDnsConfigurationRequest";
|
|
3319
3388
|
const _VDCRe = "VerifyDnsConfigurationResult";
|
|
3389
|
+
const _VMC = "ViewerMtlsConfig";
|
|
3320
3390
|
const _VO = "VpcOrigin";
|
|
3321
3391
|
const _VOC = "VpcOriginConfig";
|
|
3322
3392
|
const _VOEC = "VpcOriginEndpointConfig";
|
|
@@ -3329,6 +3399,7 @@ const _VTD = "ValidationTokenDetails";
|
|
|
3329
3399
|
const _VTDL = "ValidationTokenDetailList";
|
|
3330
3400
|
const _VTDa = "ValidationTokenDetail";
|
|
3331
3401
|
const _VTH = "ValidationTokenHost";
|
|
3402
|
+
const _Va = "Value";
|
|
3332
3403
|
const _W = "Weight";
|
|
3333
3404
|
const _WA = "WebAcl";
|
|
3334
3405
|
const _WAC = "WebAclCustomization";
|
|
@@ -3504,6 +3575,7 @@ var BatchTooLarge = [
|
|
|
3504
3575
|
[0],
|
|
3505
3576
|
];
|
|
3506
3577
|
schema.TypeRegistry.for(n0).registerError(BatchTooLarge, BatchTooLarge$1);
|
|
3578
|
+
var CaCertificatesBundleS3Location = [3, n0, _CCBSL, 0, [_B, _K, _R, _V], [0, 0, 0, 0]];
|
|
3507
3579
|
var CacheBehavior = [
|
|
3508
3580
|
3,
|
|
3509
3581
|
n0,
|
|
@@ -3729,6 +3801,29 @@ var ConflictingAliasesList = [
|
|
|
3729
3801
|
[_NM, _MI, _Q, _I],
|
|
3730
3802
|
[0, 1, 1, [() => ConflictingAliases, 0]],
|
|
3731
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
|
+
];
|
|
3732
3827
|
var ConnectionGroup = [
|
|
3733
3828
|
3,
|
|
3734
3829
|
n0,
|
|
@@ -3819,7 +3914,7 @@ var ContinuousDeploymentPolicySummary = [
|
|
|
3819
3914
|
[_CDP],
|
|
3820
3915
|
[[() => ContinuousDeploymentPolicy, 0]],
|
|
3821
3916
|
];
|
|
3822
|
-
var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He,
|
|
3917
|
+
var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He, _Va], [0, 0]];
|
|
3823
3918
|
var ContinuousDeploymentSingleWeightConfig = [
|
|
3824
3919
|
3,
|
|
3825
3920
|
n0,
|
|
@@ -3835,13 +3930,13 @@ var CopyDistributionRequest = [
|
|
|
3835
3930
|
n0,
|
|
3836
3931
|
_CDR,
|
|
3837
3932
|
0,
|
|
3838
|
-
[_PDI,
|
|
3933
|
+
[_PDI, _Sta, _IM, _CR, _E],
|
|
3839
3934
|
[
|
|
3840
3935
|
[0, 1],
|
|
3841
3936
|
[
|
|
3842
3937
|
2,
|
|
3843
3938
|
{
|
|
3844
|
-
[_hH]:
|
|
3939
|
+
[_hH]: _Sta,
|
|
3845
3940
|
},
|
|
3846
3941
|
],
|
|
3847
3942
|
[
|
|
@@ -3976,6 +4071,36 @@ var CreateCloudFrontOriginAccessIdentityResult = [
|
|
|
3976
4071
|
],
|
|
3977
4072
|
],
|
|
3978
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
|
+
];
|
|
3979
4104
|
var CreateConnectionGroupRequest = [
|
|
3980
4105
|
3,
|
|
3981
4106
|
n0,
|
|
@@ -4657,6 +4782,30 @@ var CreateStreamingDistributionWithTagsResult = [
|
|
|
4657
4782
|
],
|
|
4658
4783
|
],
|
|
4659
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
|
+
];
|
|
4660
4809
|
var CreateVpcOriginRequest = [
|
|
4661
4810
|
3,
|
|
4662
4811
|
n0,
|
|
@@ -4792,6 +4941,22 @@ var DeleteCloudFrontOriginAccessIdentityRequest = [
|
|
|
4792
4941
|
],
|
|
4793
4942
|
],
|
|
4794
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
|
+
];
|
|
4795
4960
|
var DeleteConnectionGroupRequest = [
|
|
4796
4961
|
3,
|
|
4797
4962
|
n0,
|
|
@@ -5020,6 +5185,22 @@ var DeleteStreamingDistributionRequest = [
|
|
|
5020
5185
|
],
|
|
5021
5186
|
],
|
|
5022
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
|
+
];
|
|
5023
5204
|
var DeleteVpcOriginRequest = [
|
|
5024
5205
|
3,
|
|
5025
5206
|
n0,
|
|
@@ -5052,18 +5233,50 @@ var DeleteVpcOriginResult = [
|
|
|
5052
5233
|
],
|
|
5053
5234
|
],
|
|
5054
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
|
+
];
|
|
5055
5268
|
var DescribeFunctionRequest = [
|
|
5056
5269
|
3,
|
|
5057
5270
|
n0,
|
|
5058
5271
|
_DFRe,
|
|
5059
5272
|
0,
|
|
5060
|
-
[_N,
|
|
5273
|
+
[_N, _St],
|
|
5061
5274
|
[
|
|
5062
5275
|
[0, 1],
|
|
5063
5276
|
[
|
|
5064
5277
|
0,
|
|
5065
5278
|
{
|
|
5066
|
-
[_hQ]:
|
|
5279
|
+
[_hQ]: _St,
|
|
5067
5280
|
},
|
|
5068
5281
|
],
|
|
5069
5282
|
],
|
|
@@ -5215,15 +5428,17 @@ var DistributionConfig = [
|
|
|
5215
5428
|
_PC,
|
|
5216
5429
|
_E,
|
|
5217
5430
|
_VC,
|
|
5218
|
-
|
|
5431
|
+
_Re,
|
|
5219
5432
|
_WACLI,
|
|
5220
5433
|
_HV,
|
|
5221
5434
|
_IIPVE,
|
|
5222
5435
|
_CDPI,
|
|
5223
|
-
|
|
5436
|
+
_Sta,
|
|
5224
5437
|
_AILI,
|
|
5225
5438
|
_TCe,
|
|
5226
5439
|
_CMo,
|
|
5440
|
+
_VMC,
|
|
5441
|
+
_CFA,
|
|
5227
5442
|
],
|
|
5228
5443
|
[
|
|
5229
5444
|
0,
|
|
@@ -5248,6 +5463,8 @@ var DistributionConfig = [
|
|
|
5248
5463
|
0,
|
|
5249
5464
|
[() => TenantConfig, 0],
|
|
5250
5465
|
0,
|
|
5466
|
+
() => ViewerMtlsConfig,
|
|
5467
|
+
() => ConnectionFunctionAssociation,
|
|
5251
5468
|
],
|
|
5252
5469
|
];
|
|
5253
5470
|
var DistributionConfigWithTags = [
|
|
@@ -5321,14 +5538,16 @@ var DistributionSummary = [
|
|
|
5321
5538
|
_PC,
|
|
5322
5539
|
_E,
|
|
5323
5540
|
_VC,
|
|
5324
|
-
|
|
5541
|
+
_Re,
|
|
5325
5542
|
_WACLI,
|
|
5326
5543
|
_HV,
|
|
5327
5544
|
_IIPVE,
|
|
5328
5545
|
_AICPRl,
|
|
5329
|
-
|
|
5546
|
+
_Sta,
|
|
5330
5547
|
_CMo,
|
|
5331
5548
|
_AILI,
|
|
5549
|
+
_VMC,
|
|
5550
|
+
_CFA,
|
|
5332
5551
|
],
|
|
5333
5552
|
[
|
|
5334
5553
|
0,
|
|
@@ -5355,6 +5574,8 @@ var DistributionSummary = [
|
|
|
5355
5574
|
2,
|
|
5356
5575
|
0,
|
|
5357
5576
|
0,
|
|
5577
|
+
() => ViewerMtlsConfig,
|
|
5578
|
+
() => ConnectionFunctionAssociation,
|
|
5358
5579
|
],
|
|
5359
5580
|
];
|
|
5360
5581
|
var DistributionTenant = [
|
|
@@ -5374,7 +5595,7 @@ var DistributionTenantSummary = [
|
|
|
5374
5595
|
[_Id, _DI, _N, _Ar, _Do, _CGI, _Cu, _CTr, _LMT, _ET, _E, _S],
|
|
5375
5596
|
[0, 0, 0, 0, () => DomainResultList, 0, [() => Customizations, 0], 4, 4, 0, 2, 0],
|
|
5376
5597
|
];
|
|
5377
|
-
var DnsConfiguration = [3, n0, _DCn, 0, [_Dom, _S,
|
|
5598
|
+
var DnsConfiguration = [3, n0, _DCn, 0, [_Dom, _S, _Rea], [0, 0, 0]];
|
|
5378
5599
|
var DomainConflict = [3, n0, _DCo, 0, [_Dom, _RT, _RI, _AIc], [0, 0, 0, 0]];
|
|
5379
5600
|
var DomainItem = [3, n0, _DIo, 0, [_Dom], [0]];
|
|
5380
5601
|
var DomainResult = [3, n0, _DR, 0, [_Dom, _S], [0, 0]];
|
|
@@ -5618,7 +5839,7 @@ var FunctionList = [
|
|
|
5618
5839
|
[_NM, _MI, _Q, _I],
|
|
5619
5840
|
[0, 1, 1, [() => FunctionSummaryList, 0]],
|
|
5620
5841
|
];
|
|
5621
|
-
var FunctionMetadata = [3, n0, _FM, 0, [_FARN,
|
|
5842
|
+
var FunctionMetadata = [3, n0, _FM, 0, [_FARN, _St, _CTr, _LMT], [0, 0, 4, 4]];
|
|
5622
5843
|
var FunctionSizeLimitExceeded = [
|
|
5623
5844
|
-3,
|
|
5624
5845
|
n0,
|
|
@@ -5740,6 +5961,44 @@ var GetCloudFrontOriginAccessIdentityResult = [
|
|
|
5740
5961
|
],
|
|
5741
5962
|
],
|
|
5742
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
|
+
];
|
|
5743
6002
|
var GetConnectionGroupByRoutingEndpointRequest = [
|
|
5744
6003
|
3,
|
|
5745
6004
|
n0,
|
|
@@ -5977,13 +6236,13 @@ var GetFunctionRequest = [
|
|
|
5977
6236
|
n0,
|
|
5978
6237
|
_GFR,
|
|
5979
6238
|
0,
|
|
5980
|
-
[_N,
|
|
6239
|
+
[_N, _St],
|
|
5981
6240
|
[
|
|
5982
6241
|
[0, 1],
|
|
5983
6242
|
[
|
|
5984
6243
|
0,
|
|
5985
6244
|
{
|
|
5986
|
-
[_hQ]:
|
|
6245
|
+
[_hQ]: _St,
|
|
5987
6246
|
},
|
|
5988
6247
|
],
|
|
5989
6248
|
],
|
|
@@ -6274,6 +6533,23 @@ var GetStreamingDistributionResult = [
|
|
|
6274
6533
|
],
|
|
6275
6534
|
],
|
|
6276
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
|
+
];
|
|
6277
6553
|
var GetVpcOriginRequest = [3, n0, _GVOR, 0, [_Id], [[0, 1]]];
|
|
6278
6554
|
var GetVpcOriginResult = [
|
|
6279
6555
|
3,
|
|
@@ -6886,6 +7162,15 @@ var ListConflictingAliasesResult = [
|
|
|
6886
7162
|
[_CAL],
|
|
6887
7163
|
[[() => ConflictingAliasesList, 16]],
|
|
6888
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
|
+
];
|
|
6889
7174
|
var ListConnectionGroupsRequest = [
|
|
6890
7175
|
3,
|
|
6891
7176
|
n0,
|
|
@@ -6991,6 +7276,41 @@ var ListDistributionsByCachePolicyIdResult = [
|
|
|
6991
7276
|
[_DIL],
|
|
6992
7277
|
[[() => DistributionIdList, 16]],
|
|
6993
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
|
+
];
|
|
6994
7314
|
var ListDistributionsByConnectionModeRequest = [
|
|
6995
7315
|
3,
|
|
6996
7316
|
n0,
|
|
@@ -7157,6 +7477,41 @@ var ListDistributionsByResponseHeadersPolicyIdResult = [
|
|
|
7157
7477
|
[_DIL],
|
|
7158
7478
|
[[() => DistributionIdList, 16]],
|
|
7159
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
|
+
];
|
|
7160
7515
|
var ListDistributionsByVpcOriginIdRequest = [
|
|
7161
7516
|
3,
|
|
7162
7517
|
n0,
|
|
@@ -7350,7 +7705,7 @@ var ListFunctionsRequest = [
|
|
|
7350
7705
|
n0,
|
|
7351
7706
|
_LFR,
|
|
7352
7707
|
0,
|
|
7353
|
-
[_Ma, _MI,
|
|
7708
|
+
[_Ma, _MI, _St],
|
|
7354
7709
|
[
|
|
7355
7710
|
[
|
|
7356
7711
|
0,
|
|
@@ -7367,7 +7722,7 @@ var ListFunctionsRequest = [
|
|
|
7367
7722
|
[
|
|
7368
7723
|
0,
|
|
7369
7724
|
{
|
|
7370
|
-
[_hQ]:
|
|
7725
|
+
[_hQ]: _St,
|
|
7371
7726
|
},
|
|
7372
7727
|
],
|
|
7373
7728
|
],
|
|
@@ -7678,6 +8033,15 @@ var ListTagsForResourceRequest = [
|
|
|
7678
8033
|
],
|
|
7679
8034
|
];
|
|
7680
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
|
+
];
|
|
7681
8045
|
var ListVpcOriginsRequest = [
|
|
7682
8046
|
3,
|
|
7683
8047
|
n0,
|
|
@@ -8139,7 +8503,7 @@ var OriginRequestPolicySummary = [
|
|
|
8139
8503
|
var Origins = [3, n0, _O, 0, [_Q, _I], [1, [() => OriginList, 0]]];
|
|
8140
8504
|
var OriginShield = [3, n0, _OS, 0, [_E, _OSR], [2, 0]];
|
|
8141
8505
|
var OriginSslProtocols = [3, n0, _OSP, 0, [_Q, _I], [1, [() => SslProtocolsList, 0]]];
|
|
8142
|
-
var Parameter = [3, n0, _Par, 0, [_N,
|
|
8506
|
+
var Parameter = [3, n0, _Par, 0, [_N, _Va], [0, 0]];
|
|
8143
8507
|
var ParameterDefinition = [
|
|
8144
8508
|
3,
|
|
8145
8509
|
n0,
|
|
@@ -8211,12 +8575,12 @@ var PublicKeyList = [
|
|
|
8211
8575
|
[0, 1, 1, [() => PublicKeySummaryList, 0]],
|
|
8212
8576
|
];
|
|
8213
8577
|
var PublicKeySummary = [3, n0, _PKS, 0, [_Id, _N, _CTr, _EK, _Co], [0, 0, 4, 0, 0]];
|
|
8214
|
-
var
|
|
8578
|
+
var PublishConnectionFunctionRequest = [
|
|
8215
8579
|
3,
|
|
8216
8580
|
n0,
|
|
8217
|
-
|
|
8581
|
+
_PCFR,
|
|
8218
8582
|
0,
|
|
8219
|
-
[
|
|
8583
|
+
[_Id, _IM],
|
|
8220
8584
|
[
|
|
8221
8585
|
[0, 1],
|
|
8222
8586
|
[
|
|
@@ -8227,21 +8591,45 @@ var PublishFunctionRequest = [
|
|
|
8227
8591
|
],
|
|
8228
8592
|
],
|
|
8229
8593
|
];
|
|
8230
|
-
var
|
|
8231
|
-
var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_RA, _PD], [0, 0]];
|
|
8232
|
-
var PutResourcePolicyResult = [3, n0, _PRPRu, 0, [_RA], [0]];
|
|
8233
|
-
var QueryArgProfile = [3, n0, _QAP, 0, [_QA, _PI], [0, 0]];
|
|
8234
|
-
var QueryArgProfileConfig = [
|
|
8594
|
+
var PublishConnectionFunctionResult = [
|
|
8235
8595
|
3,
|
|
8236
8596
|
n0,
|
|
8237
|
-
|
|
8597
|
+
_PCFRu,
|
|
8238
8598
|
0,
|
|
8239
|
-
[
|
|
8240
|
-
[
|
|
8599
|
+
[_CFS],
|
|
8600
|
+
[[() => ConnectionFunctionSummary, 16]],
|
|
8241
8601
|
];
|
|
8242
|
-
var
|
|
8243
|
-
|
|
8244
|
-
n0,
|
|
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,
|
|
8632
|
+
n0,
|
|
8245
8633
|
_QAPE,
|
|
8246
8634
|
{
|
|
8247
8635
|
[_e]: _c,
|
|
@@ -8424,7 +8812,7 @@ var ResponseHeadersPolicyCorsConfig = [
|
|
|
8424
8812
|
2,
|
|
8425
8813
|
],
|
|
8426
8814
|
];
|
|
8427
|
-
var ResponseHeadersPolicyCustomHeader = [3, n0, _RHPCH, 0, [_He,
|
|
8815
|
+
var ResponseHeadersPolicyCustomHeader = [3, n0, _RHPCH, 0, [_He, _Va, _Ov], [0, 0, 2]];
|
|
8428
8816
|
var ResponseHeadersPolicyCustomHeadersConfig = [
|
|
8429
8817
|
3,
|
|
8430
8818
|
n0,
|
|
@@ -8511,7 +8899,7 @@ var ResponseHeadersPolicyXSSProtection = [
|
|
|
8511
8899
|
[_Ov, _Pro, _MBo, _RU],
|
|
8512
8900
|
[2, 2, 2, 0],
|
|
8513
8901
|
];
|
|
8514
|
-
var Restrictions = [3, n0,
|
|
8902
|
+
var Restrictions = [3, n0, _Re, 0, [_GRe], [[() => GeoRestriction, 0]]];
|
|
8515
8903
|
var S3Origin = [3, n0, _SO, 0, [_DN, _OAIr], [0, 0]];
|
|
8516
8904
|
var S3OriginConfig = [3, n0, _SOC, 0, [_OAIr, _ORT], [0, 1]];
|
|
8517
8905
|
var SessionStickinessConfig = [3, n0, _SSC, 0, [_ITTL, _MTTLax], [1, 1]];
|
|
@@ -8613,7 +9001,7 @@ var StringSchemaConfig = [
|
|
|
8613
9001
|
[_Co, _DV, _Req],
|
|
8614
9002
|
[[() => sensitiveStringType, 0], 0, 2],
|
|
8615
9003
|
];
|
|
8616
|
-
var Tag = [3, n0, _Tag, 0, [_K,
|
|
9004
|
+
var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
|
|
8617
9005
|
var TagKeys = [3, n0, _TK, 0, [_I], [[() => TagKeyList, 0]]];
|
|
8618
9006
|
var TagResourceRequest = [
|
|
8619
9007
|
3,
|
|
@@ -8639,6 +9027,32 @@ var TagResourceRequest = [
|
|
|
8639
9027
|
];
|
|
8640
9028
|
var Tags = [3, n0, _Ta, 0, [_I], [[() => TagList, 0]]];
|
|
8641
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
|
+
];
|
|
8642
9056
|
var TestFunctionFailed = [
|
|
8643
9057
|
-3,
|
|
8644
9058
|
n0,
|
|
@@ -8656,7 +9070,7 @@ var TestFunctionRequest = [
|
|
|
8656
9070
|
n0,
|
|
8657
9071
|
_TFR,
|
|
8658
9072
|
0,
|
|
8659
|
-
[_N, _IM,
|
|
9073
|
+
[_N, _IM, _St, _EO],
|
|
8660
9074
|
[
|
|
8661
9075
|
[0, 1],
|
|
8662
9076
|
[
|
|
@@ -9356,6 +9770,23 @@ var TrustedSigners = [
|
|
|
9356
9770
|
[_E, _Q, _I],
|
|
9357
9771
|
[2, 1, [() => AwsAccountNumberList, 0]],
|
|
9358
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
|
+
];
|
|
9359
9790
|
var UnsupportedOperation = [
|
|
9360
9791
|
-3,
|
|
9361
9792
|
n0,
|
|
@@ -9501,6 +9932,40 @@ var UpdateCloudFrontOriginAccessIdentityResult = [
|
|
|
9501
9932
|
],
|
|
9502
9933
|
],
|
|
9503
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
|
+
];
|
|
9504
9969
|
var UpdateConnectionGroupRequest = [
|
|
9505
9970
|
3,
|
|
9506
9971
|
n0,
|
|
@@ -10120,6 +10585,39 @@ var UpdateStreamingDistributionResult = [
|
|
|
10120
10585
|
],
|
|
10121
10586
|
],
|
|
10122
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
|
+
];
|
|
10123
10621
|
var UpdateVpcOriginRequest = [
|
|
10124
10622
|
3,
|
|
10125
10623
|
n0,
|
|
@@ -10177,6 +10675,7 @@ var ViewerCertificate = [
|
|
|
10177
10675
|
[_CFDC, _IAMCI, _ACMCA, _SSLSM, _MPV, _Ce, _CSe],
|
|
10178
10676
|
[2, 0, 0, 0, 0, 0, 0],
|
|
10179
10677
|
];
|
|
10678
|
+
var ViewerMtlsConfig = [3, n0, _VMC, 0, [_Mo, _TSC], [0, () => TrustStoreConfig]];
|
|
10180
10679
|
var VpcOrigin = [
|
|
10181
10680
|
3,
|
|
10182
10681
|
n0,
|
|
@@ -10370,6 +10869,18 @@ var ConflictingAliases = [
|
|
|
10370
10869
|
},
|
|
10371
10870
|
],
|
|
10372
10871
|
];
|
|
10872
|
+
var ConnectionFunctionSummaryList = [
|
|
10873
|
+
1,
|
|
10874
|
+
n0,
|
|
10875
|
+
_CFSL,
|
|
10876
|
+
0,
|
|
10877
|
+
[
|
|
10878
|
+
() => ConnectionFunctionSummary,
|
|
10879
|
+
{
|
|
10880
|
+
[_xN]: _CFS,
|
|
10881
|
+
},
|
|
10882
|
+
],
|
|
10883
|
+
];
|
|
10373
10884
|
var ConnectionGroupSummaryList = [
|
|
10374
10885
|
1,
|
|
10375
10886
|
n0,
|
|
@@ -11001,6 +11512,18 @@ var TrustedKeyGroupIdList = [
|
|
|
11001
11512
|
},
|
|
11002
11513
|
],
|
|
11003
11514
|
];
|
|
11515
|
+
var TrustStoreList = [
|
|
11516
|
+
1,
|
|
11517
|
+
n0,
|
|
11518
|
+
_TSL,
|
|
11519
|
+
0,
|
|
11520
|
+
[
|
|
11521
|
+
() => TrustStoreSummary,
|
|
11522
|
+
{
|
|
11523
|
+
[_xN]: _TSS,
|
|
11524
|
+
},
|
|
11525
|
+
],
|
|
11526
|
+
];
|
|
11004
11527
|
var ValidationTokenDetailList = [1, n0, _VTDL, 0, () => ValidationTokenDetail];
|
|
11005
11528
|
var VpcOriginSummaryList = [
|
|
11006
11529
|
1,
|
|
@@ -11014,6 +11537,14 @@ var VpcOriginSummaryList = [
|
|
|
11014
11537
|
},
|
|
11015
11538
|
],
|
|
11016
11539
|
];
|
|
11540
|
+
var CaCertificatesBundleSource = [
|
|
11541
|
+
3,
|
|
11542
|
+
n0,
|
|
11543
|
+
_CCBS,
|
|
11544
|
+
0,
|
|
11545
|
+
[_CCBSL],
|
|
11546
|
+
[() => CaCertificatesBundleS3Location],
|
|
11547
|
+
];
|
|
11017
11548
|
var AssociateAlias = [
|
|
11018
11549
|
9,
|
|
11019
11550
|
n0,
|
|
@@ -11084,6 +11615,16 @@ var CreateCloudFrontOriginAccessIdentity = [
|
|
|
11084
11615
|
() => CreateCloudFrontOriginAccessIdentityRequest,
|
|
11085
11616
|
() => CreateCloudFrontOriginAccessIdentityResult,
|
|
11086
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
|
+
];
|
|
11087
11628
|
var CreateConnectionGroup = [
|
|
11088
11629
|
9,
|
|
11089
11630
|
n0,
|
|
@@ -11157,7 +11698,7 @@ var CreateFieldLevelEncryptionProfile = [
|
|
|
11157
11698
|
var CreateFunction = [
|
|
11158
11699
|
9,
|
|
11159
11700
|
n0,
|
|
11160
|
-
|
|
11701
|
+
_CFr,
|
|
11161
11702
|
{
|
|
11162
11703
|
[_h]: ["POST", "/2020-05-31/function", 201],
|
|
11163
11704
|
},
|
|
@@ -11284,6 +11825,16 @@ var CreateStreamingDistributionWithTags = [
|
|
|
11284
11825
|
() => CreateStreamingDistributionWithTagsRequest,
|
|
11285
11826
|
() => CreateStreamingDistributionWithTagsResult,
|
|
11286
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
|
+
];
|
|
11287
11838
|
var CreateVpcOrigin = [
|
|
11288
11839
|
9,
|
|
11289
11840
|
n0,
|
|
@@ -11324,6 +11875,16 @@ var DeleteCloudFrontOriginAccessIdentity = [
|
|
|
11324
11875
|
() => DeleteCloudFrontOriginAccessIdentityRequest,
|
|
11325
11876
|
() => __Unit,
|
|
11326
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
|
+
];
|
|
11327
11888
|
var DeleteConnectionGroup = [
|
|
11328
11889
|
9,
|
|
11329
11890
|
n0,
|
|
@@ -11494,6 +12055,16 @@ var DeleteStreamingDistribution = [
|
|
|
11494
12055
|
() => DeleteStreamingDistributionRequest,
|
|
11495
12056
|
() => __Unit,
|
|
11496
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
|
+
];
|
|
11497
12068
|
var DeleteVpcOrigin = [
|
|
11498
12069
|
9,
|
|
11499
12070
|
n0,
|
|
@@ -11504,6 +12075,16 @@ var DeleteVpcOrigin = [
|
|
|
11504
12075
|
() => DeleteVpcOriginRequest,
|
|
11505
12076
|
() => DeleteVpcOriginResult,
|
|
11506
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
|
+
];
|
|
11507
12088
|
var DescribeFunction = [
|
|
11508
12089
|
9,
|
|
11509
12090
|
n0,
|
|
@@ -11594,6 +12175,16 @@ var GetCloudFrontOriginAccessIdentityConfig = [
|
|
|
11594
12175
|
() => GetCloudFrontOriginAccessIdentityConfigRequest,
|
|
11595
12176
|
() => GetCloudFrontOriginAccessIdentityConfigResult,
|
|
11596
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
|
+
];
|
|
11597
12188
|
var GetConnectionGroup = [
|
|
11598
12189
|
9,
|
|
11599
12190
|
n0,
|
|
@@ -11904,6 +12495,16 @@ var GetStreamingDistributionConfig = [
|
|
|
11904
12495
|
() => GetStreamingDistributionConfigRequest,
|
|
11905
12496
|
() => GetStreamingDistributionConfigResult,
|
|
11906
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
|
+
];
|
|
11907
12508
|
var GetVpcOrigin = [
|
|
11908
12509
|
9,
|
|
11909
12510
|
n0,
|
|
@@ -11954,6 +12555,16 @@ var ListConflictingAliases = [
|
|
|
11954
12555
|
() => ListConflictingAliasesRequest,
|
|
11955
12556
|
() => ListConflictingAliasesResult,
|
|
11956
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
|
+
];
|
|
11957
12568
|
var ListConnectionGroups = [
|
|
11958
12569
|
9,
|
|
11959
12570
|
n0,
|
|
@@ -12004,6 +12615,16 @@ var ListDistributionsByCachePolicyId = [
|
|
|
12004
12615
|
() => ListDistributionsByCachePolicyIdRequest,
|
|
12005
12616
|
() => ListDistributionsByCachePolicyIdResult,
|
|
12006
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
|
+
];
|
|
12007
12628
|
var ListDistributionsByConnectionMode = [
|
|
12008
12629
|
9,
|
|
12009
12630
|
n0,
|
|
@@ -12064,6 +12685,16 @@ var ListDistributionsByResponseHeadersPolicyId = [
|
|
|
12064
12685
|
() => ListDistributionsByResponseHeadersPolicyIdRequest,
|
|
12065
12686
|
() => ListDistributionsByResponseHeadersPolicyIdResult,
|
|
12066
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
|
+
];
|
|
12067
12698
|
var ListDistributionsByVpcOriginId = [
|
|
12068
12699
|
9,
|
|
12069
12700
|
n0,
|
|
@@ -12254,6 +12885,16 @@ var ListTagsForResource = [
|
|
|
12254
12885
|
() => ListTagsForResourceRequest,
|
|
12255
12886
|
() => ListTagsForResourceResult,
|
|
12256
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
|
+
];
|
|
12257
12898
|
var ListVpcOrigins = [
|
|
12258
12899
|
9,
|
|
12259
12900
|
n0,
|
|
@@ -12264,6 +12905,16 @@ var ListVpcOrigins = [
|
|
|
12264
12905
|
() => ListVpcOriginsRequest,
|
|
12265
12906
|
() => ListVpcOriginsResult,
|
|
12266
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
|
+
];
|
|
12267
12918
|
var PublishFunction = [
|
|
12268
12919
|
9,
|
|
12269
12920
|
n0,
|
|
@@ -12294,6 +12945,16 @@ var TagResource = [
|
|
|
12294
12945
|
() => TagResourceRequest,
|
|
12295
12946
|
() => __Unit,
|
|
12296
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
|
+
];
|
|
12297
12958
|
var TestFunction = [
|
|
12298
12959
|
9,
|
|
12299
12960
|
n0,
|
|
@@ -12344,6 +13005,16 @@ var UpdateCloudFrontOriginAccessIdentity = [
|
|
|
12344
13005
|
() => UpdateCloudFrontOriginAccessIdentityRequest,
|
|
12345
13006
|
() => UpdateCloudFrontOriginAccessIdentityResult,
|
|
12346
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
|
+
];
|
|
12347
13018
|
var UpdateConnectionGroup = [
|
|
12348
13019
|
9,
|
|
12349
13020
|
n0,
|
|
@@ -12514,6 +13185,16 @@ var UpdateStreamingDistribution = [
|
|
|
12514
13185
|
() => UpdateStreamingDistributionRequest,
|
|
12515
13186
|
() => UpdateStreamingDistributionResult,
|
|
12516
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
|
+
];
|
|
12517
13198
|
var UpdateVpcOrigin = [
|
|
12518
13199
|
9,
|
|
12519
13200
|
n0,
|
|
@@ -12619,6 +13300,18 @@ class CreateCloudFrontOriginAccessIdentityCommand extends smithyClient.Command
|
|
|
12619
13300
|
.build() {
|
|
12620
13301
|
}
|
|
12621
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
|
+
|
|
12622
13315
|
class CreateConnectionGroupCommand extends smithyClient.Command
|
|
12623
13316
|
.classBuilder()
|
|
12624
13317
|
.ep(commonParams)
|
|
@@ -12859,6 +13552,18 @@ class CreateStreamingDistributionWithTagsCommand extends smithyClient.Command
|
|
|
12859
13552
|
.build() {
|
|
12860
13553
|
}
|
|
12861
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
|
+
|
|
12862
13567
|
class CreateVpcOriginCommand extends smithyClient.Command
|
|
12863
13568
|
.classBuilder()
|
|
12864
13569
|
.ep(commonParams)
|
|
@@ -12907,6 +13612,18 @@ class DeleteCloudFrontOriginAccessIdentityCommand extends smithyClient.Command
|
|
|
12907
13612
|
.build() {
|
|
12908
13613
|
}
|
|
12909
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
|
+
|
|
12910
13627
|
class DeleteConnectionGroupCommand extends smithyClient.Command
|
|
12911
13628
|
.classBuilder()
|
|
12912
13629
|
.ep(commonParams)
|
|
@@ -13111,6 +13828,18 @@ class DeleteStreamingDistributionCommand extends smithyClient.Command
|
|
|
13111
13828
|
.build() {
|
|
13112
13829
|
}
|
|
13113
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
|
+
|
|
13114
13843
|
class DeleteVpcOriginCommand extends smithyClient.Command
|
|
13115
13844
|
.classBuilder()
|
|
13116
13845
|
.ep(commonParams)
|
|
@@ -13123,6 +13852,18 @@ class DeleteVpcOriginCommand extends smithyClient.Command
|
|
|
13123
13852
|
.build() {
|
|
13124
13853
|
}
|
|
13125
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
|
+
|
|
13126
13867
|
class DescribeFunctionCommand extends smithyClient.Command
|
|
13127
13868
|
.classBuilder()
|
|
13128
13869
|
.ep(commonParams)
|
|
@@ -13231,6 +13972,18 @@ class GetCloudFrontOriginAccessIdentityConfigCommand extends smithyClient.Comman
|
|
|
13231
13972
|
.build() {
|
|
13232
13973
|
}
|
|
13233
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
|
+
|
|
13234
13987
|
class GetConnectionGroupByRoutingEndpointCommand extends smithyClient.Command
|
|
13235
13988
|
.classBuilder()
|
|
13236
13989
|
.ep(commonParams)
|
|
@@ -13603,6 +14356,18 @@ class GetStreamingDistributionConfigCommand extends smithyClient.Command
|
|
|
13603
14356
|
.build() {
|
|
13604
14357
|
}
|
|
13605
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
|
+
|
|
13606
14371
|
class GetVpcOriginCommand extends smithyClient.Command
|
|
13607
14372
|
.classBuilder()
|
|
13608
14373
|
.ep(commonParams)
|
|
@@ -13663,6 +14428,18 @@ class ListConflictingAliasesCommand extends smithyClient.Command
|
|
|
13663
14428
|
.build() {
|
|
13664
14429
|
}
|
|
13665
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
|
+
|
|
13666
14443
|
class ListConnectionGroupsCommand extends smithyClient.Command
|
|
13667
14444
|
.classBuilder()
|
|
13668
14445
|
.ep(commonParams)
|
|
@@ -13711,6 +14488,18 @@ class ListDistributionsByCachePolicyIdCommand extends smithyClient.Command
|
|
|
13711
14488
|
.build() {
|
|
13712
14489
|
}
|
|
13713
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
|
+
|
|
13714
14503
|
class ListDistributionsByConnectionModeCommand extends smithyClient.Command
|
|
13715
14504
|
.classBuilder()
|
|
13716
14505
|
.ep(commonParams)
|
|
@@ -13783,6 +14572,18 @@ class ListDistributionsByResponseHeadersPolicyIdCommand extends smithyClient.Com
|
|
|
13783
14572
|
.build() {
|
|
13784
14573
|
}
|
|
13785
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
|
+
|
|
13786
14587
|
class ListDistributionsByVpcOriginIdCommand extends smithyClient.Command
|
|
13787
14588
|
.classBuilder()
|
|
13788
14589
|
.ep(commonParams)
|
|
@@ -14023,6 +14824,18 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
14023
14824
|
.build() {
|
|
14024
14825
|
}
|
|
14025
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
|
+
|
|
14026
14839
|
class ListVpcOriginsCommand extends smithyClient.Command
|
|
14027
14840
|
.classBuilder()
|
|
14028
14841
|
.ep(commonParams)
|
|
@@ -14035,6 +14848,18 @@ class ListVpcOriginsCommand extends smithyClient.Command
|
|
|
14035
14848
|
.build() {
|
|
14036
14849
|
}
|
|
14037
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
|
+
|
|
14038
14863
|
class PublishFunctionCommand extends smithyClient.Command
|
|
14039
14864
|
.classBuilder()
|
|
14040
14865
|
.ep(commonParams)
|
|
@@ -14071,6 +14896,18 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
14071
14896
|
.build() {
|
|
14072
14897
|
}
|
|
14073
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
|
+
|
|
14074
14911
|
class TestFunctionCommand extends smithyClient.Command
|
|
14075
14912
|
.classBuilder()
|
|
14076
14913
|
.ep(commonParams)
|
|
@@ -14131,6 +14968,18 @@ class UpdateCloudFrontOriginAccessIdentityCommand extends smithyClient.Command
|
|
|
14131
14968
|
.build() {
|
|
14132
14969
|
}
|
|
14133
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
|
+
|
|
14134
14983
|
class UpdateConnectionGroupCommand extends smithyClient.Command
|
|
14135
14984
|
.classBuilder()
|
|
14136
14985
|
.ep(commonParams)
|
|
@@ -14335,6 +15184,18 @@ class UpdateStreamingDistributionCommand extends smithyClient.Command
|
|
|
14335
15184
|
.build() {
|
|
14336
15185
|
}
|
|
14337
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
|
+
|
|
14338
15199
|
class UpdateVpcOriginCommand extends smithyClient.Command
|
|
14339
15200
|
.classBuilder()
|
|
14340
15201
|
.ep(commonParams)
|
|
@@ -14367,6 +15228,7 @@ const commands = {
|
|
|
14367
15228
|
CreateAnycastIpListCommand,
|
|
14368
15229
|
CreateCachePolicyCommand,
|
|
14369
15230
|
CreateCloudFrontOriginAccessIdentityCommand,
|
|
15231
|
+
CreateConnectionFunctionCommand,
|
|
14370
15232
|
CreateConnectionGroupCommand,
|
|
14371
15233
|
CreateContinuousDeploymentPolicyCommand,
|
|
14372
15234
|
CreateDistributionCommand,
|
|
@@ -14387,10 +15249,12 @@ const commands = {
|
|
|
14387
15249
|
CreateResponseHeadersPolicyCommand,
|
|
14388
15250
|
CreateStreamingDistributionCommand,
|
|
14389
15251
|
CreateStreamingDistributionWithTagsCommand,
|
|
15252
|
+
CreateTrustStoreCommand,
|
|
14390
15253
|
CreateVpcOriginCommand,
|
|
14391
15254
|
DeleteAnycastIpListCommand,
|
|
14392
15255
|
DeleteCachePolicyCommand,
|
|
14393
15256
|
DeleteCloudFrontOriginAccessIdentityCommand,
|
|
15257
|
+
DeleteConnectionFunctionCommand,
|
|
14394
15258
|
DeleteConnectionGroupCommand,
|
|
14395
15259
|
DeleteContinuousDeploymentPolicyCommand,
|
|
14396
15260
|
DeleteDistributionCommand,
|
|
@@ -14408,7 +15272,9 @@ const commands = {
|
|
|
14408
15272
|
DeleteResourcePolicyCommand,
|
|
14409
15273
|
DeleteResponseHeadersPolicyCommand,
|
|
14410
15274
|
DeleteStreamingDistributionCommand,
|
|
15275
|
+
DeleteTrustStoreCommand,
|
|
14411
15276
|
DeleteVpcOriginCommand,
|
|
15277
|
+
DescribeConnectionFunctionCommand,
|
|
14412
15278
|
DescribeFunctionCommand,
|
|
14413
15279
|
DescribeKeyValueStoreCommand,
|
|
14414
15280
|
DisassociateDistributionTenantWebACLCommand,
|
|
@@ -14418,6 +15284,7 @@ const commands = {
|
|
|
14418
15284
|
GetCachePolicyConfigCommand,
|
|
14419
15285
|
GetCloudFrontOriginAccessIdentityCommand,
|
|
14420
15286
|
GetCloudFrontOriginAccessIdentityConfigCommand,
|
|
15287
|
+
GetConnectionFunctionCommand,
|
|
14421
15288
|
GetConnectionGroupCommand,
|
|
14422
15289
|
GetConnectionGroupByRoutingEndpointCommand,
|
|
14423
15290
|
GetContinuousDeploymentPolicyCommand,
|
|
@@ -14449,22 +15316,26 @@ const commands = {
|
|
|
14449
15316
|
GetResponseHeadersPolicyConfigCommand,
|
|
14450
15317
|
GetStreamingDistributionCommand,
|
|
14451
15318
|
GetStreamingDistributionConfigCommand,
|
|
15319
|
+
GetTrustStoreCommand,
|
|
14452
15320
|
GetVpcOriginCommand,
|
|
14453
15321
|
ListAnycastIpListsCommand,
|
|
14454
15322
|
ListCachePoliciesCommand,
|
|
14455
15323
|
ListCloudFrontOriginAccessIdentitiesCommand,
|
|
14456
15324
|
ListConflictingAliasesCommand,
|
|
15325
|
+
ListConnectionFunctionsCommand,
|
|
14457
15326
|
ListConnectionGroupsCommand,
|
|
14458
15327
|
ListContinuousDeploymentPoliciesCommand,
|
|
14459
15328
|
ListDistributionsCommand,
|
|
14460
15329
|
ListDistributionsByAnycastIpListIdCommand,
|
|
14461
15330
|
ListDistributionsByCachePolicyIdCommand,
|
|
15331
|
+
ListDistributionsByConnectionFunctionCommand,
|
|
14462
15332
|
ListDistributionsByConnectionModeCommand,
|
|
14463
15333
|
ListDistributionsByKeyGroupCommand,
|
|
14464
15334
|
ListDistributionsByOriginRequestPolicyIdCommand,
|
|
14465
15335
|
ListDistributionsByOwnedResourceCommand,
|
|
14466
15336
|
ListDistributionsByRealtimeLogConfigCommand,
|
|
14467
15337
|
ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
15338
|
+
ListDistributionsByTrustStoreCommand,
|
|
14468
15339
|
ListDistributionsByVpcOriginIdCommand,
|
|
14469
15340
|
ListDistributionsByWebACLIdCommand,
|
|
14470
15341
|
ListDistributionTenantsCommand,
|
|
@@ -14484,15 +15355,19 @@ const commands = {
|
|
|
14484
15355
|
ListResponseHeadersPoliciesCommand,
|
|
14485
15356
|
ListStreamingDistributionsCommand,
|
|
14486
15357
|
ListTagsForResourceCommand,
|
|
15358
|
+
ListTrustStoresCommand,
|
|
14487
15359
|
ListVpcOriginsCommand,
|
|
15360
|
+
PublishConnectionFunctionCommand,
|
|
14488
15361
|
PublishFunctionCommand,
|
|
14489
15362
|
PutResourcePolicyCommand,
|
|
14490
15363
|
TagResourceCommand,
|
|
15364
|
+
TestConnectionFunctionCommand,
|
|
14491
15365
|
TestFunctionCommand,
|
|
14492
15366
|
UntagResourceCommand,
|
|
14493
15367
|
UpdateAnycastIpListCommand,
|
|
14494
15368
|
UpdateCachePolicyCommand,
|
|
14495
15369
|
UpdateCloudFrontOriginAccessIdentityCommand,
|
|
15370
|
+
UpdateConnectionFunctionCommand,
|
|
14496
15371
|
UpdateConnectionGroupCommand,
|
|
14497
15372
|
UpdateContinuousDeploymentPolicyCommand,
|
|
14498
15373
|
UpdateDistributionCommand,
|
|
@@ -14510,6 +15385,7 @@ const commands = {
|
|
|
14510
15385
|
UpdateRealtimeLogConfigCommand,
|
|
14511
15386
|
UpdateResponseHeadersPolicyCommand,
|
|
14512
15387
|
UpdateStreamingDistributionCommand,
|
|
15388
|
+
UpdateTrustStoreCommand,
|
|
14513
15389
|
UpdateVpcOriginCommand,
|
|
14514
15390
|
VerifyDnsConfigurationCommand,
|
|
14515
15391
|
};
|
|
@@ -14519,14 +15395,20 @@ smithyClient.createAggregatedClient(commands, CloudFront);
|
|
|
14519
15395
|
|
|
14520
15396
|
const paginateListCloudFrontOriginAccessIdentities = core.createPaginator(CloudFrontClient, ListCloudFrontOriginAccessIdentitiesCommand, "Marker", "CloudFrontOriginAccessIdentityList.NextMarker", "MaxItems");
|
|
14521
15397
|
|
|
15398
|
+
const paginateListConnectionFunctions = core.createPaginator(CloudFrontClient, ListConnectionFunctionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
15399
|
+
|
|
14522
15400
|
const paginateListConnectionGroups = core.createPaginator(CloudFrontClient, ListConnectionGroupsCommand, "Marker", "NextMarker", "MaxItems");
|
|
14523
15401
|
|
|
14524
15402
|
const paginateListDistributionTenantsByCustomization = core.createPaginator(CloudFrontClient, ListDistributionTenantsByCustomizationCommand, "Marker", "NextMarker", "MaxItems");
|
|
14525
15403
|
|
|
14526
15404
|
const paginateListDistributionTenants = core.createPaginator(CloudFrontClient, ListDistributionTenantsCommand, "Marker", "NextMarker", "MaxItems");
|
|
14527
15405
|
|
|
15406
|
+
const paginateListDistributionsByConnectionFunction = core.createPaginator(CloudFrontClient, ListDistributionsByConnectionFunctionCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
15407
|
+
|
|
14528
15408
|
const paginateListDistributionsByConnectionMode = core.createPaginator(CloudFrontClient, ListDistributionsByConnectionModeCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
14529
15409
|
|
|
15410
|
+
const paginateListDistributionsByTrustStore = core.createPaginator(CloudFrontClient, ListDistributionsByTrustStoreCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
15411
|
+
|
|
14530
15412
|
const paginateListDistributions = core.createPaginator(CloudFrontClient, ListDistributionsCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|
|
14531
15413
|
|
|
14532
15414
|
const paginateListDomainConflicts = core.createPaginator(CloudFrontClient, ListDomainConflictsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -14543,6 +15425,8 @@ const paginateListPublicKeys = core.createPaginator(CloudFrontClient, ListPublic
|
|
|
14543
15425
|
|
|
14544
15426
|
const paginateListStreamingDistributions = core.createPaginator(CloudFrontClient, ListStreamingDistributionsCommand, "Marker", "StreamingDistributionList.NextMarker", "MaxItems");
|
|
14545
15427
|
|
|
15428
|
+
const paginateListTrustStores = core.createPaginator(CloudFrontClient, ListTrustStoresCommand, "Marker", "NextMarker", "MaxItems");
|
|
15429
|
+
|
|
14546
15430
|
const checkState$3 = async (client, input) => {
|
|
14547
15431
|
let reason;
|
|
14548
15432
|
try {
|
|
@@ -14803,6 +15687,18 @@ const SSLSupportMethod = {
|
|
|
14803
15687
|
static_ip: "static-ip",
|
|
14804
15688
|
vip: "vip",
|
|
14805
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
|
+
};
|
|
14806
15702
|
const ContinuousDeploymentPolicyType = {
|
|
14807
15703
|
SingleHeader: "SingleHeader",
|
|
14808
15704
|
SingleWeight: "SingleWeight",
|
|
@@ -14822,14 +15718,6 @@ const DomainStatus = {
|
|
|
14822
15718
|
const Format = {
|
|
14823
15719
|
URLEncoded: "URLEncoded",
|
|
14824
15720
|
};
|
|
14825
|
-
const FunctionRuntime = {
|
|
14826
|
-
cloudfront_js_1_0: "cloudfront-js-1.0",
|
|
14827
|
-
cloudfront_js_2_0: "cloudfront-js-2.0",
|
|
14828
|
-
};
|
|
14829
|
-
const FunctionStage = {
|
|
14830
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
14831
|
-
LIVE: "LIVE",
|
|
14832
|
-
};
|
|
14833
15721
|
const ImportSourceType = {
|
|
14834
15722
|
S3: "S3",
|
|
14835
15723
|
};
|
|
@@ -14884,6 +15772,11 @@ const ReferrerPolicyList = {
|
|
|
14884
15772
|
strict_origin_when_cross_origin: "strict-origin-when-cross-origin",
|
|
14885
15773
|
unsafe_url: "unsafe-url",
|
|
14886
15774
|
};
|
|
15775
|
+
const TrustStoreStatus = {
|
|
15776
|
+
Active: "active",
|
|
15777
|
+
Failed: "failed",
|
|
15778
|
+
Pending: "pending",
|
|
15779
|
+
};
|
|
14887
15780
|
const ManagedCertificateStatus = {
|
|
14888
15781
|
Expired: "expired",
|
|
14889
15782
|
Failed: "failed",
|
|
@@ -14949,6 +15842,7 @@ exports.CopyDistributionCommand = CopyDistributionCommand;
|
|
|
14949
15842
|
exports.CreateAnycastIpListCommand = CreateAnycastIpListCommand;
|
|
14950
15843
|
exports.CreateCachePolicyCommand = CreateCachePolicyCommand;
|
|
14951
15844
|
exports.CreateCloudFrontOriginAccessIdentityCommand = CreateCloudFrontOriginAccessIdentityCommand;
|
|
15845
|
+
exports.CreateConnectionFunctionCommand = CreateConnectionFunctionCommand;
|
|
14952
15846
|
exports.CreateConnectionGroupCommand = CreateConnectionGroupCommand;
|
|
14953
15847
|
exports.CreateContinuousDeploymentPolicyCommand = CreateContinuousDeploymentPolicyCommand;
|
|
14954
15848
|
exports.CreateDistributionCommand = CreateDistributionCommand;
|
|
@@ -14969,11 +15863,13 @@ exports.CreateRealtimeLogConfigCommand = CreateRealtimeLogConfigCommand;
|
|
|
14969
15863
|
exports.CreateResponseHeadersPolicyCommand = CreateResponseHeadersPolicyCommand;
|
|
14970
15864
|
exports.CreateStreamingDistributionCommand = CreateStreamingDistributionCommand;
|
|
14971
15865
|
exports.CreateStreamingDistributionWithTagsCommand = CreateStreamingDistributionWithTagsCommand;
|
|
15866
|
+
exports.CreateTrustStoreCommand = CreateTrustStoreCommand;
|
|
14972
15867
|
exports.CreateVpcOriginCommand = CreateVpcOriginCommand;
|
|
14973
15868
|
exports.CustomizationActionType = CustomizationActionType;
|
|
14974
15869
|
exports.DeleteAnycastIpListCommand = DeleteAnycastIpListCommand;
|
|
14975
15870
|
exports.DeleteCachePolicyCommand = DeleteCachePolicyCommand;
|
|
14976
15871
|
exports.DeleteCloudFrontOriginAccessIdentityCommand = DeleteCloudFrontOriginAccessIdentityCommand;
|
|
15872
|
+
exports.DeleteConnectionFunctionCommand = DeleteConnectionFunctionCommand;
|
|
14977
15873
|
exports.DeleteConnectionGroupCommand = DeleteConnectionGroupCommand;
|
|
14978
15874
|
exports.DeleteContinuousDeploymentPolicyCommand = DeleteContinuousDeploymentPolicyCommand;
|
|
14979
15875
|
exports.DeleteDistributionCommand = DeleteDistributionCommand;
|
|
@@ -14991,7 +15887,9 @@ exports.DeleteRealtimeLogConfigCommand = DeleteRealtimeLogConfigCommand;
|
|
|
14991
15887
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
14992
15888
|
exports.DeleteResponseHeadersPolicyCommand = DeleteResponseHeadersPolicyCommand;
|
|
14993
15889
|
exports.DeleteStreamingDistributionCommand = DeleteStreamingDistributionCommand;
|
|
15890
|
+
exports.DeleteTrustStoreCommand = DeleteTrustStoreCommand;
|
|
14994
15891
|
exports.DeleteVpcOriginCommand = DeleteVpcOriginCommand;
|
|
15892
|
+
exports.DescribeConnectionFunctionCommand = DescribeConnectionFunctionCommand;
|
|
14995
15893
|
exports.DescribeFunctionCommand = DescribeFunctionCommand;
|
|
14996
15894
|
exports.DescribeKeyValueStoreCommand = DescribeKeyValueStoreCommand;
|
|
14997
15895
|
exports.DisassociateDistributionTenantWebACLCommand = DisassociateDistributionTenantWebACLCommand;
|
|
@@ -15024,6 +15922,7 @@ exports.GetCachePolicyCommand = GetCachePolicyCommand;
|
|
|
15024
15922
|
exports.GetCachePolicyConfigCommand = GetCachePolicyConfigCommand;
|
|
15025
15923
|
exports.GetCloudFrontOriginAccessIdentityCommand = GetCloudFrontOriginAccessIdentityCommand;
|
|
15026
15924
|
exports.GetCloudFrontOriginAccessIdentityConfigCommand = GetCloudFrontOriginAccessIdentityConfigCommand;
|
|
15925
|
+
exports.GetConnectionFunctionCommand = GetConnectionFunctionCommand;
|
|
15027
15926
|
exports.GetConnectionGroupByRoutingEndpointCommand = GetConnectionGroupByRoutingEndpointCommand;
|
|
15028
15927
|
exports.GetConnectionGroupCommand = GetConnectionGroupCommand;
|
|
15029
15928
|
exports.GetContinuousDeploymentPolicyCommand = GetContinuousDeploymentPolicyCommand;
|
|
@@ -15055,6 +15954,7 @@ exports.GetResponseHeadersPolicyCommand = GetResponseHeadersPolicyCommand;
|
|
|
15055
15954
|
exports.GetResponseHeadersPolicyConfigCommand = GetResponseHeadersPolicyConfigCommand;
|
|
15056
15955
|
exports.GetStreamingDistributionCommand = GetStreamingDistributionCommand;
|
|
15057
15956
|
exports.GetStreamingDistributionConfigCommand = GetStreamingDistributionConfigCommand;
|
|
15957
|
+
exports.GetTrustStoreCommand = GetTrustStoreCommand;
|
|
15058
15958
|
exports.GetVpcOriginCommand = GetVpcOriginCommand;
|
|
15059
15959
|
exports.HttpVersion = HttpVersion;
|
|
15060
15960
|
exports.ICPRecordalStatus = ICPRecordalStatus;
|
|
@@ -15099,18 +15999,21 @@ exports.ListAnycastIpListsCommand = ListAnycastIpListsCommand;
|
|
|
15099
15999
|
exports.ListCachePoliciesCommand = ListCachePoliciesCommand;
|
|
15100
16000
|
exports.ListCloudFrontOriginAccessIdentitiesCommand = ListCloudFrontOriginAccessIdentitiesCommand;
|
|
15101
16001
|
exports.ListConflictingAliasesCommand = ListConflictingAliasesCommand;
|
|
16002
|
+
exports.ListConnectionFunctionsCommand = ListConnectionFunctionsCommand;
|
|
15102
16003
|
exports.ListConnectionGroupsCommand = ListConnectionGroupsCommand;
|
|
15103
16004
|
exports.ListContinuousDeploymentPoliciesCommand = ListContinuousDeploymentPoliciesCommand;
|
|
15104
16005
|
exports.ListDistributionTenantsByCustomizationCommand = ListDistributionTenantsByCustomizationCommand;
|
|
15105
16006
|
exports.ListDistributionTenantsCommand = ListDistributionTenantsCommand;
|
|
15106
16007
|
exports.ListDistributionsByAnycastIpListIdCommand = ListDistributionsByAnycastIpListIdCommand;
|
|
15107
16008
|
exports.ListDistributionsByCachePolicyIdCommand = ListDistributionsByCachePolicyIdCommand;
|
|
16009
|
+
exports.ListDistributionsByConnectionFunctionCommand = ListDistributionsByConnectionFunctionCommand;
|
|
15108
16010
|
exports.ListDistributionsByConnectionModeCommand = ListDistributionsByConnectionModeCommand;
|
|
15109
16011
|
exports.ListDistributionsByKeyGroupCommand = ListDistributionsByKeyGroupCommand;
|
|
15110
16012
|
exports.ListDistributionsByOriginRequestPolicyIdCommand = ListDistributionsByOriginRequestPolicyIdCommand;
|
|
15111
16013
|
exports.ListDistributionsByOwnedResourceCommand = ListDistributionsByOwnedResourceCommand;
|
|
15112
16014
|
exports.ListDistributionsByRealtimeLogConfigCommand = ListDistributionsByRealtimeLogConfigCommand;
|
|
15113
16015
|
exports.ListDistributionsByResponseHeadersPolicyIdCommand = ListDistributionsByResponseHeadersPolicyIdCommand;
|
|
16016
|
+
exports.ListDistributionsByTrustStoreCommand = ListDistributionsByTrustStoreCommand;
|
|
15114
16017
|
exports.ListDistributionsByVpcOriginIdCommand = ListDistributionsByVpcOriginIdCommand;
|
|
15115
16018
|
exports.ListDistributionsByWebACLIdCommand = ListDistributionsByWebACLIdCommand;
|
|
15116
16019
|
exports.ListDistributionsCommand = ListDistributionsCommand;
|
|
@@ -15129,6 +16032,7 @@ exports.ListRealtimeLogConfigsCommand = ListRealtimeLogConfigsCommand;
|
|
|
15129
16032
|
exports.ListResponseHeadersPoliciesCommand = ListResponseHeadersPoliciesCommand;
|
|
15130
16033
|
exports.ListStreamingDistributionsCommand = ListStreamingDistributionsCommand;
|
|
15131
16034
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
16035
|
+
exports.ListTrustStoresCommand = ListTrustStoresCommand;
|
|
15132
16036
|
exports.ListVpcOriginsCommand = ListVpcOriginsCommand;
|
|
15133
16037
|
exports.ManagedCertificateStatus = ManagedCertificateStatus;
|
|
15134
16038
|
exports.Method = Method;
|
|
@@ -15169,6 +16073,7 @@ exports.PreconditionFailed = PreconditionFailed$1;
|
|
|
15169
16073
|
exports.PriceClass = PriceClass;
|
|
15170
16074
|
exports.PublicKeyAlreadyExists = PublicKeyAlreadyExists$1;
|
|
15171
16075
|
exports.PublicKeyInUse = PublicKeyInUse$1;
|
|
16076
|
+
exports.PublishConnectionFunctionCommand = PublishConnectionFunctionCommand;
|
|
15172
16077
|
exports.PublishFunctionCommand = PublishFunctionCommand;
|
|
15173
16078
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
15174
16079
|
exports.QueryArgProfileEmpty = QueryArgProfileEmpty$1;
|
|
@@ -15189,6 +16094,7 @@ exports.StagingDistributionInUse = StagingDistributionInUse$1;
|
|
|
15189
16094
|
exports.StreamingDistributionAlreadyExists = StreamingDistributionAlreadyExists$1;
|
|
15190
16095
|
exports.StreamingDistributionNotDisabled = StreamingDistributionNotDisabled$1;
|
|
15191
16096
|
exports.TagResourceCommand = TagResourceCommand;
|
|
16097
|
+
exports.TestConnectionFunctionCommand = TestConnectionFunctionCommand;
|
|
15192
16098
|
exports.TestFunctionCommand = TestFunctionCommand;
|
|
15193
16099
|
exports.TestFunctionFailed = TestFunctionFailed$1;
|
|
15194
16100
|
exports.TooLongCSPInResponseHeadersPolicy = TooLongCSPInResponseHeadersPolicy$1;
|
|
@@ -15243,6 +16149,7 @@ exports.TooManyResponseHeadersPolicies = TooManyResponseHeadersPolicies$1;
|
|
|
15243
16149
|
exports.TooManyStreamingDistributionCNAMEs = TooManyStreamingDistributionCNAMEs$1;
|
|
15244
16150
|
exports.TooManyStreamingDistributions = TooManyStreamingDistributions$1;
|
|
15245
16151
|
exports.TooManyTrustedSigners = TooManyTrustedSigners$1;
|
|
16152
|
+
exports.TrustStoreStatus = TrustStoreStatus;
|
|
15246
16153
|
exports.TrustedKeyGroupDoesNotExist = TrustedKeyGroupDoesNotExist$1;
|
|
15247
16154
|
exports.TrustedSignerDoesNotExist = TrustedSignerDoesNotExist$1;
|
|
15248
16155
|
exports.UnsupportedOperation = UnsupportedOperation$1;
|
|
@@ -15250,6 +16157,7 @@ exports.UntagResourceCommand = UntagResourceCommand;
|
|
|
15250
16157
|
exports.UpdateAnycastIpListCommand = UpdateAnycastIpListCommand;
|
|
15251
16158
|
exports.UpdateCachePolicyCommand = UpdateCachePolicyCommand;
|
|
15252
16159
|
exports.UpdateCloudFrontOriginAccessIdentityCommand = UpdateCloudFrontOriginAccessIdentityCommand;
|
|
16160
|
+
exports.UpdateConnectionFunctionCommand = UpdateConnectionFunctionCommand;
|
|
15253
16161
|
exports.UpdateConnectionGroupCommand = UpdateConnectionGroupCommand;
|
|
15254
16162
|
exports.UpdateContinuousDeploymentPolicyCommand = UpdateContinuousDeploymentPolicyCommand;
|
|
15255
16163
|
exports.UpdateDistributionCommand = UpdateDistributionCommand;
|
|
@@ -15267,16 +16175,21 @@ exports.UpdatePublicKeyCommand = UpdatePublicKeyCommand;
|
|
|
15267
16175
|
exports.UpdateRealtimeLogConfigCommand = UpdateRealtimeLogConfigCommand;
|
|
15268
16176
|
exports.UpdateResponseHeadersPolicyCommand = UpdateResponseHeadersPolicyCommand;
|
|
15269
16177
|
exports.UpdateStreamingDistributionCommand = UpdateStreamingDistributionCommand;
|
|
16178
|
+
exports.UpdateTrustStoreCommand = UpdateTrustStoreCommand;
|
|
15270
16179
|
exports.UpdateVpcOriginCommand = UpdateVpcOriginCommand;
|
|
15271
16180
|
exports.ValidationTokenHost = ValidationTokenHost;
|
|
15272
16181
|
exports.VerifyDnsConfigurationCommand = VerifyDnsConfigurationCommand;
|
|
16182
|
+
exports.ViewerMtlsMode = ViewerMtlsMode;
|
|
15273
16183
|
exports.ViewerProtocolPolicy = ViewerProtocolPolicy;
|
|
15274
16184
|
exports.paginateListCloudFrontOriginAccessIdentities = paginateListCloudFrontOriginAccessIdentities;
|
|
16185
|
+
exports.paginateListConnectionFunctions = paginateListConnectionFunctions;
|
|
15275
16186
|
exports.paginateListConnectionGroups = paginateListConnectionGroups;
|
|
15276
16187
|
exports.paginateListDistributionTenants = paginateListDistributionTenants;
|
|
15277
16188
|
exports.paginateListDistributionTenantsByCustomization = paginateListDistributionTenantsByCustomization;
|
|
15278
16189
|
exports.paginateListDistributions = paginateListDistributions;
|
|
16190
|
+
exports.paginateListDistributionsByConnectionFunction = paginateListDistributionsByConnectionFunction;
|
|
15279
16191
|
exports.paginateListDistributionsByConnectionMode = paginateListDistributionsByConnectionMode;
|
|
16192
|
+
exports.paginateListDistributionsByTrustStore = paginateListDistributionsByTrustStore;
|
|
15280
16193
|
exports.paginateListDomainConflicts = paginateListDomainConflicts;
|
|
15281
16194
|
exports.paginateListInvalidations = paginateListInvalidations;
|
|
15282
16195
|
exports.paginateListInvalidationsForDistributionTenant = paginateListInvalidationsForDistributionTenant;
|
|
@@ -15284,6 +16197,7 @@ exports.paginateListKeyValueStores = paginateListKeyValueStores;
|
|
|
15284
16197
|
exports.paginateListOriginAccessControls = paginateListOriginAccessControls;
|
|
15285
16198
|
exports.paginateListPublicKeys = paginateListPublicKeys;
|
|
15286
16199
|
exports.paginateListStreamingDistributions = paginateListStreamingDistributions;
|
|
16200
|
+
exports.paginateListTrustStores = paginateListTrustStores;
|
|
15287
16201
|
exports.waitForDistributionDeployed = waitForDistributionDeployed;
|
|
15288
16202
|
exports.waitForInvalidationCompleted = waitForInvalidationCompleted;
|
|
15289
16203
|
exports.waitForInvalidationForDistributionTenantCompleted = waitForInvalidationForDistributionTenantCompleted;
|