cdk-comprehend-s3olap 2.0.77 → 2.0.80

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.
Files changed (51) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +18 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/cloudfront-2020-05-31.min.json +350 -82
  8. package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +107 -91
  9. package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +123 -79
  10. package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +7 -0
  11. package/node_modules/aws-sdk/apis/panorama-2019-07-24.min.json +47 -10
  12. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +64 -29
  13. package/node_modules/aws-sdk/apis/sso-oidc-2019-06-10.min.json +1 -2
  14. package/node_modules/aws-sdk/clients/cloudfront.d.ts +246 -4
  15. package/node_modules/aws-sdk/clients/configservice.d.ts +27 -7
  16. package/node_modules/aws-sdk/clients/elbv2.d.ts +1 -1
  17. package/node_modules/aws-sdk/clients/gamelift.d.ts +1 -1
  18. package/node_modules/aws-sdk/clients/iam.d.ts +6 -6
  19. package/node_modules/aws-sdk/clients/iotwireless.d.ts +60 -11
  20. package/node_modules/aws-sdk/clients/ivs.d.ts +3 -3
  21. package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
  22. package/node_modules/aws-sdk/clients/panorama.d.ts +62 -0
  23. package/node_modules/aws-sdk/clients/quicksight.d.ts +38 -4
  24. package/node_modules/aws-sdk/clients/rds.d.ts +5 -5
  25. package/node_modules/aws-sdk/clients/ssooidc.d.ts +12 -12
  26. package/node_modules/aws-sdk/clients/transfer.d.ts +20 -20
  27. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +151 -31
  28. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +160 -40
  29. package/node_modules/aws-sdk/dist/aws-sdk.js +687 -287
  30. package/node_modules/aws-sdk/dist/aws-sdk.min.js +85 -85
  31. package/node_modules/aws-sdk/lib/config-base.d.ts +14 -0
  32. package/node_modules/aws-sdk/lib/config.js +78 -1
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/lib/event_listeners.js +49 -30
  35. package/node_modules/aws-sdk/lib/node_loader.js +17 -1
  36. package/node_modules/aws-sdk/lib/service.js +2 -0
  37. package/node_modules/aws-sdk/lib/shared-ini/ini-loader.d.ts +1 -12
  38. package/node_modules/aws-sdk/lib/shared-ini/ini-loader.js +68 -30
  39. package/node_modules/aws-sdk/lib/signers/bearer.js +14 -0
  40. package/node_modules/aws-sdk/lib/signers/request_signer.js +2 -0
  41. package/node_modules/aws-sdk/lib/token/sso_token_provider.d.ts +12 -0
  42. package/node_modules/aws-sdk/lib/token/sso_token_provider.js +245 -0
  43. package/node_modules/aws-sdk/lib/token/static_token_provider.d.ts +8 -0
  44. package/node_modules/aws-sdk/lib/token/static_token_provider.js +27 -0
  45. package/node_modules/aws-sdk/lib/token/token_provider_chain.d.ts +24 -0
  46. package/node_modules/aws-sdk/lib/token/token_provider_chain.js +165 -0
  47. package/node_modules/aws-sdk/lib/token.d.ts +101 -0
  48. package/node_modules/aws-sdk/lib/token.js +219 -0
  49. package/node_modules/aws-sdk/package.json +1 -1
  50. package/node_modules/aws-sdk/scripts/region-checker/allowlist.js +4 -1
  51. package/package.json +6 -6
@@ -407,7 +407,7 @@
407
407
  },
408
408
  "CreateMonitoringSubscription": {
409
409
  "http": {
410
- "requestUri": "/2020-05-31/distributions/{DistributionId}/monitoring-subscription"
410
+ "requestUri": "/2020-05-31/distributions/{DistributionId}/monitoring-subscription/"
411
411
  },
412
412
  "input": {
413
413
  "type": "structure",
@@ -440,6 +440,45 @@
440
440
  "payload": "MonitoringSubscription"
441
441
  }
442
442
  },
