@aws-sdk/client-cloudfront 3.921.0 → 3.925.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 +40 -0
- package/dist-cjs/index.js +329 -16
- package/dist-es/CloudFront.js +10 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +22 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +22 -0
- package/dist-es/commands/ListDistributionsByOwnedResourceCommand.js +22 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +22 -0
- package/dist-es/commands/UpdateAnycastIpListCommand.js +22 -0
- package/dist-es/commands/index.js +6 -1
- package/dist-es/models/models_0.js +5 -5
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restXml.js +225 -7
- package/dist-types/CloudFront.d.ts +35 -0
- package/dist-types/CloudFrontClient.d.ts +7 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CopyDistributionCommand.d.ts +1 -0
- package/dist-types/commands/CreateAnycastIpListCommand.d.ts +2 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +2 -0
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +2 -0
- package/dist-types/commands/CreateVpcOriginCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDistributionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/DeleteVpcOriginCommand.d.ts +1 -0
- package/dist-types/commands/GetAnycastIpListCommand.d.ts +1 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +1 -0
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +1 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/GetVpcOriginCommand.d.ts +1 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +2 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +1 -0
- package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +1 -0
- package/dist-types/commands/ListDistributionsByOwnedResourceCommand.d.ts +100 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +1 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +1 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +1 -0
- package/dist-types/commands/ListRealtimeLogConfigsCommand.d.ts +2 -1
- package/dist-types/commands/ListResponseHeadersPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListStreamingDistributionsCommand.d.ts +1 -2
- package/dist-types/commands/ListVpcOriginsCommand.d.ts +1 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +93 -0
- package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +106 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +1 -0
- package/dist-types/commands/UpdateVpcOriginCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +6 -1
- package/dist-types/models/models_0.d.ts +38 -13
- package/dist-types/models/models_1.d.ts +122 -110
- package/dist-types/models/models_2.d.ts +177 -2
- package/dist-types/protocols/Aws_restXml.d.ts +45 -0
- package/dist-types/ts3.4/CloudFront.d.ts +85 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByOwnedResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRealtimeLogConfigsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListResponseHeadersPoliciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStreamingDistributionsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAnycastIpListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -6
- package/dist-types/ts3.4/models/models_1.d.ts +31 -31
- package/dist-types/ts3.4/models/models_2.d.ts +51 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +60 -0
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -157,6 +157,11 @@ const Method = {
|
|
|
157
157
|
POST: "POST",
|
|
158
158
|
PUT: "PUT",
|
|
159
159
|
};
|
|
160
|
+
const IpAddressType = {
|
|
161
|
+
DualStack: "dualstack",
|
|
162
|
+
Ipv4: "ipv4",
|
|
163
|
+
Ipv6: "ipv6",
|
|
164
|
+
};
|
|
160
165
|
class IllegalUpdate extends CloudFrontServiceException {
|
|
161
166
|
name = "IllegalUpdate";
|
|
162
167
|
$fault = "client";
|
|
@@ -412,11 +417,6 @@ const OriginGroupSelectionCriteria = {
|
|
|
412
417
|
Default: "default",
|
|
413
418
|
MediaQualityBased: "media-quality-based",
|
|
414
419
|
};
|
|
415
|
-
const IpAddressType = {
|
|
416
|
-
DualStack: "dualstack",
|
|
417
|
-
Ipv4: "ipv4",
|
|
418
|
-
Ipv6: "ipv6",
|
|
419
|
-
};
|
|
420
420
|
const OriginProtocolPolicy = {
|
|
421
421
|
http_only: "http-only",
|
|
422
422
|
https_only: "https-only",
|
|
@@ -2530,10 +2530,6 @@ const OriginRequestPolicyType = {
|
|
|
2530
2530
|
custom: "custom",
|
|
2531
2531
|
managed: "managed",
|
|
2532
2532
|
};
|
|
2533
|
-
const ResponseHeadersPolicyType = {
|
|
2534
|
-
custom: "custom",
|
|
2535
|
-
managed: "managed",
|
|
2536
|
-
};
|
|
2537
2533
|
const GetDistributionResultFilterSensitiveLog = (obj) => ({
|
|
2538
2534
|
...obj,
|
|
2539
2535
|
...(obj.Distribution && { Distribution: DistributionFilterSensitiveLog(obj.Distribution) }),
|
|
@@ -2575,6 +2571,10 @@ const ListDistributionsByWebACLIdResultFilterSensitiveLog = (obj) => ({
|
|
|
2575
2571
|
...(obj.DistributionList && { DistributionList: DistributionListFilterSensitiveLog(obj.DistributionList) }),
|
|
2576
2572
|
});
|
|
2577
2573
|
|
|
2574
|
+
const ResponseHeadersPolicyType = {
|
|
2575
|
+
custom: "custom",
|
|
2576
|
+
managed: "managed",
|
|
2577
|
+
};
|
|
2578
2578
|
class TestFunctionFailed extends CloudFrontServiceException {
|
|
2579
2579
|
name = "TestFunctionFailed";
|
|
2580
2580
|
$fault = "server";
|
|
@@ -2708,6 +2708,7 @@ const se_CreateAnycastIpListCommand = async (input, context) => {
|
|
|
2708
2708
|
body = _ve;
|
|
2709
2709
|
const bn = new xmlBuilder.XmlNode(_CAILR);
|
|
2710
2710
|
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
2711
|
+
bn.cc(input, _IAT);
|
|
2711
2712
|
if (input[_IC] != null) {
|
|
2712
2713
|
bn.c(xmlBuilder.XmlNode.of(_i, String(input[_IC])).n(_IC));
|
|
2713
2714
|
}
|
|
@@ -3367,6 +3368,23 @@ const se_DeleteRealtimeLogConfigCommand = async (input, context) => {
|
|
|
3367
3368
|
b.m("POST").h(headers).b(body);
|
|
3368
3369
|
return b.build();
|
|
3369
3370
|
};
|
|
3371
|
+
const se_DeleteResourcePolicyCommand = async (input, context) => {
|
|
3372
|
+
const b = core.requestBuilder(input, context);
|
|
3373
|
+
const headers = {
|
|
3374
|
+
"content-type": "application/xml",
|
|
3375
|
+
};
|
|
3376
|
+
b.bp("/2020-05-31/delete-resource-policy");
|
|
3377
|
+
let body;
|
|
3378
|
+
body = _ve;
|
|
3379
|
+
const bn = new xmlBuilder.XmlNode(_DRPR);
|
|
3380
|
+
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
3381
|
+
if (input[_RA] != null) {
|
|
3382
|
+
bn.c(xmlBuilder.XmlNode.of(_s, input[_RA]).n(_RA));
|
|
3383
|
+
}
|
|
3384
|
+
body += bn.toString();
|
|
3385
|
+
b.m("POST").h(headers).b(body);
|
|
3386
|
+
return b.build();
|
|
3387
|
+
};
|
|
3370
3388
|
const se_DeleteResponseHeadersPolicyCommand = async (input, context) => {
|
|
3371
3389
|
const b = core.requestBuilder(input, context);
|
|
3372
3390
|
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
@@ -3742,6 +3760,23 @@ const se_GetRealtimeLogConfigCommand = async (input, context) => {
|
|
|
3742
3760
|
b.m("POST").h(headers).b(body);
|
|
3743
3761
|
return b.build();
|
|
3744
3762
|
};
|
|
3763
|
+
const se_GetResourcePolicyCommand = async (input, context) => {
|
|
3764
|
+
const b = core.requestBuilder(input, context);
|
|
3765
|
+
const headers = {
|
|
3766
|
+
"content-type": "application/xml",
|
|
3767
|
+
};
|
|
3768
|
+
b.bp("/2020-05-31/get-resource-policy");
|
|
3769
|
+
let body;
|
|
3770
|
+
body = _ve;
|
|
3771
|
+
const bn = new xmlBuilder.XmlNode(_GRPR);
|
|
3772
|
+
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
3773
|
+
if (input[_RA] != null) {
|
|
3774
|
+
bn.c(xmlBuilder.XmlNode.of(_s, input[_RA]).n(_RA));
|
|
3775
|
+
}
|
|
3776
|
+
body += bn.toString();
|
|
3777
|
+
b.m("POST").h(headers).b(body);
|
|
3778
|
+
return b.build();
|
|
3779
|
+
};
|
|
3745
3780
|
const se_GetResponseHeadersPolicyCommand = async (input, context) => {
|
|
3746
3781
|
const b = core.requestBuilder(input, context);
|
|
3747
3782
|
const headers = {};
|
|
@@ -3950,6 +3985,19 @@ const se_ListDistributionsByOriginRequestPolicyIdCommand = async (input, context
|
|
|
3950
3985
|
b.m("GET").h(headers).q(query).b(body);
|
|
3951
3986
|
return b.build();
|
|
3952
3987
|
};
|
|
3988
|
+
const se_ListDistributionsByOwnedResourceCommand = async (input, context) => {
|
|
3989
|
+
const b = core.requestBuilder(input, context);
|
|
3990
|
+
const headers = {};
|
|
3991
|
+
b.bp("/2020-05-31/distributionsByOwnedResource/{ResourceArn}");
|
|
3992
|
+
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
3993
|
+
const query = smithyClient.map({
|
|
3994
|
+
[_M]: [, input[_M]],
|
|
3995
|
+
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()],
|
|
3996
|
+
});
|
|
3997
|
+
let body;
|
|
3998
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
3999
|
+
return b.build();
|
|
4000
|
+
};
|
|
3953
4001
|
const se_ListDistributionsByRealtimeLogConfigCommand = async (input, context) => {
|
|
3954
4002
|
const b = core.requestBuilder(input, context);
|
|
3955
4003
|
const headers = {
|
|
@@ -4286,6 +4334,26 @@ const se_PublishFunctionCommand = async (input, context) => {
|
|
|
4286
4334
|
b.m("POST").h(headers).b(body);
|
|
4287
4335
|
return b.build();
|
|
4288
4336
|
};
|
|
4337
|
+
const se_PutResourcePolicyCommand = async (input, context) => {
|
|
4338
|
+
const b = core.requestBuilder(input, context);
|
|
4339
|
+
const headers = {
|
|
4340
|
+
"content-type": "application/xml",
|
|
4341
|
+
};
|
|
4342
|
+
b.bp("/2020-05-31/put-resource-policy");
|
|
4343
|
+
let body;
|
|
4344
|
+
body = _ve;
|
|
4345
|
+
const bn = new xmlBuilder.XmlNode(_PRPR);
|
|
4346
|
+
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
4347
|
+
if (input[_PD] != null) {
|
|
4348
|
+
bn.c(xmlBuilder.XmlNode.of(_s, input[_PD]).n(_PD));
|
|
4349
|
+
}
|
|
4350
|
+
if (input[_RA] != null) {
|
|
4351
|
+
bn.c(xmlBuilder.XmlNode.of(_s, input[_RA]).n(_RA));
|
|
4352
|
+
}
|
|
4353
|
+
body += bn.toString();
|
|
4354
|
+
b.m("POST").h(headers).b(body);
|
|
4355
|
+
return b.build();
|
|
4356
|
+
};
|
|
4289
4357
|
const se_TagResourceCommand = async (input, context) => {
|
|
4290
4358
|
const b = core.requestBuilder(input, context);
|
|
4291
4359
|
const headers = {
|
|
@@ -4350,6 +4418,23 @@ const se_UntagResourceCommand = async (input, context) => {
|
|
|
4350
4418
|
b.m("POST").h(headers).q(query).b(body);
|
|
4351
4419
|
return b.build();
|
|
4352
4420
|
};
|
|
4421
|
+
const se_UpdateAnycastIpListCommand = async (input, context) => {
|
|
4422
|
+
const b = core.requestBuilder(input, context);
|
|
4423
|
+
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
4424
|
+
"content-type": "application/xml",
|
|
4425
|
+
[_im]: input[_IM],
|
|
4426
|
+
});
|
|
4427
|
+
b.bp("/2020-05-31/anycast-ip-list/{Id}");
|
|
4428
|
+
b.p("Id", () => input.Id, "{Id}", false);
|
|
4429
|
+
let body;
|
|
4430
|
+
body = _ve;
|
|
4431
|
+
const bn = new xmlBuilder.XmlNode(_UAILR);
|
|
4432
|
+
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
4433
|
+
bn.cc(input, _IAT);
|
|
4434
|
+
body += bn.toString();
|
|
4435
|
+
b.m("PUT").h(headers).b(body);
|
|
4436
|
+
return b.build();
|
|
4437
|
+
};
|
|
4353
4438
|
const se_UpdateCachePolicyCommand = async (input, context) => {
|
|
4354
4439
|
const b = core.requestBuilder(input, context);
|
|
4355
4440
|
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
@@ -5308,6 +5393,16 @@ const de_DeleteRealtimeLogConfigCommand = async (output, context) => {
|
|
|
5308
5393
|
await smithyClient.collectBody(output.body, context);
|
|
5309
5394
|
return contents;
|
|
5310
5395
|
};
|
|
5396
|
+
const de_DeleteResourcePolicyCommand = async (output, context) => {
|
|
5397
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5398
|
+
return de_CommandError(output, context);
|
|
5399
|
+
}
|
|
5400
|
+
const contents = smithyClient.map({
|
|
5401
|
+
$metadata: deserializeMetadata(output),
|
|
5402
|
+
});
|
|
5403
|
+
await smithyClient.collectBody(output.body, context);
|
|
5404
|
+
return contents;
|
|
5405
|
+
};
|
|
5311
5406
|
const de_DeleteResponseHeadersPolicyCommand = async (output, context) => {
|
|
5312
5407
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
5313
5408
|
return de_CommandError(output, context);
|
|
@@ -5762,6 +5857,22 @@ const de_GetRealtimeLogConfigCommand = async (output, context) => {
|
|
|
5762
5857
|
}
|
|
5763
5858
|
return contents;
|
|
5764
5859
|
};
|
|
5860
|
+
const de_GetResourcePolicyCommand = async (output, context) => {
|
|
5861
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5862
|
+
return de_CommandError(output, context);
|
|
5863
|
+
}
|
|
5864
|
+
const contents = smithyClient.map({
|
|
5865
|
+
$metadata: deserializeMetadata(output),
|
|
5866
|
+
});
|
|
5867
|
+
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseXmlBody(output.body, context)), "body");
|
|
5868
|
+
if (data[_PD] != null) {
|
|
5869
|
+
contents[_PD] = smithyClient.expectString(data[_PD]);
|
|
5870
|
+
}
|
|
5871
|
+
if (data[_RA] != null) {
|
|
5872
|
+
contents[_RA] = smithyClient.expectString(data[_RA]);
|
|
5873
|
+
}
|
|
5874
|
+
return contents;
|
|
5875
|
+
};
|
|
5765
5876
|
const de_GetResponseHeadersPolicyCommand = async (output, context) => {
|
|
5766
5877
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5767
5878
|
return de_CommandError(output, context);
|
|
@@ -5962,6 +6073,17 @@ const de_ListDistributionsByOriginRequestPolicyIdCommand = async (output, contex
|
|
|
5962
6073
|
contents.DistributionIdList = de_DistributionIdList(data);
|
|
5963
6074
|
return contents;
|
|
5964
6075
|
};
|
|
6076
|
+
const de_ListDistributionsByOwnedResourceCommand = async (output, context) => {
|
|
6077
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6078
|
+
return de_CommandError(output, context);
|
|
6079
|
+
}
|
|
6080
|
+
const contents = smithyClient.map({
|
|
6081
|
+
$metadata: deserializeMetadata(output),
|
|
6082
|
+
});
|
|
6083
|
+
const data = smithyClient.expectObject(await core$1.parseXmlBody(output.body, context));
|
|
6084
|
+
contents.DistributionList = de_DistributionIdOwnerList(data);
|
|
6085
|
+
return contents;
|
|
6086
|
+
};
|
|
5965
6087
|
const de_ListDistributionsByRealtimeLogConfigCommand = async (output, context) => {
|
|
5966
6088
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5967
6089
|
return de_CommandError(output, context);
|
|
@@ -6239,6 +6361,19 @@ const de_PublishFunctionCommand = async (output, context) => {
|
|
|
6239
6361
|
contents.FunctionSummary = de_FunctionSummary(data);
|
|
6240
6362
|
return contents;
|
|
6241
6363
|
};
|
|
6364
|
+
const de_PutResourcePolicyCommand = async (output, context) => {
|
|
6365
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6366
|
+
return de_CommandError(output, context);
|
|
6367
|
+
}
|
|
6368
|
+
const contents = smithyClient.map({
|
|
6369
|
+
$metadata: deserializeMetadata(output),
|
|
6370
|
+
});
|
|
6371
|
+
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseXmlBody(output.body, context)), "body");
|
|
6372
|
+
if (data[_RA] != null) {
|
|
6373
|
+
contents[_RA] = smithyClient.expectString(data[_RA]);
|
|
6374
|
+
}
|
|
6375
|
+
return contents;
|
|
6376
|
+
};
|
|
6242
6377
|
const de_TagResourceCommand = async (output, context) => {
|
|
6243
6378
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
6244
6379
|
return de_CommandError(output, context);
|
|
@@ -6270,6 +6405,18 @@ const de_UntagResourceCommand = async (output, context) => {
|
|
|
6270
6405
|
await smithyClient.collectBody(output.body, context);
|
|
6271
6406
|
return contents;
|
|
6272
6407
|
};
|
|
6408
|
+
const de_UpdateAnycastIpListCommand = async (output, context) => {
|
|
6409
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6410
|
+
return de_CommandError(output, context);
|
|
6411
|
+
}
|
|
6412
|
+
const contents = smithyClient.map({
|
|
6413
|
+
$metadata: deserializeMetadata(output),
|
|
6414
|
+
[_ET]: [, output.headers[_e]],
|
|
6415
|
+
});
|
|
6416
|
+
const data = smithyClient.expectObject(await core$1.parseXmlBody(output.body, context));
|
|
6417
|
+
contents.AnycastIpList = de_AnycastIpList(data);
|
|
6418
|
+
return contents;
|
|
6419
|
+
};
|
|
6273
6420
|
const de_UpdateCachePolicyCommand = async (output, context) => {
|
|
6274
6421
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6275
6422
|
return de_CommandError(output, context);
|
|
@@ -9958,7 +10105,7 @@ const se_Parameter = (input, context) => {
|
|
|
9958
10105
|
return bn;
|
|
9959
10106
|
};
|
|
9960
10107
|
const se_ParameterDefinition = (input, context) => {
|
|
9961
|
-
const bn = new xmlBuilder.XmlNode(
|
|
10108
|
+
const bn = new xmlBuilder.XmlNode(_PDa);
|
|
9962
10109
|
if (input[_N] != null) {
|
|
9963
10110
|
bn.c(xmlBuilder.XmlNode.of(_PN, input[_N]).n(_N));
|
|
9964
10111
|
}
|
|
@@ -10534,7 +10681,7 @@ const se_Tags = (input, context) => {
|
|
|
10534
10681
|
};
|
|
10535
10682
|
const se_TenantConfig = (input, context) => {
|
|
10536
10683
|
const bn = new xmlBuilder.XmlNode(_TCe);
|
|
10537
|
-
bn.lc(input, "ParameterDefinitions", "ParameterDefinitions", () => se_ParameterDefinitions(input[
|
|
10684
|
+
bn.lc(input, "ParameterDefinitions", "ParameterDefinitions", () => se_ParameterDefinitions(input[_PDar]));
|
|
10538
10685
|
return bn;
|
|
10539
10686
|
};
|
|
10540
10687
|
const se_TrafficConfig = (input, context) => {
|
|
@@ -10604,6 +10751,9 @@ const se_VpcOriginConfig = (input, context) => {
|
|
|
10604
10751
|
if (input[_VOI] != null) {
|
|
10605
10752
|
bn.c(xmlBuilder.XmlNode.of(_s, input[_VOI]).n(_VOI));
|
|
10606
10753
|
}
|
|
10754
|
+
if (input[_OAIw] != null) {
|
|
10755
|
+
bn.c(xmlBuilder.XmlNode.of(_s, input[_OAIw]).n(_OAIw));
|
|
10756
|
+
}
|
|
10607
10757
|
if (input[_ORT] != null) {
|
|
10608
10758
|
bn.c(xmlBuilder.XmlNode.of(_i, String(input[_ORT])).n(_ORT));
|
|
10609
10759
|
}
|
|
@@ -10769,6 +10919,9 @@ const de_AnycastIpList = (output, context) => {
|
|
|
10769
10919
|
if (output[_Ar] != null) {
|
|
10770
10920
|
contents[_Ar] = smithyClient.expectString(output[_Ar]);
|
|
10771
10921
|
}
|
|
10922
|
+
if (output[_IAT] != null) {
|
|
10923
|
+
contents[_IAT] = smithyClient.expectString(output[_IAT]);
|
|
10924
|
+
}
|
|
10772
10925
|
if (String(output.AnycastIps).trim() === "") {
|
|
10773
10926
|
contents[_AI] = [];
|
|
10774
10927
|
}
|
|
@@ -10835,6 +10988,12 @@ const de_AnycastIpListSummary = (output, context) => {
|
|
|
10835
10988
|
if (output[_LMT] != null) {
|
|
10836
10989
|
contents[_LMT] = smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(output[_LMT]));
|
|
10837
10990
|
}
|
|
10991
|
+
if (output[_IAT] != null) {
|
|
10992
|
+
contents[_IAT] = smithyClient.expectString(output[_IAT]);
|
|
10993
|
+
}
|
|
10994
|
+
if (output[_ET] != null) {
|
|
10995
|
+
contents[_ET] = smithyClient.expectString(output[_ET]);
|
|
10996
|
+
}
|
|
10838
10997
|
return contents;
|
|
10839
10998
|
};
|
|
10840
10999
|
const de_AnycastIps = (output, context) => {
|
|
@@ -11686,6 +11845,48 @@ const de_DistributionIdListSummary = (output, context) => {
|
|
|
11686
11845
|
return smithyClient.expectString(entry);
|
|
11687
11846
|
});
|
|
11688
11847
|
};
|
|
11848
|
+
const de_DistributionIdOwner = (output, context) => {
|
|
11849
|
+
const contents = {};
|
|
11850
|
+
if (output[_DI] != null) {
|
|
11851
|
+
contents[_DI] = smithyClient.expectString(output[_DI]);
|
|
11852
|
+
}
|
|
11853
|
+
if (output[_OAIw] != null) {
|
|
11854
|
+
contents[_OAIw] = smithyClient.expectString(output[_OAIw]);
|
|
11855
|
+
}
|
|
11856
|
+
return contents;
|
|
11857
|
+
};
|
|
11858
|
+
const de_DistributionIdOwnerItemList = (output, context) => {
|
|
11859
|
+
return (output || [])
|
|
11860
|
+
.filter((e) => e != null)
|
|
11861
|
+
.map((entry) => {
|
|
11862
|
+
return de_DistributionIdOwner(entry);
|
|
11863
|
+
});
|
|
11864
|
+
};
|
|
11865
|
+
const de_DistributionIdOwnerList = (output, context) => {
|
|
11866
|
+
const contents = {};
|
|
11867
|
+
if (output[_M] != null) {
|
|
11868
|
+
contents[_M] = smithyClient.expectString(output[_M]);
|
|
11869
|
+
}
|
|
11870
|
+
if (output[_NM] != null) {
|
|
11871
|
+
contents[_NM] = smithyClient.expectString(output[_NM]);
|
|
11872
|
+
}
|
|
11873
|
+
if (output[_MI] != null) {
|
|
11874
|
+
contents[_MI] = smithyClient.strictParseInt32(output[_MI]);
|
|
11875
|
+
}
|
|
11876
|
+
if (output[_IT] != null) {
|
|
11877
|
+
contents[_IT] = smithyClient.parseBoolean(output[_IT]);
|
|
11878
|
+
}
|
|
11879
|
+
if (output[_Q] != null) {
|
|
11880
|
+
contents[_Q] = smithyClient.strictParseInt32(output[_Q]);
|
|
11881
|
+
}
|
|
11882
|
+
if (String(output.Items).trim() === "") {
|
|
11883
|
+
contents[_It] = [];
|
|
11884
|
+
}
|
|
11885
|
+
else if (output[_It] != null && output[_It][_DIO] != null) {
|
|
11886
|
+
contents[_It] = de_DistributionIdOwnerItemList(smithyClient.getArrayIfSingleItem(output[_It][_DIO]));
|
|
11887
|
+
}
|
|
11888
|
+
return contents;
|
|
11889
|
+
};
|
|
11689
11890
|
const de_DistributionList = (output, context) => {
|
|
11690
11891
|
const contents = {};
|
|
11691
11892
|
if (output[_M] != null) {
|
|
@@ -13949,10 +14150,10 @@ const de_Tags = (output, context) => {
|
|
|
13949
14150
|
const de_TenantConfig = (output, context) => {
|
|
13950
14151
|
const contents = {};
|
|
13951
14152
|
if (String(output.ParameterDefinitions).trim() === "") {
|
|
13952
|
-
contents[
|
|
14153
|
+
contents[_PDar] = [];
|
|
13953
14154
|
}
|
|
13954
|
-
else if (output[
|
|
13955
|
-
contents[
|
|
14155
|
+
else if (output[_PDar] != null && output[_PDar][_m] != null) {
|
|
14156
|
+
contents[_PDar] = de_ParameterDefinitions(smithyClient.getArrayIfSingleItem(output[_PDar][_m]));
|
|
13956
14157
|
}
|
|
13957
14158
|
return contents;
|
|
13958
14159
|
};
|
|
@@ -14083,6 +14284,9 @@ const de_VpcOrigin = (output, context) => {
|
|
|
14083
14284
|
if (output[_Ar] != null) {
|
|
14084
14285
|
contents[_Ar] = smithyClient.expectString(output[_Ar]);
|
|
14085
14286
|
}
|
|
14287
|
+
if (output[_AIc] != null) {
|
|
14288
|
+
contents[_AIc] = smithyClient.expectString(output[_AIc]);
|
|
14289
|
+
}
|
|
14086
14290
|
if (output[_Sta] != null) {
|
|
14087
14291
|
contents[_Sta] = smithyClient.expectString(output[_Sta]);
|
|
14088
14292
|
}
|
|
@@ -14102,6 +14306,9 @@ const de_VpcOriginConfig = (output, context) => {
|
|
|
14102
14306
|
if (output[_VOI] != null) {
|
|
14103
14307
|
contents[_VOI] = smithyClient.expectString(output[_VOI]);
|
|
14104
14308
|
}
|
|
14309
|
+
if (output[_OAIw] != null) {
|
|
14310
|
+
contents[_OAIw] = smithyClient.expectString(output[_OAIw]);
|
|
14311
|
+
}
|
|
14105
14312
|
if (output[_ORT] != null) {
|
|
14106
14313
|
contents[_ORT] = smithyClient.strictParseInt32(output[_ORT]);
|
|
14107
14314
|
}
|
|
@@ -14177,6 +14384,9 @@ const de_VpcOriginSummary = (output, context) => {
|
|
|
14177
14384
|
if (output[_Ar] != null) {
|
|
14178
14385
|
contents[_Ar] = smithyClient.expectString(output[_Ar]);
|
|
14179
14386
|
}
|
|
14387
|
+
if (output[_AIc] != null) {
|
|
14388
|
+
contents[_AIc] = smithyClient.expectString(output[_AIc]);
|
|
14389
|
+
}
|
|
14180
14390
|
if (output[_OEA] != null) {
|
|
14181
14391
|
contents[_OEA] = smithyClient.expectString(output[_OEA]);
|
|
14182
14392
|
}
|
|
@@ -14313,12 +14523,14 @@ const _DCWT = "DistributionConfigWithTags";
|
|
|
14313
14523
|
const _DCi = "DistributionConfig";
|
|
14314
14524
|
const _DCn = "DnsConfiguration";
|
|
14315
14525
|
const _DI = "DistributionId";
|
|
14526
|
+
const _DIO = "DistributionIdOwner";
|
|
14316
14527
|
const _DIo = "DomainItem";
|
|
14317
14528
|
const _DN = "DomainName";
|
|
14318
14529
|
const _DNn = "DnsName";
|
|
14319
14530
|
const _DRI = "DistributionResourceId";
|
|
14320
14531
|
const _DRLCR = "DeleteRealtimeLogConfigRequest";
|
|
14321
14532
|
const _DRO = "DefaultRootObject";
|
|
14533
|
+
const _DRPR = "DeleteResourcePolicyRequest";
|
|
14322
14534
|
const _DS = "DistributionSummary";
|
|
14323
14535
|
const _DTAF = "DistributionTenantAssociationFilter";
|
|
14324
14536
|
const _DTI = "DistributionTenantId";
|
|
@@ -14379,6 +14591,7 @@ const _GC = "GrpcConfig";
|
|
|
14379
14591
|
const _GR = "GeoRestrictions";
|
|
14380
14592
|
const _GRC = "GeoRestrictionCustomization";
|
|
14381
14593
|
const _GRLCR = "GetRealtimeLogConfigRequest";
|
|
14594
|
+
const _GRPR = "GetResourcePolicyRequest";
|
|
14382
14595
|
const _GRT = "GeoRestrictionType";
|
|
14383
14596
|
const _GRe = "GeoRestriction";
|
|
14384
14597
|
const _H = "Header";
|
|
@@ -14462,6 +14675,7 @@ const _OACS = "OriginAccessControlSummary";
|
|
|
14462
14675
|
const _OACSB = "OriginAccessControlSigningBehaviors";
|
|
14463
14676
|
const _OACSP = "OriginAccessControlSigningProtocols";
|
|
14464
14677
|
const _OAI = "OriginAccessIdentity";
|
|
14678
|
+
const _OAIw = "OwnerAccountId";
|
|
14465
14679
|
const _OCH = "OriginCustomHeader";
|
|
14466
14680
|
const _OEA = "OriginEndpointArn";
|
|
14467
14681
|
const _OG = "OriginGroups";
|
|
@@ -14494,10 +14708,11 @@ const _Ori = "Origins";
|
|
|
14494
14708
|
const _Ov = "Override";
|
|
14495
14709
|
const _P = "Parameters";
|
|
14496
14710
|
const _PC = "PriceClass";
|
|
14497
|
-
const _PD = "
|
|
14711
|
+
const _PD = "PolicyDocument";
|
|
14498
14712
|
const _PDN = "PrimaryDomainName";
|
|
14499
14713
|
const _PDS = "ParameterDefinitionSchema";
|
|
14500
|
-
const _PDa = "
|
|
14714
|
+
const _PDa = "ParameterDefinition";
|
|
14715
|
+
const _PDar = "ParameterDefinitions";
|
|
14501
14716
|
const _PI = "ProfileId";
|
|
14502
14717
|
const _PICKAFTO = "ParametersInCacheKeyAndForwardedToOrigin";
|
|
14503
14718
|
const _PIr = "ProviderId";
|
|
@@ -14507,6 +14722,7 @@ const _PKI = "PublicKeyId";
|
|
|
14507
14722
|
const _PKS = "PublicKeySummary";
|
|
14508
14723
|
const _PN = "ParameterName";
|
|
14509
14724
|
const _PP = "PathPattern";
|
|
14725
|
+
const _PRPR = "PutResourcePolicyRequest";
|
|
14510
14726
|
const _PV = "ParameterValue";
|
|
14511
14727
|
const _Pa = "Paths";
|
|
14512
14728
|
const _Par = "Parameter";
|
|
@@ -14526,6 +14742,7 @@ const _QSCK = "QueryStringCacheKeys";
|
|
|
14526
14742
|
const _QSN = "QueryStringNames";
|
|
14527
14743
|
const _QSu = "QueryString";
|
|
14528
14744
|
const _R = "Resource";
|
|
14745
|
+
const _RA = "ResourceArn";
|
|
14529
14746
|
const _RARN = "RoleARN";
|
|
14530
14747
|
const _RC = "ResponseCode";
|
|
14531
14748
|
const _RCT = "ResponseCompletionTimeout";
|
|
@@ -14619,6 +14836,7 @@ const _TS = "TrustedSigners";
|
|
|
14619
14836
|
const _TV = "TagValue";
|
|
14620
14837
|
const _Ta = "Tag";
|
|
14621
14838
|
const _Ty = "Type";
|
|
14839
|
+
const _UAILR = "UpdateAnycastIpListRequest";
|
|
14622
14840
|
const _UCGR = "UpdateConnectionGroupRequest";
|
|
14623
14841
|
const _UDAR = "UpdateDomainAssociationRequest";
|
|
14624
14842
|
const _UDTR = "UpdateDistributionTenantRequest";
|
|
@@ -15424,6 +15642,23 @@ class DeleteRealtimeLogConfigCommand extends smithyClient.Command
|
|
|
15424
15642
|
.build() {
|
|
15425
15643
|
}
|
|
15426
15644
|
|
|
15645
|
+
class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
15646
|
+
.classBuilder()
|
|
15647
|
+
.ep(commonParams)
|
|
15648
|
+
.m(function (Command, cs, config, o) {
|
|
15649
|
+
return [
|
|
15650
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15651
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15652
|
+
];
|
|
15653
|
+
})
|
|
15654
|
+
.s("Cloudfront2020_05_31", "DeleteResourcePolicy", {})
|
|
15655
|
+
.n("CloudFrontClient", "DeleteResourcePolicyCommand")
|
|
15656
|
+
.f(void 0, void 0)
|
|
15657
|
+
.ser(se_DeleteResourcePolicyCommand)
|
|
15658
|
+
.de(de_DeleteResourcePolicyCommand)
|
|
15659
|
+
.build() {
|
|
15660
|
+
}
|
|
15661
|
+
|
|
15427
15662
|
class DeleteResponseHeadersPolicyCommand extends smithyClient.Command
|
|
15428
15663
|
.classBuilder()
|
|
15429
15664
|
.ep(commonParams)
|
|
@@ -16070,6 +16305,23 @@ class GetRealtimeLogConfigCommand extends smithyClient.Command
|
|
|
16070
16305
|
.build() {
|
|
16071
16306
|
}
|
|
16072
16307
|
|
|
16308
|
+
class GetResourcePolicyCommand extends smithyClient.Command
|
|
16309
|
+
.classBuilder()
|
|
16310
|
+
.ep(commonParams)
|
|
16311
|
+
.m(function (Command, cs, config, o) {
|
|
16312
|
+
return [
|
|
16313
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16314
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16315
|
+
];
|
|
16316
|
+
})
|
|
16317
|
+
.s("Cloudfront2020_05_31", "GetResourcePolicy", {})
|
|
16318
|
+
.n("CloudFrontClient", "GetResourcePolicyCommand")
|
|
16319
|
+
.f(void 0, void 0)
|
|
16320
|
+
.ser(se_GetResourcePolicyCommand)
|
|
16321
|
+
.de(de_GetResourcePolicyCommand)
|
|
16322
|
+
.build() {
|
|
16323
|
+
}
|
|
16324
|
+
|
|
16073
16325
|
class GetResponseHeadersPolicyCommand extends smithyClient.Command
|
|
16074
16326
|
.classBuilder()
|
|
16075
16327
|
.ep(commonParams)
|
|
@@ -16342,6 +16594,23 @@ class ListDistributionsByOriginRequestPolicyIdCommand extends smithyClient.Comma
|
|
|
16342
16594
|
.build() {
|
|
16343
16595
|
}
|
|
16344
16596
|
|
|
16597
|
+
class ListDistributionsByOwnedResourceCommand extends smithyClient.Command
|
|
16598
|
+
.classBuilder()
|
|
16599
|
+
.ep(commonParams)
|
|
16600
|
+
.m(function (Command, cs, config, o) {
|
|
16601
|
+
return [
|
|
16602
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
16603
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16604
|
+
];
|
|
16605
|
+
})
|
|
16606
|
+
.s("Cloudfront2020_05_31", "ListDistributionsByOwnedResource", {})
|
|
16607
|
+
.n("CloudFrontClient", "ListDistributionsByOwnedResourceCommand")
|
|
16608
|
+
.f(void 0, void 0)
|
|
16609
|
+
.ser(se_ListDistributionsByOwnedResourceCommand)
|
|
16610
|
+
.de(de_ListDistributionsByOwnedResourceCommand)
|
|
16611
|
+
.build() {
|
|
16612
|
+
}
|
|
16613
|
+
|
|
16345
16614
|
class ListDistributionsByRealtimeLogConfigCommand extends smithyClient.Command
|
|
16346
16615
|
.classBuilder()
|
|
16347
16616
|
.ep(commonParams)
|
|
@@ -16750,6 +17019,23 @@ class PublishFunctionCommand extends smithyClient.Command
|
|
|
16750
17019
|
.build() {
|
|
16751
17020
|
}
|
|
16752
17021
|
|
|
17022
|
+
class PutResourcePolicyCommand extends smithyClient.Command
|
|
17023
|
+
.classBuilder()
|
|
17024
|
+
.ep(commonParams)
|
|
17025
|
+
.m(function (Command, cs, config, o) {
|
|
17026
|
+
return [
|
|
17027
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17028
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17029
|
+
];
|
|
17030
|
+
})
|
|
17031
|
+
.s("Cloudfront2020_05_31", "PutResourcePolicy", {})
|
|
17032
|
+
.n("CloudFrontClient", "PutResourcePolicyCommand")
|
|
17033
|
+
.f(void 0, void 0)
|
|
17034
|
+
.ser(se_PutResourcePolicyCommand)
|
|
17035
|
+
.de(de_PutResourcePolicyCommand)
|
|
17036
|
+
.build() {
|
|
17037
|
+
}
|
|
17038
|
+
|
|
16753
17039
|
class TagResourceCommand extends smithyClient.Command
|
|
16754
17040
|
.classBuilder()
|
|
16755
17041
|
.ep(commonParams)
|
|
@@ -16801,6 +17087,23 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
16801
17087
|
.build() {
|
|
16802
17088
|
}
|
|
16803
17089
|
|
|
17090
|
+
class UpdateAnycastIpListCommand extends smithyClient.Command
|
|
17091
|
+
.classBuilder()
|
|
17092
|
+
.ep(commonParams)
|
|
17093
|
+
.m(function (Command, cs, config, o) {
|
|
17094
|
+
return [
|
|
17095
|
+
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
17096
|
+
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
17097
|
+
];
|
|
17098
|
+
})
|
|
17099
|
+
.s("Cloudfront2020_05_31", "UpdateAnycastIpList", {})
|
|
17100
|
+
.n("CloudFrontClient", "UpdateAnycastIpListCommand")
|
|
17101
|
+
.f(void 0, void 0)
|
|
17102
|
+
.ser(se_UpdateAnycastIpListCommand)
|
|
17103
|
+
.de(de_UpdateAnycastIpListCommand)
|
|
17104
|
+
.build() {
|
|
17105
|
+
}
|
|
17106
|
+
|
|
16804
17107
|
class UpdateCachePolicyCommand extends smithyClient.Command
|
|
16805
17108
|
.classBuilder()
|
|
16806
17109
|
.ep(commonParams)
|
|
@@ -17204,6 +17507,7 @@ const commands = {
|
|
|
17204
17507
|
DeleteOriginRequestPolicyCommand,
|
|
17205
17508
|
DeletePublicKeyCommand,
|
|
17206
17509
|
DeleteRealtimeLogConfigCommand,
|
|
17510
|
+
DeleteResourcePolicyCommand,
|
|
17207
17511
|
DeleteResponseHeadersPolicyCommand,
|
|
17208
17512
|
DeleteStreamingDistributionCommand,
|
|
17209
17513
|
DeleteVpcOriginCommand,
|
|
@@ -17242,6 +17546,7 @@ const commands = {
|
|
|
17242
17546
|
GetPublicKeyCommand,
|
|
17243
17547
|
GetPublicKeyConfigCommand,
|
|
17244
17548
|
GetRealtimeLogConfigCommand,
|
|
17549
|
+
GetResourcePolicyCommand,
|
|
17245
17550
|
GetResponseHeadersPolicyCommand,
|
|
17246
17551
|
GetResponseHeadersPolicyConfigCommand,
|
|
17247
17552
|
GetStreamingDistributionCommand,
|
|
@@ -17259,6 +17564,7 @@ const commands = {
|
|
|
17259
17564
|
ListDistributionsByConnectionModeCommand,
|
|
17260
17565
|
ListDistributionsByKeyGroupCommand,
|
|
17261
17566
|
ListDistributionsByOriginRequestPolicyIdCommand,
|
|
17567
|
+
ListDistributionsByOwnedResourceCommand,
|
|
17262
17568
|
ListDistributionsByRealtimeLogConfigCommand,
|
|
17263
17569
|
ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
17264
17570
|
ListDistributionsByVpcOriginIdCommand,
|
|
@@ -17282,9 +17588,11 @@ const commands = {
|
|
|
17282
17588
|
ListTagsForResourceCommand,
|
|
17283
17589
|
ListVpcOriginsCommand,
|
|
17284
17590
|
PublishFunctionCommand,
|
|
17591
|
+
PutResourcePolicyCommand,
|
|
17285
17592
|
TagResourceCommand,
|
|
17286
17593
|
TestFunctionCommand,
|
|
17287
17594
|
UntagResourceCommand,
|
|
17595
|
+
UpdateAnycastIpListCommand,
|
|
17288
17596
|
UpdateCachePolicyCommand,
|
|
17289
17597
|
UpdateCloudFrontOriginAccessIdentityCommand,
|
|
17290
17598
|
UpdateConnectionGroupCommand,
|
|
@@ -17541,6 +17849,7 @@ exports.DeleteOriginAccessControlCommand = DeleteOriginAccessControlCommand;
|
|
|
17541
17849
|
exports.DeleteOriginRequestPolicyCommand = DeleteOriginRequestPolicyCommand;
|
|
17542
17850
|
exports.DeletePublicKeyCommand = DeletePublicKeyCommand;
|
|
17543
17851
|
exports.DeleteRealtimeLogConfigCommand = DeleteRealtimeLogConfigCommand;
|
|
17852
|
+
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
17544
17853
|
exports.DeleteResponseHeadersPolicyCommand = DeleteResponseHeadersPolicyCommand;
|
|
17545
17854
|
exports.DeleteStreamingDistributionCommand = DeleteStreamingDistributionCommand;
|
|
17546
17855
|
exports.DeleteVpcOriginCommand = DeleteVpcOriginCommand;
|
|
@@ -17610,6 +17919,7 @@ exports.GetOriginRequestPolicyConfigCommand = GetOriginRequestPolicyConfigComman
|
|
|
17610
17919
|
exports.GetPublicKeyCommand = GetPublicKeyCommand;
|
|
17611
17920
|
exports.GetPublicKeyConfigCommand = GetPublicKeyConfigCommand;
|
|
17612
17921
|
exports.GetRealtimeLogConfigCommand = GetRealtimeLogConfigCommand;
|
|
17922
|
+
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
17613
17923
|
exports.GetResponseHeadersPolicyCommand = GetResponseHeadersPolicyCommand;
|
|
17614
17924
|
exports.GetResponseHeadersPolicyConfigCommand = GetResponseHeadersPolicyConfigCommand;
|
|
17615
17925
|
exports.GetStreamingDistributionCommand = GetStreamingDistributionCommand;
|
|
@@ -17668,6 +17978,7 @@ exports.ListDistributionsByConnectionModeCommand = ListDistributionsByConnection
|
|
|
17668
17978
|
exports.ListDistributionsByConnectionModeResultFilterSensitiveLog = ListDistributionsByConnectionModeResultFilterSensitiveLog;
|
|
17669
17979
|
exports.ListDistributionsByKeyGroupCommand = ListDistributionsByKeyGroupCommand;
|
|
17670
17980
|
exports.ListDistributionsByOriginRequestPolicyIdCommand = ListDistributionsByOriginRequestPolicyIdCommand;
|
|
17981
|
+
exports.ListDistributionsByOwnedResourceCommand = ListDistributionsByOwnedResourceCommand;
|
|
17671
17982
|
exports.ListDistributionsByRealtimeLogConfigCommand = ListDistributionsByRealtimeLogConfigCommand;
|
|
17672
17983
|
exports.ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog = ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog;
|
|
17673
17984
|
exports.ListDistributionsByResponseHeadersPolicyIdCommand = ListDistributionsByResponseHeadersPolicyIdCommand;
|
|
@@ -17737,6 +18048,7 @@ exports.PriceClass = PriceClass;
|
|
|
17737
18048
|
exports.PublicKeyAlreadyExists = PublicKeyAlreadyExists;
|
|
17738
18049
|
exports.PublicKeyInUse = PublicKeyInUse;
|
|
17739
18050
|
exports.PublishFunctionCommand = PublishFunctionCommand;
|
|
18051
|
+
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
17740
18052
|
exports.QueryArgProfileEmpty = QueryArgProfileEmpty;
|
|
17741
18053
|
exports.RealtimeLogConfigAlreadyExists = RealtimeLogConfigAlreadyExists;
|
|
17742
18054
|
exports.RealtimeLogConfigInUse = RealtimeLogConfigInUse;
|
|
@@ -17818,6 +18130,7 @@ exports.TrustedKeyGroupDoesNotExist = TrustedKeyGroupDoesNotExist;
|
|
|
17818
18130
|
exports.TrustedSignerDoesNotExist = TrustedSignerDoesNotExist;
|
|
17819
18131
|
exports.UnsupportedOperation = UnsupportedOperation;
|
|
17820
18132
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
18133
|
+
exports.UpdateAnycastIpListCommand = UpdateAnycastIpListCommand;
|
|
17821
18134
|
exports.UpdateCachePolicyCommand = UpdateCachePolicyCommand;
|
|
17822
18135
|
exports.UpdateCloudFrontOriginAccessIdentityCommand = UpdateCloudFrontOriginAccessIdentityCommand;
|
|
17823
18136
|
exports.UpdateConnectionGroupCommand = UpdateConnectionGroupCommand;
|