443
+ "CreateOriginAccessControl": {
444
+ "http": {
445
+ "requestUri": "/2020-05-31/origin-access-control",
446
+ "responseCode": 201
447
+ },
448
+ "input": {
449
+ "type": "structure",
450
+ "required": [
451
+ "OriginAccessControlConfig"
452
+ ],
453
+ "members": {
454
+ "OriginAccessControlConfig": {
455
+ "shape": "S4n",
456
+ "locationName": "OriginAccessControlConfig",
457
+ "xmlNamespace": {
458
+ "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
459
+ }
460
+ }
461
+ },
462
+ "payload": "OriginAccessControlConfig"
463
+ },
464
+ "output": {
465
+ "type": "structure",
466
+ "members": {
467
+ "OriginAccessControl": {
468
+ "shape": "S4s"
469
+ },
470
+ "Location": {
471
+ "location": "header",
472
+ "locationName": "Location"
473
+ },
474
+ "ETag": {
475
+ "location": "header",
476
+ "locationName": "ETag"
477
+ }
478
+ },
479
+ "payload": "OriginAccessControl"
480
+ }
481
+ },
443
482
  "CreateOriginRequestPolicy": {
444
483
  "http": {
445
484
  "requestUri": "/2020-05-31/origin-request-policy",
@@ -452,7 +491,7 @@
452
491
  ],
453
492
  "members": {
454
493
  "OriginRequestPolicyConfig": {
455
- "shape": "S4n",
494
+ "shape": "S4u",
456
495
  "locationName": "OriginRequestPolicyConfig",
457
496
  "xmlNamespace": {
458
497
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -465,7 +504,7 @@
465
504
  "type": "structure",
466
505
  "members": {
467
506
  "OriginRequestPolicy": {
468
- "shape": "S4v"
507
+ "shape": "S52"
469
508
  },
470
509
  "Location": {
471
510
  "location": "header",
@@ -491,7 +530,7 @@
491
530
  ],
492
531
  "members": {
493
532
  "PublicKeyConfig": {
494
- "shape": "S4x",
533
+ "shape": "S54",
495
534
  "locationName": "PublicKeyConfig",
496
535
  "xmlNamespace": {
497
536
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -504,7 +543,7 @@
504
543
  "type": "structure",
505
544
  "members": {
506
545
  "PublicKey": {
507
- "shape": "S4z"
546
+ "shape": "S56"
508
547
  },
509
548
  "Location": {
510
549
  "location": "header",
@@ -537,10 +576,10 @@
537
576
  ],
538
577
  "members": {
539
578
  "EndPoints": {
540
- "shape": "S51"
579
+ "shape": "S58"
541
580
  },
542
581
  "Fields": {
543
- "shape": "S54"
582
+ "shape": "S5b"
544
583
  },
545
584
  "Name": {},
546
585
  "SamplingRate": {
@@ -552,7 +591,7 @@
552
591
  "type": "structure",
553
592
  "members": {
554
593
  "RealtimeLogConfig": {
555
- "shape": "S56"
594
+ "shape": "S5d"
556
595
  }
557
596
  }
558
597
  }
@@ -569,7 +608,7 @@
569
608
  ],
570
609
  "members": {
571
610
  "ResponseHeadersPolicyConfig": {
572
- "shape": "S58",
611
+ "shape": "S5f",
573
612
  "locationName": "ResponseHeadersPolicyConfig",
574
613
  "xmlNamespace": {
575
614
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -582,7 +621,7 @@
582
621
  "type": "structure",
583
622
  "members": {
584
623
  "ResponseHeadersPolicy": {
585
- "shape": "S5y"
624
+ "shape": "S65"
586
625
  },
587
626
  "Location": {
588
627
  "location": "header",
@@ -608,7 +647,7 @@
608
647
  ],
609
648
  "members": {
610
649
  "StreamingDistributionConfig": {
611
- "shape": "S60",
650
+ "shape": "S67",
612
651
  "locationName": "StreamingDistributionConfig",
613
652
  "xmlNamespace": {
614
653
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -621,7 +660,7 @@
621
660
  "type": "structure",
622
661
  "members": {
623
662
  "StreamingDistribution": {
624
- "shape": "S64"
663
+ "shape": "S6b"
625
664
  },
626
665
  "Location": {
627
666
  "location": "header",
@@ -658,7 +697,7 @@
658
697
  ],
659
698
  "members": {
660
699
  "StreamingDistributionConfig": {
661
- "shape": "S60"
700
+ "shape": "S67"
662
701
  },
663
702
  "Tags": {
664
703
  "shape": "S35"
@@ -672,7 +711,7 @@
672
711
  "type": "structure",
673
712
  "members": {
674
713
  "StreamingDistribution": {
675
- "shape": "S64"
714
+ "shape": "S6b"
676
715
  },
677
716
  "Location": {
678
717
  "location": "header",
@@ -851,7 +890,7 @@
851
890
  "DeleteMonitoringSubscription": {
852
891
  "http": {
853
892
  "method": "DELETE",
854
- "requestUri": "/2020-05-31/distributions/{DistributionId}/monitoring-subscription"
893
+ "requestUri": "/2020-05-31/distributions/{DistributionId}/monitoring-subscription/"
855
894
  },
856
895
  "input": {
857
896
  "type": "structure",
@@ -870,6 +909,29 @@
870
909
  "members": {}
871
910
  }
872
911
  },
912
+ "DeleteOriginAccessControl": {
913
+ "http": {
914
+ "method": "DELETE",
915
+ "requestUri": "/2020-05-31/origin-access-control/{Id}",
916
+ "responseCode": 204
917
+ },
918
+ "input": {
919
+ "type": "structure",
920
+ "required": [
921
+ "Id"
922
+ ],
923
+ "members": {
924
+ "Id": {
925
+ "location": "uri",
926
+ "locationName": "Id"
927
+ },
928
+ "IfMatch": {
929
+ "location": "header",
930
+ "locationName": "If-Match"
931
+ }
932
+ }
933
+ }
934
+ },
873
935
  "DeleteOriginRequestPolicy": {
874
936
  "http": {
875
937
  "method": "DELETE",
@@ -1460,7 +1522,7 @@
1460
1522
  "GetMonitoringSubscription": {
1461
1523
  "http": {
1462
1524
  "method": "GET",
1463
- "requestUri": "/2020-05-31/distributions/{DistributionId}/monitoring-subscription"
1525
+ "requestUri": "/2020-05-31/distributions/{DistributionId}/monitoring-subscription/"
1464
1526
  },
1465
1527
  "input": {
1466
1528
  "type": "structure",
@@ -1484,6 +1546,68 @@
1484
1546
  "payload": "MonitoringSubscription"
1485
1547
  }
1486
1548
  },
1549
+ "GetOriginAccessControl": {
1550
+ "http": {
1551
+ "method": "GET",
1552
+ "requestUri": "/2020-05-31/origin-access-control/{Id}"
1553
+ },
1554
+ "input": {
1555
+ "type": "structure",
1556
+ "required": [
1557
+ "Id"
1558
+ ],
1559
+ "members": {
1560
+ "Id": {
1561
+ "location": "uri",
1562
+ "locationName": "Id"
1563
+ }
1564
+ }
1565
+ },
1566
+ "output": {
1567
+ "type": "structure",
1568
+ "members": {
1569
+ "OriginAccessControl": {
1570
+ "shape": "S4s"
1571
+ },
1572
+ "ETag": {
1573
+ "location": "header",
1574
+ "locationName": "ETag"
1575
+ }
1576
+ },
1577
+ "payload": "OriginAccessControl"
1578
+ }
1579
+ },
1580
+ "GetOriginAccessControlConfig": {
1581
+ "http": {
1582
+ "method": "GET",
1583
+ "requestUri": "/2020-05-31/origin-access-control/{Id}/config"
1584
+ },
1585
+ "input": {
1586
+ "type": "structure",
1587
+ "required": [
1588
+ "Id"
1589
+ ],
1590
+ "members": {
1591
+ "Id": {
1592
+ "location": "uri",
1593
+ "locationName": "Id"
1594
+ }
1595
+ }
1596
+ },
1597
+ "output": {
1598
+ "type": "structure",
1599
+ "members": {
1600
+ "OriginAccessControlConfig": {
1601
+ "shape": "S4n"
1602
+ },
1603
+ "ETag": {
1604
+ "location": "header",
1605
+ "locationName": "ETag"
1606
+ }
1607
+ },
1608
+ "payload": "OriginAccessControlConfig"
1609
+ }
1610
+ },
1487
1611
  "GetOriginRequestPolicy": {
1488
1612
  "http": {
1489
1613
  "method": "GET",
@@ -1505,7 +1629,7 @@
1505
1629
  "type": "structure",
1506
1630
  "members": {
1507
1631
  "OriginRequestPolicy": {
1508
- "shape": "S4v"
1632
+ "shape": "S52"
1509
1633
  },
1510
1634
  "ETag": {
1511
1635
  "location": "header",
@@ -1536,7 +1660,7 @@
1536
1660
  "type": "structure",
1537
1661
  "members": {
1538
1662
  "OriginRequestPolicyConfig": {
1539
- "shape": "S4n"
1663
+ "shape": "S4u"
1540
1664
  },
1541
1665
  "ETag": {
1542
1666
  "location": "header",
@@ -1567,7 +1691,7 @@
1567
1691
  "type": "structure",
1568
1692
  "members": {
1569
1693
  "PublicKey": {
1570
- "shape": "S4z"
1694
+ "shape": "S56"
1571
1695
  },
1572
1696
  "ETag": {
1573
1697
  "location": "header",
@@ -1598,7 +1722,7 @@
1598
1722
  "type": "structure",
1599
1723
  "members": {
1600
1724
  "PublicKeyConfig": {
1601
- "shape": "S4x"
1725
+ "shape": "S54"
1602
1726
  },
1603
1727
  "ETag": {
1604
1728
  "location": "header",
@@ -1627,7 +1751,7 @@
1627
1751
  "type": "structure",
1628
1752
  "members": {
1629
1753
  "RealtimeLogConfig": {
1630
- "shape": "S56"
1754
+ "shape": "S5d"
1631
1755
  }
1632
1756
  }
1633
1757
  }
@@ -1653,7 +1777,7 @@
1653
1777
  "type": "structure",
1654
1778
  "members": {
1655
1779
  "ResponseHeadersPolicy": {
1656
- "shape": "S5y"
1780
+ "shape": "S65"
1657
1781
  },
1658
1782
  "ETag": {
1659
1783
  "location": "header",
@@ -1684,7 +1808,7 @@
1684
1808
  "type": "structure",
1685
1809
  "members": {
1686
1810
  "ResponseHeadersPolicyConfig": {
1687
- "shape": "S58"
1811
+ "shape": "S5f"
1688
1812
  },
1689
1813
  "ETag": {
1690
1814
  "location": "header",
@@ -1715,7 +1839,7 @@
1715
1839
  "type": "structure",
1716
1840
  "members": {
1717
1841
  "StreamingDistribution": {
1718
- "shape": "S64"
1842
+ "shape": "S6b"
1719
1843
  },
1720
1844
  "ETag": {
1721
1845
  "location": "header",
@@ -1746,7 +1870,7 @@
1746
1870
  "type": "structure",
1747
1871
  "members": {
1748
1872
  "StreamingDistributionConfig": {
1749
- "shape": "S60"
1873
+ "shape": "S67"
1750
1874
  },
1751
1875
  "ETag": {
1752
1876
  "location": "header",
@@ -1967,7 +2091,7 @@
1967
2091
  "type": "structure",
1968
2092
  "members": {
1969
2093
  "DistributionList": {
1970
- "shape": "S8l"
2094
+ "shape": "S8x"
1971
2095
  }
1972
2096
  },
1973
2097
  "payload": "DistributionList"
@@ -2002,7 +2126,7 @@
2002
2126
  "type": "structure",
2003
2127
  "members": {
2004
2128
  "DistributionIdList": {
2005
- "shape": "S8q"
2129
+ "shape": "S92"
2006
2130
  }
2007
2131
  },
2008
2132
  "payload": "DistributionIdList"
@@ -2037,7 +2161,7 @@
2037
2161
  "type": "structure",
2038
2162
  "members": {
2039
2163
  "DistributionIdList": {
2040
- "shape": "S8q"
2164
+ "shape": "S92"
2041
2165
  }
2042
2166
  },
2043
2167
  "payload": "DistributionIdList"
@@ -2072,7 +2196,7 @@
2072
2196
  "type": "structure",
2073
2197
  "members": {
2074
2198
  "DistributionIdList": {
2075
- "shape": "S8q"
2199
+ "shape": "S92"
2076
2200
  }
2077
2201
  },
2078
2202
  "payload": "DistributionIdList"
@@ -2099,7 +2223,7 @@
2099
2223
  "type": "structure",
2100
2224
  "members": {
2101
2225
  "DistributionList": {
2102
- "shape": "S8l"
2226
+ "shape": "S8x"
2103
2227
  }
2104
2228
  },
2105
2229
  "payload": "DistributionList"
@@ -2134,7 +2258,7 @@
2134
2258
  "type": "structure",
2135
2259
  "members": {
2136
2260
  "DistributionIdList": {
2137
- "shape": "S8q"
2261
+ "shape": "S92"
2138
2262
  }
2139
2263
  },
2140
2264
  "payload": "DistributionIdList"
@@ -2169,7 +2293,7 @@
2169
2293
  "type": "structure",
2170
2294
  "members": {
2171
2295
  "DistributionList": {
2172
- "shape": "S8l"
2296
+ "shape": "S8x"
2173
2297
  }
2174
2298
  },
2175
2299
  "payload": "DistributionList"
@@ -2486,6 +2610,76 @@
2486
2610
  "payload": "KeyGroupList"
2487
2611
  }
2488
2612
  },
2613
+ "ListOriginAccessControls": {
2614
+ "http": {
2615
+ "method": "GET",
2616
+ "requestUri": "/2020-05-31/origin-access-control"
2617
+ },
2618
+ "input": {
2619
+ "type": "structure",
2620
+ "members": {
2621
+ "Marker": {
2622
+ "location": "querystring",
2623
+ "locationName": "Marker"
2624
+ },
2625
+ "MaxItems": {
2626
+ "location": "querystring",
2627
+ "locationName": "MaxItems"
2628
+ }
2629
+ }
2630
+ },
2631
+ "output": {
2632
+ "type": "structure",
2633
+ "members": {
2634
+ "OriginAccessControlList": {
2635
+ "type": "structure",
2636
+ "required": [
2637
+ "Marker",
2638
+ "MaxItems",
2639
+ "IsTruncated",
2640
+ "Quantity"
2641
+ ],
2642
+ "members": {
2643
+ "Marker": {},
2644
+ "NextMarker": {},
2645
+ "MaxItems": {
2646
+ "type": "integer"
2647
+ },
2648
+ "IsTruncated": {
2649
+ "type": "boolean"
2650
+ },
2651
+ "Quantity": {
2652
+ "type": "integer"
2653
+ },
2654
+ "Items": {
2655
+ "type": "list",
2656
+ "member": {
2657
+ "locationName": "OriginAccessControlSummary",
2658
+ "type": "structure",
2659
+ "required": [
2660
+ "Id",
2661
+ "Description",
2662
+ "Name",
2663
+ "SigningProtocol",
2664
+ "SigningBehavior",
2665
+ "OriginAccessControlOriginType"
2666
+ ],
2667
+ "members": {
2668
+ "Id": {},
2669
+ "Description": {},
2670
+ "Name": {},
2671
+ "SigningProtocol": {},
2672
+ "SigningBehavior": {},
2673
+ "OriginAccessControlOriginType": {}
2674
+ }
2675
+ }
2676
+ }
2677
+ }
2678
+ }
2679
+ },
2680
+ "payload": "OriginAccessControlList"
2681
+ }
2682
+ },
2489
2683
  "ListOriginRequestPolicies": {
2490
2684
  "http": {
2491
2685
  "method": "GET",
@@ -2537,7 +2731,7 @@
2537
2731
  "members": {
2538
2732
  "Type": {},
2539
2733
  "OriginRequestPolicy": {
2540
- "shape": "S4v"
2734
+ "shape": "S52"
2541
2735
  }
2542
2736
  }
2543
2737
  }
@@ -2646,7 +2840,7 @@
2646
2840
  "Items": {
2647
2841
  "type": "list",
2648
2842
  "member": {
2649
- "shape": "S56"
2843
+ "shape": "S5d"
2650
2844
  }
2651
2845
  },
2652
2846
  "IsTruncated": {
@@ -2711,7 +2905,7 @@
2711
2905
  "members": {
2712
2906
  "Type": {},
2713
2907
  "ResponseHeadersPolicy": {
2714
- "shape": "S5y"
2908
+ "shape": "S65"
2715
2909
  }
2716
2910
  }
2717
2911
  }
@@ -2790,7 +2984,7 @@
2790
2984
  },
2791
2985
  "DomainName": {},
2792
2986
  "S3Origin": {
2793
- "shape": "S61"
2987
+ "shape": "S68"
2794
2988
  },
2795
2989
  "Aliases": {
2796
2990
  "shape": "Su"
@@ -3305,6 +3499,50 @@
3305
3499
  "payload": "KeyGroup"
3306
3500
  }
3307
3501
  },
3502
+ "UpdateOriginAccessControl": {
3503
+ "http": {
3504
+ "method": "PUT",
3505
+ "requestUri": "/2020-05-31/origin-access-control/{Id}/config"
3506
+ },
3507
+ "input": {
3508
+ "type": "structure",
3509
+ "required": [
3510
+ "OriginAccessControlConfig",
3511
+ "Id"
3512
+ ],
3513
+ "members": {
3514
+ "OriginAccessControlConfig": {
3515
+ "shape": "S4n",
3516
+ "locationName": "OriginAccessControlConfig",
3517
+ "xmlNamespace": {
3518
+ "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
3519
+ }
3520
+ },
3521
+ "Id": {
3522
+ "location": "uri",
3523
+ "locationName": "Id"
3524
+ },
3525
+ "IfMatch": {
3526
+ "location": "header",
3527
+ "locationName": "If-Match"
3528
+ }
3529
+ },
3530
+ "payload": "OriginAccessControlConfig"
3531
+ },
3532
+ "output": {
3533
+ "type": "structure",
3534
+ "members": {
3535
+ "OriginAccessControl": {
3536
+ "shape": "S4s"
3537
+ },
3538
+ "ETag": {
3539
+ "location": "header",
3540
+ "locationName": "ETag"
3541
+ }
3542
+ },
3543
+ "payload": "OriginAccessControl"
3544
+ }
3545
+ },
3308
3546
  "UpdateOriginRequestPolicy": {
3309
3547
  "http": {
3310
3548
  "method": "PUT",
@@ -3318,7 +3556,7 @@
3318
3556
  ],
3319
3557
  "members": {
3320
3558
  "OriginRequestPolicyConfig": {
3321
- "shape": "S4n",
3559
+ "shape": "S4u",
3322
3560
  "locationName": "OriginRequestPolicyConfig",
3323
3561
  "xmlNamespace": {
3324
3562
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -3339,7 +3577,7 @@
3339
3577
  "type": "structure",
3340
3578
  "members": {
3341
3579
  "OriginRequestPolicy": {
3342
- "shape": "S4v"
3580
+ "shape": "S52"
3343
3581
  },
3344
3582
  "ETag": {
3345
3583
  "location": "header",
@@ -3362,7 +3600,7 @@
3362
3600
  ],
3363
3601
  "members": {
3364
3602
  "PublicKeyConfig": {
3365
- "shape": "S4x",
3603
+ "shape": "S54",
3366
3604
  "locationName": "PublicKeyConfig",
3367
3605
  "xmlNamespace": {
3368
3606
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -3383,7 +3621,7 @@
3383
3621
  "type": "structure",
3384
3622
  "members": {
3385
3623
  "PublicKey": {
3386
- "shape": "S4z"
3624
+ "shape": "S56"
3387
3625
  },
3388
3626
  "ETag": {
3389
3627
  "location": "header",
@@ -3406,10 +3644,10 @@
3406
3644
  "type": "structure",
3407
3645
  "members": {
3408
3646
  "EndPoints": {
3409
- "shape": "S51"
3647
+ "shape": "S58"
3410
3648
  },
3411
3649
  "Fields": {
3412
- "shape": "S54"
3650
+ "shape": "S5b"
3413
3651
  },
3414
3652
  "Name": {},
3415
3653
  "ARN": {},
@@ -3422,7 +3660,7 @@
3422
3660
  "type": "structure",
3423
3661
  "members": {
3424
3662
  "RealtimeLogConfig": {
3425
- "shape": "S56"
3663
+ "shape": "S5d"
3426
3664
  }
3427
3665
  }
3428
3666
  }
@@ -3440,7 +3678,7 @@
3440
3678
  ],
3441
3679
  "members": {
3442
3680
  "ResponseHeadersPolicyConfig": {
3443
- "shape": "S58",
3681
+ "shape": "S5f",
3444
3682
  "locationName": "ResponseHeadersPolicyConfig",
3445
3683
  "xmlNamespace": {
3446
3684
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -3461,7 +3699,7 @@
3461
3699
  "type": "structure",
3462
3700
  "members": {
3463
3701
  "ResponseHeadersPolicy": {
3464
- "shape": "S5y"
3702
+ "shape": "S65"
3465
3703
  },
3466
3704
  "ETag": {
3467
3705
  "location": "header",
@@ -3484,7 +3722,7 @@
3484
3722
  ],
3485
3723
  "members": {
3486
3724
  "StreamingDistributionConfig": {
3487
- "shape": "S60",
3725
+ "shape": "S67",
3488
3726
  "locationName": "StreamingDistributionConfig",
3489
3727
  "xmlNamespace": {
3490
3728
  "uri": "http://cloudfront.amazonaws.com/doc/2020-05-31/"
@@ -3505,7 +3743,7 @@
3505
3743
  "type": "structure",
3506
3744
  "members": {
3507
3745
  "StreamingDistribution": {
3508
- "shape": "S64"
3746
+ "shape": "S6b"
3509
3747
  },
3510
3748
  "ETag": {
3511
3749
  "location": "header",
@@ -3888,7 +4126,8 @@
3888
4126
  },
3889
4127
  "OriginShieldRegion": {}
3890
4128
  }
3891
- }
4129
+ },
4130
+ "OriginAccessControlId": {}
3892
4131
  }
3893
4132
  }
3894
4133
  }
@@ -4815,6 +5054,35 @@
4815
5054
  }
4816
5055
  },
4817
5056
  "S4n": {
5057
+ "type": "structure",
5058
+ "required": [
5059
+ "Name",
5060
+ "Description",
5061
+ "SigningProtocol",
5062
+ "SigningBehavior",
5063
+ "OriginAccessControlOriginType"
5064
+ ],
5065
+ "members": {
5066
+ "Name": {},
5067
+ "Description": {},
5068
+ "SigningProtocol": {},
5069
+ "SigningBehavior": {},
5070
+ "OriginAccessControlOriginType": {}
5071
+ }
5072
+ },
5073
+ "S4s": {
5074
+ "type": "structure",
5075
+ "required": [
5076
+ "Id"
5077
+ ],
5078
+ "members": {
5079
+ "Id": {},
5080
+ "OriginAccessControlConfig": {
5081
+ "shape": "S4n"
5082
+ }
5083
+ }
5084
+ },
5085
+ "S4u": {
4818
5086
  "type": "structure",
4819
5087
  "required": [
4820
5088
  "Name",
@@ -4863,7 +5131,7 @@
4863
5131
  }
4864
5132
  }
4865
5133
  },
4866
- "S4v": {
5134
+ "S52": {
4867
5135
  "type": "structure",
4868
5136
  "required": [
4869
5137
  "Id",
@@ -4876,11 +5144,11 @@
4876
5144
  "type": "timestamp"
4877
5145
  },
4878
5146
  "OriginRequestPolicyConfig": {
4879
- "shape": "S4n"
5147
+ "shape": "S4u"
4880
5148
  }
4881
5149
  }
4882
5150
  },
4883
- "S4x": {
5151
+ "S54": {
4884
5152
  "type": "structure",
4885
5153
  "required": [
4886
5154
  "CallerReference",
@@ -4894,7 +5162,7 @@
4894
5162
  "Comment": {}
4895
5163
  }
4896
5164
  },
4897
- "S4z": {
5165
+ "S56": {
4898
5166
  "type": "structure",
4899
5167
  "required": [
4900
5168
  "Id",
@@ -4907,11 +5175,11 @@
4907
5175
  "type": "timestamp"
4908
5176
  },
4909
5177
  "PublicKeyConfig": {
4910
- "shape": "S4x"
5178
+ "shape": "S54"
4911
5179
  }
4912
5180
  }
4913
5181
  },
4914
- "S51": {
5182
+ "S58": {
4915
5183
  "type": "list",
4916
5184
  "member": {
4917
5185
  "type": "structure",
@@ -4934,13 +5202,13 @@
4934
5202
  }
4935
5203
  }
4936
5204
  },
4937
- "S54": {
5205
+ "S5b": {
4938
5206
  "type": "list",
4939
5207
  "member": {
4940
5208
  "locationName": "Field"
4941
5209
  }
4942
5210
  },
4943
- "S56": {
5211
+ "S5d": {
4944
5212
  "type": "structure",
4945
5213
  "required": [
4946
5214
  "ARN",
@@ -4956,14 +5224,14 @@
4956
5224
  "type": "long"
4957
5225
  },
4958
5226
  "EndPoints": {
4959
- "shape": "S51"
5227
+ "shape": "S58"
4960
5228
  },
4961
5229
  "Fields": {
4962
- "shape": "S54"
5230
+ "shape": "S5b"
4963
5231
  }
4964
5232
  }
4965
5233
  },
4966
- "S58": {
5234
+ "S5f": {
4967
5235
  "type": "structure",
4968
5236
  "required": [
4969
5237
  "Name"
@@ -5158,6 +5426,20 @@
5158
5426
  }
5159
5427
  }
5160
5428
  },
5429
+ "ServerTimingHeadersConfig": {
5430
+ "type": "structure",
5431
+ "required": [
5432
+ "Enabled"
5433
+ ],
5434
+ "members": {
5435
+ "Enabled": {
5436
+ "type": "boolean"
5437
+ },
5438
+ "SamplingRate": {
5439
+ "type": "double"
5440
+ }
5441
+ }
5442
+ },
5161
5443
  "CustomHeadersConfig": {
5162
5444
  "type": "structure",
5163
5445
  "required": [
@@ -5187,24 +5469,10 @@
5187
5469
  }
5188
5470
  }
5189
5471
  }
5190
- },
5191
- "ServerTimingHeadersConfig": {
5192
- "type": "structure",
5193
- "required": [
5194
- "Enabled"
5195
- ],
5196
- "members": {
5197
- "Enabled": {
5198
- "type": "boolean"
5199
- },
5200
- "SamplingRate": {
5201
- "type": "double"
5202
- }
5203
- }
5204
5472
  }
5205
5473
  }
5206
5474
  },
5207
- "S5y": {
5475
+ "S65": {
5208
5476
  "type": "structure",
5209
5477
  "required": [
5210
5478
  "Id",
@@ -5217,11 +5485,11 @@
5217
5485
  "type": "timestamp"
5218
5486
  },
5219
5487
  "ResponseHeadersPolicyConfig": {
5220
- "shape": "S58"
5488
+ "shape": "S5f"
5221
5489
  }
5222
5490
  }
5223
5491
  },
5224
- "S60": {
5492
+ "S67": {
5225
5493
  "type": "structure",
5226
5494
  "required": [
5227
5495
  "CallerReference",
@@ -5233,7 +5501,7 @@
5233
5501
  "members": {
5234
5502
  "CallerReference": {},
5235
5503
  "S3Origin": {
5236
- "shape": "S61"
5504
+ "shape": "S68"
5237
5505
  },
5238
5506
  "Aliases": {
5239
5507
  "shape": "Su"
@@ -5263,7 +5531,7 @@
5263
5531
  }
5264
5532
  }
5265
5533
  },
5266
- "S61": {
5534
+ "S68": {
5267
5535
  "type": "structure",
5268
5536
  "required": [
5269
5537
  "DomainName",
@@ -5274,7 +5542,7 @@
5274
5542
  "OriginAccessIdentity": {}
5275
5543
  }
5276
5544
  },
5277
- "S64": {
5545
+ "S6b": {
5278
5546
  "type": "structure",
5279
5547
  "required": [
5280
5548
  "Id",
@@ -5296,11 +5564,11 @@
5296
5564
  "shape": "S2s"
5297
5565
  },
5298
5566
  "StreamingDistributionConfig": {
5299
- "shape": "S60"
5567
+ "shape": "S67"
5300
5568
  }
5301
5569
  }
5302
5570
  },
5303
- "S8l": {
5571
+ "S8x": {
5304
5572
  "type": "structure",
5305
5573
  "required": [
5306
5574
  "Marker",
@@ -5395,7 +5663,7 @@
5395
5663
  }
5396
5664
  }
5397
5665
  },
5398
- "S8q": {
5666
+ "S92": {
5399
5667
  "type": "structure",
5400
5668
  "required": [
5401
5669
  "Marker",