aws-sdk-core 2.11.519 → 2.11.520

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb068c28bcefc500009039d52715e8d217f4a15b33b51808766be412bce7931a
4
- data.tar.gz: f3c8654de8a0629722fffb1a1e3e85248ae0c5cabf3807a1141f19521ad805d5
3
+ metadata.gz: b4724ba6b12f2955450db10397b2767fd093bc6ee938ba1f26472b0f70abc8ae
4
+ data.tar.gz: 7edab32ee7c9768384a3ec6a4f4c0010d3c215e796df1d8e2d53bc75703300d1
5
5
  SHA512:
6
- metadata.gz: 333d0387e9a18c7ba1f9a8805010b676f8ede4dd0980174fbc2fe1ace65b0d1c3c47a0a230761a5e59e5eead451ae3acdd763a3e8126dd61c42c6704e4dab888
7
- data.tar.gz: 2fe3308eac6bf03e4fcf1cebddc03d329afc9f61b9b18254817a1b8c23513d02acc892adca4aa0a794ba0d719b08eedd49cf853c29c993bc7ca7d22ec7a439bf
6
+ metadata.gz: 9b3d944bdb7b731e3afbd258505a733b99720466690ae384e74be536f23c61f6b58e3d4005860955ac7fafb931ffb5aaf03467d430f5ebb41a6b5b29d0d407e7
7
+ data.tar.gz: 9593743530488c9dfd8353efbdff895039def1ab74b90634e3c1791879ae0536023d39ae0e393a959c543b12917f9e1bd832a1639bd9cd2085106ab1eab9daa0
@@ -658,6 +658,45 @@
658
658
  {"shape":"DirectConnectClientException"}
659
659
  ]
660
660
  },
661
+ "ListVirtualInterfaceTestHistory":{
662
+ "name":"ListVirtualInterfaceTestHistory",
663
+ "http":{
664
+ "method":"POST",
665
+ "requestUri":"/"
666
+ },
667
+ "input":{"shape":"ListVirtualInterfaceTestHistoryRequest"},
668
+ "output":{"shape":"ListVirtualInterfaceTestHistoryResponse"},
669
+ "errors":[
670
+ {"shape":"DirectConnectServerException"},
671
+ {"shape":"DirectConnectClientException"}
672
+ ]
673
+ },
674
+ "StartBgpFailoverTest":{
675
+ "name":"StartBgpFailoverTest",
676
+ "http":{
677
+ "method":"POST",
678
+ "requestUri":"/"
679
+ },
680
+ "input":{"shape":"StartBgpFailoverTestRequest"},
681
+ "output":{"shape":"StartBgpFailoverTestResponse"},
682
+ "errors":[
683
+ {"shape":"DirectConnectServerException"},
684
+ {"shape":"DirectConnectClientException"}
685
+ ]
686
+ },
687
+ "StopBgpFailoverTest":{
688
+ "name":"StopBgpFailoverTest",
689
+ "http":{
690
+ "method":"POST",
691
+ "requestUri":"/"
692
+ },
693
+ "input":{"shape":"StopBgpFailoverTestRequest"},
694
+ "output":{"shape":"StopBgpFailoverTestResponse"},
695
+ "errors":[
696
+ {"shape":"DirectConnectServerException"},
697
+ {"shape":"DirectConnectClientException"}
698
+ ]
699
+ },
661
700
  "TagResource":{
662
701
  "name":"TagResource",
663
702
  "http":{
@@ -904,6 +943,10 @@
904
943
  }
905
944
  },
906
945
  "BGPPeerId":{"type":"string"},
946
+ "BGPPeerIdList":{
947
+ "type":"list",
948
+ "member":{"shape":"BGPPeerId"}
949
+ },
907
950
  "BGPPeerList":{
908
951
  "type":"list",
909
952
  "member":{"shape":"BGPPeer"}
@@ -1587,7 +1630,9 @@
1587
1630
  },
1588
1631
  "exception":true
1589
1632
  },
1633
+ "EndTime":{"type":"timestamp"},
1590
1634
  "ErrorMessage":{"type":"string"},
1635
+ "FailureTestHistoryStatus":{"type":"string"},
1591
1636
  "GatewayIdToAssociate":{"type":"string"},
1592
1637
  "GatewayIdentifier":{"type":"string"},
1593
1638
  "GatewayType":{
@@ -1695,6 +1740,24 @@
1695
1740
  "lags":{"shape":"LagList"}
1696
1741
  }
1697
1742
  },
1743
+ "ListVirtualInterfaceTestHistoryRequest":{
1744
+ "type":"structure",
1745
+ "members":{
1746
+ "testId":{"shape":"TestId"},
1747
+ "virtualInterfaceId":{"shape":"VirtualInterfaceId"},
1748
+ "bgpPeers":{"shape":"BGPPeerIdList"},
1749
+ "status":{"shape":"FailureTestHistoryStatus"},
1750
+ "maxResults":{"shape":"MaxResultSetSize"},
1751
+ "nextToken":{"shape":"PaginationToken"}
1752
+ }
1753
+ },
1754
+ "ListVirtualInterfaceTestHistoryResponse":{
1755
+ "type":"structure",
1756
+ "members":{
1757
+ "virtualInterfaceTestHistory":{"shape":"VirtualInterfaceTestHistoryList"},
1758
+ "nextToken":{"shape":"PaginationToken"}
1759
+ }
1760
+ },
1698
1761
  "Loa":{
1699
1762
  "type":"structure",
1700
1763
  "members":{
@@ -1890,7 +1953,36 @@
1890
1953
  "member":{"shape":"RouteFilterPrefix"}
1891
1954
  },
1892
1955
  "RouterConfig":{"type":"string"},
1956
+ "StartBgpFailoverTestRequest":{
1957
+ "type":"structure",
1958
+ "required":["virtualInterfaceId"],
1959
+ "members":{
1960
+ "virtualInterfaceId":{"shape":"VirtualInterfaceId"},
1961
+ "bgpPeers":{"shape":"BGPPeerIdList"},
1962
+ "testDurationInMinutes":{"shape":"TestDuration"}
1963
+ }
1964
+ },
1965
+ "StartBgpFailoverTestResponse":{
1966
+ "type":"structure",
1967
+ "members":{
1968
+ "virtualInterfaceTest":{"shape":"VirtualInterfaceTestHistory"}
1969
+ }
1970
+ },
1971
+ "StartTime":{"type":"timestamp"},
1893
1972
  "StateChangeError":{"type":"string"},
1973
+ "StopBgpFailoverTestRequest":{
1974
+ "type":"structure",
1975
+ "required":["virtualInterfaceId"],
1976
+ "members":{
1977
+ "virtualInterfaceId":{"shape":"VirtualInterfaceId"}
1978
+ }
1979
+ },
1980
+ "StopBgpFailoverTestResponse":{
1981
+ "type":"structure",
1982
+ "members":{
1983
+ "virtualInterfaceTest":{"shape":"VirtualInterfaceTestHistory"}
1984
+ }
1985
+ },
1894
1986
  "Tag":{
1895
1987
  "type":"structure",
1896
1988
  "required":["key"],
@@ -1936,6 +2028,11 @@
1936
2028
  "min":0,
1937
2029
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1938
2030
  },
2031
+ "TestDuration":{
2032
+ "type":"integer",
2033
+ "box":true
2034
+ },
2035
+ "TestId":{"type":"string"},
1939
2036
  "TooManyTagsException":{
1940
2037
  "type":"structure",
1941
2038
  "members":{
@@ -2063,6 +2160,23 @@
2063
2160
  "unknown"
2064
2161
  ]
2065
2162
  },
2163
+ "VirtualInterfaceTestHistory":{
2164
+ "type":"structure",
2165
+ "members":{
2166
+ "testId":{"shape":"TestId"},
2167
+ "virtualInterfaceId":{"shape":"VirtualInterfaceId"},
2168
+ "bgpPeers":{"shape":"BGPPeerIdList"},
2169
+ "status":{"shape":"FailureTestHistoryStatus"},
2170
+ "ownerAccount":{"shape":"OwnerAccount"},
2171
+ "testDurationInMinutes":{"shape":"TestDuration"},
2172
+ "startTime":{"shape":"StartTime"},
2173
+ "endTime":{"shape":"EndTime"}
2174
+ }
2175
+ },
2176
+ "VirtualInterfaceTestHistoryList":{
2177
+ "type":"list",
2178
+ "member":{"shape":"VirtualInterfaceTestHistory"}
2179
+ },
2066
2180
  "VirtualInterfaceType":{"type":"string"},
2067
2181
  "VirtualInterfaces":{
2068
2182
  "type":"structure",
@@ -1825,6 +1825,7 @@
1825
1825
  "GlobalReplicationGroupId":{"shape":"String"},
1826
1826
  "PrimaryClusterId":{"shape":"String"},
1827
1827
  "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1828
+ "MultiAZEnabled":{"shape":"BooleanOptional"},
1828
1829
  "NumCacheClusters":{"shape":"IntegerOptional"},
1829
1830
  "PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
1830
1831
  "NumNodeGroups":{"shape":"IntegerOptional"},
@@ -2661,6 +2662,7 @@
2661
2662
  "PrimaryClusterId":{"shape":"String"},
2662
2663
  "SnapshottingClusterId":{"shape":"String"},
2663
2664
  "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
2665
+ "MultiAZEnabled":{"shape":"BooleanOptional"},
2664
2666
  "NodeGroupId":{
2665
2667
  "shape":"String",
2666
2668
  "deprecated":true
@@ -2709,6 +2711,13 @@
2709
2711
  "ReplicationGroup":{"shape":"ReplicationGroup"}
2710
2712
  }
2711
2713
  },
2714
+ "MultiAZStatus":{
2715
+ "type":"string",
2716
+ "enum":[
2717
+ "enabled",
2718
+ "disabled"
2719
+ ]
2720
+ },
2712
2721
  "NoOperationFault":{
2713
2722
  "type":"structure",
2714
2723
  "members":{
@@ -3107,6 +3116,7 @@
3107
3116
  "NodeGroups":{"shape":"NodeGroupList"},
3108
3117
  "SnapshottingClusterId":{"shape":"String"},
3109
3118
  "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
3119
+ "MultiAZ":{"shape":"MultiAZStatus"},
3110
3120
  "ConfigurationEndpoint":{"shape":"Endpoint"},
3111
3121
  "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
3112
3122
  "SnapshotWindow":{"shape":"String"},
@@ -10,6 +10,20 @@
10
10
  "uid":"es-2015-01-01"
11
11
  },
12
12
  "operations":{
13
+ "AcceptInboundCrossClusterSearchConnection":{
14
+ "name":"AcceptInboundCrossClusterSearchConnection",
15
+ "http":{
16
+ "method":"PUT",
17
+ "requestUri":"/2015-01-01/es/ccs/inboundConnection/{ConnectionId}/accept"
18
+ },
19
+ "input":{"shape":"AcceptInboundCrossClusterSearchConnectionRequest"},
20
+ "output":{"shape":"AcceptInboundCrossClusterSearchConnectionResponse"},
21
+ "errors":[
22
+ {"shape":"ResourceNotFoundException"},
23
+ {"shape":"LimitExceededException"},
24
+ {"shape":"DisabledOperationException"}
25
+ ]
26
+ },
13
27
  "AddTags":{
14
28
  "name":"AddTags",
15
29
  "http":{
@@ -74,6 +88,21 @@
74
88
  {"shape":"ValidationException"}
75
89
  ]
76
90
  },
91
+ "CreateOutboundCrossClusterSearchConnection":{
92
+ "name":"CreateOutboundCrossClusterSearchConnection",
93
+ "http":{
94
+ "method":"POST",
95
+ "requestUri":"/2015-01-01/es/ccs/outboundConnection"
96
+ },
97
+ "input":{"shape":"CreateOutboundCrossClusterSearchConnectionRequest"},
98
+ "output":{"shape":"CreateOutboundCrossClusterSearchConnectionResponse"},
99
+ "errors":[
100
+ {"shape":"LimitExceededException"},
101
+ {"shape":"InternalException"},
102
+ {"shape":"ResourceAlreadyExistsException"},
103
+ {"shape":"DisabledOperationException"}
104
+ ]
105
+ },
77
106
  "CreatePackage":{
78
107
  "name":"CreatePackage",
79
108
  "http":{
@@ -119,6 +148,32 @@
119
148
  {"shape":"ValidationException"}
120
149
  ]
121
150
  },
151
+ "DeleteInboundCrossClusterSearchConnection":{
152
+ "name":"DeleteInboundCrossClusterSearchConnection",
153
+ "http":{
154
+ "method":"DELETE",
155
+ "requestUri":"/2015-01-01/es/ccs/inboundConnection/{ConnectionId}"
156
+ },
157
+ "input":{"shape":"DeleteInboundCrossClusterSearchConnectionRequest"},
158
+ "output":{"shape":"DeleteInboundCrossClusterSearchConnectionResponse"},
159
+ "errors":[
160
+ {"shape":"ResourceNotFoundException"},
161
+ {"shape":"DisabledOperationException"}
162
+ ]
163
+ },
164
+ "DeleteOutboundCrossClusterSearchConnection":{
165
+ "name":"DeleteOutboundCrossClusterSearchConnection",
166
+ "http":{
167
+ "method":"DELETE",
168
+ "requestUri":"/2015-01-01/es/ccs/outboundConnection/{ConnectionId}"
169
+ },
170
+ "input":{"shape":"DeleteOutboundCrossClusterSearchConnectionRequest"},
171
+ "output":{"shape":"DeleteOutboundCrossClusterSearchConnectionResponse"},
172
+ "errors":[
173
+ {"shape":"ResourceNotFoundException"},
174
+ {"shape":"DisabledOperationException"}
175
+ ]
176
+ },
122
177
  "DeletePackage":{
123
178
  "name":"DeletePackage",
124
179
  "http":{
@@ -197,6 +252,32 @@
197
252
  {"shape":"ValidationException"}
198
253
  ]
199
254
  },
255
+ "DescribeInboundCrossClusterSearchConnections":{
256
+ "name":"DescribeInboundCrossClusterSearchConnections",
257
+ "http":{
258
+ "method":"POST",
259
+ "requestUri":"/2015-01-01/es/ccs/inboundConnection/search"
260
+ },
261
+ "input":{"shape":"DescribeInboundCrossClusterSearchConnectionsRequest"},
262
+ "output":{"shape":"DescribeInboundCrossClusterSearchConnectionsResponse"},
263
+ "errors":[
264
+ {"shape":"InvalidPaginationTokenException"},
265
+ {"shape":"DisabledOperationException"}
266
+ ]
267
+ },
268
+ "DescribeOutboundCrossClusterSearchConnections":{
269
+ "name":"DescribeOutboundCrossClusterSearchConnections",
270
+ "http":{
271
+ "method":"POST",
272
+ "requestUri":"/2015-01-01/es/ccs/outboundConnection/search"
273
+ },
274
+ "input":{"shape":"DescribeOutboundCrossClusterSearchConnectionsRequest"},
275
+ "output":{"shape":"DescribeOutboundCrossClusterSearchConnectionsResponse"},
276
+ "errors":[
277
+ {"shape":"InvalidPaginationTokenException"},
278
+ {"shape":"DisabledOperationException"}
279
+ ]
280
+ },
200
281
  "DescribePackages":{
201
282
  "name":"DescribePackages",
202
283
  "http":{
@@ -414,6 +495,19 @@
414
495
  {"shape":"InternalException"}
415
496
  ]
416
497
  },
498
+ "RejectInboundCrossClusterSearchConnection":{
499
+ "name":"RejectInboundCrossClusterSearchConnection",
500
+ "http":{
501
+ "method":"PUT",
502
+ "requestUri":"/2015-01-01/es/ccs/inboundConnection/{ConnectionId}/reject"
503
+ },
504
+ "input":{"shape":"RejectInboundCrossClusterSearchConnectionRequest"},
505
+ "output":{"shape":"RejectInboundCrossClusterSearchConnectionResponse"},
506
+ "errors":[
507
+ {"shape":"ResourceNotFoundException"},
508
+ {"shape":"DisabledOperationException"}
509
+ ]
510
+ },
417
511
  "RemoveTags":{
418
512
  "name":"RemoveTags",
419
513
  "http":{
@@ -479,6 +573,23 @@
479
573
  },
480
574
  "shapes":{
481
575
  "ARN":{"type":"string"},
576
+ "AcceptInboundCrossClusterSearchConnectionRequest":{
577
+ "type":"structure",
578
+ "required":["CrossClusterSearchConnectionId"],
579
+ "members":{
580
+ "CrossClusterSearchConnectionId":{
581
+ "shape":"CrossClusterSearchConnectionId",
582
+ "location":"uri",
583
+ "locationName":"ConnectionId"
584
+ }
585
+ }
586
+ },
587
+ "AcceptInboundCrossClusterSearchConnectionResponse":{
588
+ "type":"structure",
589
+ "members":{
590
+ "CrossClusterSearchConnection":{"shape":"InboundCrossClusterSearchConnection"}
591
+ }
592
+ },
482
593
  "AccessDeniedException":{
483
594
  "type":"structure",
484
595
  "members":{
@@ -646,6 +757,10 @@
646
757
  "error":{"httpStatusCode":409},
647
758
  "exception":true
648
759
  },
760
+ "ConnectionAlias":{
761
+ "type":"string",
762
+ "max":20
763
+ },
649
764
  "CreateElasticsearchDomainRequest":{
650
765
  "type":"structure",
651
766
  "required":["DomainName"],
@@ -672,6 +787,29 @@
672
787
  "DomainStatus":{"shape":"ElasticsearchDomainStatus"}
673
788
  }
674
789
  },
790
+ "CreateOutboundCrossClusterSearchConnectionRequest":{
791
+ "type":"structure",
792
+ "required":[
793
+ "SourceDomainInfo",
794
+ "DestinationDomainInfo",
795
+ "ConnectionAlias"
796
+ ],
797
+ "members":{
798
+ "SourceDomainInfo":{"shape":"DomainInformation"},
799
+ "DestinationDomainInfo":{"shape":"DomainInformation"},
800
+ "ConnectionAlias":{"shape":"ConnectionAlias"}
801
+ }
802
+ },
803
+ "CreateOutboundCrossClusterSearchConnectionResponse":{
804
+ "type":"structure",
805
+ "members":{
806
+ "SourceDomainInfo":{"shape":"DomainInformation"},
807
+ "DestinationDomainInfo":{"shape":"DomainInformation"},
808
+ "ConnectionAlias":{"shape":"ConnectionAlias"},
809
+ "ConnectionStatus":{"shape":"OutboundCrossClusterSearchConnectionStatus"},
810
+ "CrossClusterSearchConnectionId":{"shape":"CrossClusterSearchConnectionId"}
811
+ }
812
+ },
675
813
  "CreatePackageRequest":{
676
814
  "type":"structure",
677
815
  "required":[
@@ -693,6 +831,8 @@
693
831
  }
694
832
  },
695
833
  "CreatedAt":{"type":"timestamp"},
834
+ "CrossClusterSearchConnectionId":{"type":"string"},
835
+ "CrossClusterSearchConnectionStatusMessage":{"type":"string"},
696
836
  "DeleteElasticsearchDomainRequest":{
697
837
  "type":"structure",
698
838
  "required":["DomainName"],
@@ -710,6 +850,40 @@
710
850
  "DomainStatus":{"shape":"ElasticsearchDomainStatus"}
711
851
  }
712
852
  },
853
+ "DeleteInboundCrossClusterSearchConnectionRequest":{
854
+ "type":"structure",
855
+ "required":["CrossClusterSearchConnectionId"],
856
+ "members":{
857
+ "CrossClusterSearchConnectionId":{
858
+ "shape":"CrossClusterSearchConnectionId",
859
+ "location":"uri",
860
+ "locationName":"ConnectionId"
861
+ }
862
+ }
863
+ },
864
+ "DeleteInboundCrossClusterSearchConnectionResponse":{
865
+ "type":"structure",
866
+ "members":{
867
+ "CrossClusterSearchConnection":{"shape":"InboundCrossClusterSearchConnection"}
868
+ }
869
+ },
870
+ "DeleteOutboundCrossClusterSearchConnectionRequest":{
871
+ "type":"structure",
872
+ "required":["CrossClusterSearchConnectionId"],
873
+ "members":{
874
+ "CrossClusterSearchConnectionId":{
875
+ "shape":"CrossClusterSearchConnectionId",
876
+ "location":"uri",
877
+ "locationName":"ConnectionId"
878
+ }
879
+ }
880
+ },
881
+ "DeleteOutboundCrossClusterSearchConnectionResponse":{
882
+ "type":"structure",
883
+ "members":{
884
+ "CrossClusterSearchConnection":{"shape":"OutboundCrossClusterSearchConnection"}
885
+ }
886
+ },
713
887
  "DeletePackageRequest":{
714
888
  "type":"structure",
715
889
  "required":["PackageID"],
@@ -818,6 +992,36 @@
818
992
  "LimitsByRole":{"shape":"LimitsByRole"}
819
993
  }
820
994
  },
995
+ "DescribeInboundCrossClusterSearchConnectionsRequest":{
996
+ "type":"structure",
997
+ "members":{
998
+ "Filters":{"shape":"FilterList"},
999
+ "MaxResults":{"shape":"MaxResults"},
1000
+ "NextToken":{"shape":"NextToken"}
1001
+ }
1002
+ },
1003
+ "DescribeInboundCrossClusterSearchConnectionsResponse":{
1004
+ "type":"structure",
1005
+ "members":{
1006
+ "CrossClusterSearchConnections":{"shape":"InboundCrossClusterSearchConnections"},
1007
+ "NextToken":{"shape":"NextToken"}
1008
+ }
1009
+ },
1010
+ "DescribeOutboundCrossClusterSearchConnectionsRequest":{
1011
+ "type":"structure",
1012
+ "members":{
1013
+ "Filters":{"shape":"FilterList"},
1014
+ "MaxResults":{"shape":"MaxResults"},
1015
+ "NextToken":{"shape":"NextToken"}
1016
+ }
1017
+ },
1018
+ "DescribeOutboundCrossClusterSearchConnectionsResponse":{
1019
+ "type":"structure",
1020
+ "members":{
1021
+ "CrossClusterSearchConnections":{"shape":"OutboundCrossClusterSearchConnections"},
1022
+ "NextToken":{"shape":"NextToken"}
1023
+ }
1024
+ },
821
1025
  "DescribePackagesFilter":{
822
1026
  "type":"structure",
823
1027
  "members":{
@@ -979,6 +1183,15 @@
979
1183
  "type":"list",
980
1184
  "member":{"shape":"DomainInfo"}
981
1185
  },
1186
+ "DomainInformation":{
1187
+ "type":"structure",
1188
+ "required":["DomainName"],
1189
+ "members":{
1190
+ "OwnerId":{"shape":"OwnerId"},
1191
+ "DomainName":{"shape":"DomainName"},
1192
+ "Region":{"shape":"Region"}
1193
+ }
1194
+ },
982
1195
  "DomainName":{
983
1196
  "type":"string",
984
1197
  "max":28,
@@ -1241,6 +1454,17 @@
1241
1454
  },
1242
1455
  "ErrorMessage":{"type":"string"},
1243
1456
  "ErrorType":{"type":"string"},
1457
+ "Filter":{
1458
+ "type":"structure",
1459
+ "members":{
1460
+ "Name":{"shape":"NonEmptyString"},
1461
+ "Values":{"shape":"ValueStringList"}
1462
+ }
1463
+ },
1464
+ "FilterList":{
1465
+ "type":"list",
1466
+ "member":{"shape":"Filter"}
1467
+ },
1244
1468
  "GUID":{
1245
1469
  "type":"string",
1246
1470
  "pattern":"\\p{XDigit}{8}-\\p{XDigit}{4}-\\p{XDigit}{4}-\\p{XDigit}{4}-\\p{XDigit}{12}"
@@ -1314,6 +1538,37 @@
1314
1538
  "min":1,
1315
1539
  "pattern":"[\\w-]+:[0-9a-f-]+"
1316
1540
  },
1541
+ "InboundCrossClusterSearchConnection":{
1542
+ "type":"structure",
1543
+ "members":{
1544
+ "SourceDomainInfo":{"shape":"DomainInformation"},
1545
+ "DestinationDomainInfo":{"shape":"DomainInformation"},
1546
+ "CrossClusterSearchConnectionId":{"shape":"CrossClusterSearchConnectionId"},
1547
+ "ConnectionStatus":{"shape":"InboundCrossClusterSearchConnectionStatus"}
1548
+ }
1549
+ },
1550
+ "InboundCrossClusterSearchConnectionStatus":{
1551
+ "type":"structure",
1552
+ "members":{
1553
+ "StatusCode":{"shape":"InboundCrossClusterSearchConnectionStatusCode"},
1554
+ "Message":{"shape":"CrossClusterSearchConnectionStatusMessage"}
1555
+ }
1556
+ },
1557
+ "InboundCrossClusterSearchConnectionStatusCode":{
1558
+ "type":"string",
1559
+ "enum":[
1560
+ "PENDING_ACCEPTANCE",
1561
+ "APPROVED",
1562
+ "REJECTING",
1563
+ "REJECTED",
1564
+ "DELETING",
1565
+ "DELETED"
1566
+ ]
1567
+ },
1568
+ "InboundCrossClusterSearchConnections":{
1569
+ "type":"list",
1570
+ "member":{"shape":"InboundCrossClusterSearchConnection"}
1571
+ },
1317
1572
  "InstanceCount":{
1318
1573
  "type":"integer",
1319
1574
  "min":1
@@ -1341,6 +1596,13 @@
1341
1596
  "error":{"httpStatusCode":500},
1342
1597
  "exception":true
1343
1598
  },
1599
+ "InvalidPaginationTokenException":{
1600
+ "type":"structure",
1601
+ "members":{
1602
+ },
1603
+ "error":{"httpStatusCode":400},
1604
+ "exception":true
1605
+ },
1344
1606
  "InvalidTypeException":{
1345
1607
  "type":"structure",
1346
1608
  "members":{
@@ -1578,6 +1840,10 @@
1578
1840
  "Status":{"shape":"OptionStatus"}
1579
1841
  }
1580
1842
  },
1843
+ "NonEmptyString":{
1844
+ "type":"string",
1845
+ "min":1
1846
+ },
1581
1847
  "OptionState":{
1582
1848
  "type":"string",
1583
1849
  "enum":[
@@ -1601,6 +1867,45 @@
1601
1867
  "PendingDeletion":{"shape":"Boolean"}
1602
1868
  }
1603
1869
  },
1870
+ "OutboundCrossClusterSearchConnection":{
1871
+ "type":"structure",
1872
+ "members":{
1873
+ "SourceDomainInfo":{"shape":"DomainInformation"},
1874
+ "DestinationDomainInfo":{"shape":"DomainInformation"},
1875
+ "CrossClusterSearchConnectionId":{"shape":"CrossClusterSearchConnectionId"},
1876
+ "ConnectionAlias":{"shape":"ConnectionAlias"},
1877
+ "ConnectionStatus":{"shape":"OutboundCrossClusterSearchConnectionStatus"}
1878
+ }
1879
+ },
1880
+ "OutboundCrossClusterSearchConnectionStatus":{
1881
+ "type":"structure",
1882
+ "members":{
1883
+ "StatusCode":{"shape":"OutboundCrossClusterSearchConnectionStatusCode"},
1884
+ "Message":{"shape":"CrossClusterSearchConnectionStatusMessage"}
1885
+ }
1886
+ },
1887
+ "OutboundCrossClusterSearchConnectionStatusCode":{
1888
+ "type":"string",
1889
+ "enum":[
1890
+ "PENDING_ACCEPTANCE",
1891
+ "VALIDATING",
1892
+ "VALIDATION_FAILED",
1893
+ "PROVISIONING",
1894
+ "ACTIVE",
1895
+ "REJECTED",
1896
+ "DELETING",
1897
+ "DELETED"
1898
+ ]
1899
+ },
1900
+ "OutboundCrossClusterSearchConnections":{
1901
+ "type":"list",
1902
+ "member":{"shape":"OutboundCrossClusterSearchConnection"}
1903
+ },
1904
+ "OwnerId":{
1905
+ "type":"string",
1906
+ "max":12,
1907
+ "min":12
1908
+ },
1604
1909
  "PackageDescription":{
1605
1910
  "type":"string",
1606
1911
  "max":1024
@@ -1689,6 +1994,24 @@
1689
1994
  "member":{"shape":"RecurringCharge"}
1690
1995
  },
1691
1996
  "ReferencePath":{"type":"string"},
1997
+ "Region":{"type":"string"},
1998
+ "RejectInboundCrossClusterSearchConnectionRequest":{
1999
+ "type":"structure",
2000
+ "required":["CrossClusterSearchConnectionId"],
2001
+ "members":{
2002
+ "CrossClusterSearchConnectionId":{
2003
+ "shape":"CrossClusterSearchConnectionId",
2004
+ "location":"uri",
2005
+ "locationName":"ConnectionId"
2006
+ }
2007
+ }
2008
+ },
2009
+ "RejectInboundCrossClusterSearchConnectionResponse":{
2010
+ "type":"structure",
2011
+ "members":{
2012
+ "CrossClusterSearchConnection":{"shape":"InboundCrossClusterSearchConnection"}
2013
+ }
2014
+ },
1692
2015
  "RemoveTagsRequest":{
1693
2016
  "type":"structure",
1694
2017
  "required":[
@@ -2026,6 +2349,11 @@
2026
2349
  "error":{"httpStatusCode":400},
2027
2350
  "exception":true
2028
2351
  },
2352
+ "ValueStringList":{
2353
+ "type":"list",
2354
+ "member":{"shape":"NonEmptyString"},
2355
+ "min":1
2356
+ },
2029
2357
  "VolumeType":{
2030
2358
  "type":"string",
2031
2359
  "enum":[
@@ -1,5 +1,15 @@
1
1
  {
2
2
  "pagination": {
3
+ "DescribeInboundCrossClusterSearchConnections": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "DescribeOutboundCrossClusterSearchConnections": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
3
13
  "DescribePackages": {
4
14
  "input_token": "NextToken",
5
15
  "output_token": "NextToken",
@@ -6230,6 +6230,7 @@
6230
6230
  "type":"structure",
6231
6231
  "members":{
6232
6232
  "FunctionName":{"shape":"NameString"},
6233
+ "DatabaseName":{"shape":"NameString"},
6233
6234
  "ClassName":{"shape":"NameString"},
6234
6235
  "OwnerName":{"shape":"NameString"},
6235
6236
  "OwnerType":{"shape":"PrincipalType"},
@@ -2151,6 +2151,13 @@
2151
2151
  }
2152
2152
  },
2153
2153
  "shapes":{
2154
+ "AccessAdvisorUsageGranularityType":{
2155
+ "type":"string",
2156
+ "enum":[
2157
+ "SERVICE_LEVEL",
2158
+ "ACTION_LEVEL"
2159
+ ]
2160
+ },
2154
2161
  "AccessDetail":{
2155
2162
  "type":"structure",
2156
2163
  "required":[
@@ -3062,7 +3069,8 @@
3062
3069
  "type":"structure",
3063
3070
  "required":["Arn"],
3064
3071
  "members":{
3065
- "Arn":{"shape":"arnType"}
3072
+ "Arn":{"shape":"arnType"},
3073
+ "Granularity":{"shape":"AccessAdvisorUsageGranularityType"}
3066
3074
  }
3067
3075
  },
3068
3076
  "GenerateServiceLastAccessedDetailsResponse":{
@@ -3399,6 +3407,7 @@
3399
3407
  ],
3400
3408
  "members":{
3401
3409
  "JobStatus":{"shape":"jobStatusType"},
3410
+ "JobType":{"shape":"AccessAdvisorUsageGranularityType"},
3402
3411
  "JobCreationDate":{"shape":"dateType"},
3403
3412
  "ServicesLastAccessed":{"shape":"ServicesLastAccessed"},
3404
3413
  "JobCompletionDate":{"shape":"dateType"},
@@ -4746,7 +4755,9 @@
4746
4755
  "LastAuthenticated":{"shape":"dateType"},
4747
4756
  "ServiceNamespace":{"shape":"serviceNamespaceType"},
4748
4757
  "LastAuthenticatedEntity":{"shape":"arnType"},
4749
- "TotalAuthenticatedEntities":{"shape":"integerType"}
4758
+ "LastAuthenticatedRegion":{"shape":"stringType"},
4759
+ "TotalAuthenticatedEntities":{"shape":"integerType"},
4760
+ "TrackedActionsLastAccessed":{"shape":"TrackedActionsLastAccessed"}
4750
4761
  }
4751
4762
  },
4752
4763
  "ServiceNotSupportedException":{
@@ -4942,6 +4953,19 @@
4942
4953
  "Tags":{"shape":"tagListType"}
4943
4954
  }
4944
4955
  },
4956
+ "TrackedActionLastAccessed":{
4957
+ "type":"structure",
4958
+ "members":{
4959
+ "ActionName":{"shape":"stringType"},
4960
+ "LastAccessedEntity":{"shape":"arnType"},
4961
+ "LastAccessedTime":{"shape":"dateType"},
4962
+ "LastAccessedRegion":{"shape":"stringType"}
4963
+ }
4964
+ },
4965
+ "TrackedActionsLastAccessed":{
4966
+ "type":"list",
4967
+ "member":{"shape":"TrackedActionLastAccessed"}
4968
+ },
4945
4969
  "UnmodifiableEntityException":{
4946
4970
  "type":"structure",
4947
4971
  "members":{
@@ -1167,6 +1167,8 @@
1167
1167
  "AC3",
1168
1168
  "EAC3",
1169
1169
  "EAC3_ATMOS",
1170
+ "VORBIS",
1171
+ "OPUS",
1170
1172
  "PASSTHROUGH"
1171
1173
  ]
1172
1174
  },
@@ -1205,6 +1207,14 @@
1205
1207
  "shape": "Mp3Settings",
1206
1208
  "locationName": "mp3Settings"
1207
1209
  },
1210
+ "OpusSettings": {
1211
+ "shape": "OpusSettings",
1212
+ "locationName": "opusSettings"
1213
+ },
1214
+ "VorbisSettings": {
1215
+ "shape": "VorbisSettings",
1216
+ "locationName": "vorbisSettings"
1217
+ },
1208
1218
  "WavSettings": {
1209
1219
  "shape": "WavSettings",
1210
1220
  "locationName": "wavSettings"
@@ -1341,7 +1351,7 @@
1341
1351
  "locationName": "defaultSelection"
1342
1352
  },
1343
1353
  "ExternalAudioFileInput": {
1344
- "shape": "__stringPatternS3MM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE",
1354
+ "shape": "__stringPatternS3WWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE",
1345
1355
  "locationName": "externalAudioFileInput"
1346
1356
  },
1347
1357
  "LanguageCode": {
@@ -2241,6 +2251,7 @@
2241
2251
  "MP4",
2242
2252
  "MPD",
2243
2253
  "MXF",
2254
+ "WEBM",
2244
2255
  "RAW"
2245
2256
  ]
2246
2257
  },
@@ -6723,6 +6734,14 @@
6723
6734
  }
6724
6735
  }
6725
6736
  },
6737
+ "NoiseFilterPostTemporalSharpening": {
6738
+ "type": "string",
6739
+ "enum": [
6740
+ "DISABLED",
6741
+ "ENABLED",
6742
+ "AUTO"
6743
+ ]
6744
+ },
6726
6745
  "NoiseReducer": {
6727
6746
  "type": "structure",
6728
6747
  "members": {
@@ -6790,6 +6809,10 @@
6790
6809
  "shape": "__integerMin0Max4",
6791
6810
  "locationName": "aggressiveMode"
6792
6811
  },
6812
+ "PostTemporalSharpening": {
6813
+ "shape": "NoiseFilterPostTemporalSharpening",
6814
+ "locationName": "postTemporalSharpening"
6815
+ },
6793
6816
  "Speed": {
6794
6817
  "shape": "__integerMinNegative1Max3",
6795
6818
  "locationName": "speed"
@@ -6813,6 +6836,23 @@
6813
6836
  "httpStatusCode": 404
6814
6837
  }
6815
6838
  },
6839
+ "OpusSettings": {
6840
+ "type": "structure",
6841
+ "members": {
6842
+ "Bitrate": {
6843
+ "shape": "__integerMin32000Max192000",
6844
+ "locationName": "bitrate"
6845
+ },
6846
+ "Channels": {
6847
+ "shape": "__integerMin1Max2",
6848
+ "locationName": "channels"
6849
+ },
6850
+ "SampleRate": {
6851
+ "shape": "__integerMin16000Max48000",
6852
+ "locationName": "sampleRate"
6853
+ }
6854
+ }
6855
+ },
6816
6856
  "Order": {
6817
6857
  "type": "string",
6818
6858
  "enum": [
@@ -7868,7 +7908,9 @@
7868
7908
  "H_264",
7869
7909
  "H_265",
7870
7910
  "MPEG2",
7871
- "PRORES"
7911
+ "PRORES",
7912
+ "VP8",
7913
+ "VP9"
7872
7914
  ]
7873
7915
  },
7874
7916
  "VideoCodecSettings": {
@@ -7901,6 +7943,14 @@
7901
7943
  "ProresSettings": {
7902
7944
  "shape": "ProresSettings",
7903
7945
  "locationName": "proresSettings"
7946
+ },
7947
+ "Vp8Settings": {
7948
+ "shape": "Vp8Settings",
7949
+ "locationName": "vp8Settings"
7950
+ },
7951
+ "Vp9Settings": {
7952
+ "shape": "Vp9Settings",
7953
+ "locationName": "vp9Settings"
7904
7954
  }
7905
7955
  }
7906
7956
  },
@@ -8051,6 +8101,205 @@
8051
8101
  "PIC_TIMING_SEI"
8052
8102
  ]
8053
8103
  },
8104
+ "VorbisSettings": {
8105
+ "type": "structure",
8106
+ "members": {
8107
+ "Channels": {
8108
+ "shape": "__integerMin1Max2",
8109
+ "locationName": "channels"
8110
+ },
8111
+ "SampleRate": {
8112
+ "shape": "__integerMin22050Max48000",
8113
+ "locationName": "sampleRate"
8114
+ },
8115
+ "VbrQuality": {
8116
+ "shape": "__integerMinNegative1Max10",
8117
+ "locationName": "vbrQuality"
8118
+ }
8119
+ }
8120
+ },
8121
+ "Vp8FramerateControl": {
8122
+ "type": "string",
8123
+ "enum": [
8124
+ "INITIALIZE_FROM_SOURCE",
8125
+ "SPECIFIED"
8126
+ ]
8127
+ },
8128
+ "Vp8FramerateConversionAlgorithm": {
8129
+ "type": "string",
8130
+ "enum": [
8131
+ "DUPLICATE_DROP",
8132
+ "INTERPOLATE"
8133
+ ]
8134
+ },
8135
+ "Vp8ParControl": {
8136
+ "type": "string",
8137
+ "enum": [
8138
+ "INITIALIZE_FROM_SOURCE",
8139
+ "SPECIFIED"
8140
+ ]
8141
+ },
8142
+ "Vp8QualityTuningLevel": {
8143
+ "type": "string",
8144
+ "enum": [
8145
+ "MULTI_PASS",
8146
+ "MULTI_PASS_HQ"
8147
+ ]
8148
+ },
8149
+ "Vp8RateControlMode": {
8150
+ "type": "string",
8151
+ "enum": [
8152
+ "VBR"
8153
+ ]
8154
+ },
8155
+ "Vp8Settings": {
8156
+ "type": "structure",
8157
+ "members": {
8158
+ "Bitrate": {
8159
+ "shape": "__integerMin1000Max1152000000",
8160
+ "locationName": "bitrate"
8161
+ },
8162
+ "FramerateControl": {
8163
+ "shape": "Vp8FramerateControl",
8164
+ "locationName": "framerateControl"
8165
+ },
8166
+ "FramerateConversionAlgorithm": {
8167
+ "shape": "Vp8FramerateConversionAlgorithm",
8168
+ "locationName": "framerateConversionAlgorithm"
8169
+ },
8170
+ "FramerateDenominator": {
8171
+ "shape": "__integerMin1Max2147483647",
8172
+ "locationName": "framerateDenominator"
8173
+ },
8174
+ "FramerateNumerator": {
8175
+ "shape": "__integerMin1Max2147483647",
8176
+ "locationName": "framerateNumerator"
8177
+ },
8178
+ "GopSize": {
8179
+ "shape": "__doubleMin0",
8180
+ "locationName": "gopSize"
8181
+ },
8182
+ "HrdBufferSize": {
8183
+ "shape": "__integerMin0Max47185920",
8184
+ "locationName": "hrdBufferSize"
8185
+ },
8186
+ "MaxBitrate": {
8187
+ "shape": "__integerMin1000Max1152000000",
8188
+ "locationName": "maxBitrate"
8189
+ },
8190
+ "ParControl": {
8191
+ "shape": "Vp8ParControl",
8192
+ "locationName": "parControl"
8193
+ },
8194
+ "ParDenominator": {
8195
+ "shape": "__integerMin1Max2147483647",
8196
+ "locationName": "parDenominator"
8197
+ },
8198
+ "ParNumerator": {
8199
+ "shape": "__integerMin1Max2147483647",
8200
+ "locationName": "parNumerator"
8201
+ },
8202
+ "QualityTuningLevel": {
8203
+ "shape": "Vp8QualityTuningLevel",
8204
+ "locationName": "qualityTuningLevel"
8205
+ },
8206
+ "RateControlMode": {
8207
+ "shape": "Vp8RateControlMode",
8208
+ "locationName": "rateControlMode"
8209
+ }
8210
+ }
8211
+ },
8212
+ "Vp9FramerateControl": {
8213
+ "type": "string",
8214
+ "enum": [
8215
+ "INITIALIZE_FROM_SOURCE",
8216
+ "SPECIFIED"
8217
+ ]
8218
+ },
8219
+ "Vp9FramerateConversionAlgorithm": {
8220
+ "type": "string",
8221
+ "enum": [
8222
+ "DUPLICATE_DROP",
8223
+ "INTERPOLATE"
8224
+ ]
8225
+ },
8226
+ "Vp9ParControl": {
8227
+ "type": "string",
8228
+ "enum": [
8229
+ "INITIALIZE_FROM_SOURCE",
8230
+ "SPECIFIED"
8231
+ ]
8232
+ },
8233
+ "Vp9QualityTuningLevel": {
8234
+ "type": "string",
8235
+ "enum": [
8236
+ "MULTI_PASS",
8237
+ "MULTI_PASS_HQ"
8238
+ ]
8239
+ },
8240
+ "Vp9RateControlMode": {
8241
+ "type": "string",
8242
+ "enum": [
8243
+ "VBR"
8244
+ ]
8245
+ },
8246
+ "Vp9Settings": {
8247
+ "type": "structure",
8248
+ "members": {
8249
+ "Bitrate": {
8250
+ "shape": "__integerMin1000Max480000000",
8251
+ "locationName": "bitrate"
8252
+ },
8253
+ "FramerateControl": {
8254
+ "shape": "Vp9FramerateControl",
8255
+ "locationName": "framerateControl"
8256
+ },
8257
+ "FramerateConversionAlgorithm": {
8258
+ "shape": "Vp9FramerateConversionAlgorithm",
8259
+ "locationName": "framerateConversionAlgorithm"
8260
+ },
8261
+ "FramerateDenominator": {
8262
+ "shape": "__integerMin1Max2147483647",
8263
+ "locationName": "framerateDenominator"
8264
+ },
8265
+ "FramerateNumerator": {
8266
+ "shape": "__integerMin1Max2147483647",
8267
+ "locationName": "framerateNumerator"
8268
+ },
8269
+ "GopSize": {
8270
+ "shape": "__doubleMin0",
8271
+ "locationName": "gopSize"
8272
+ },
8273
+ "HrdBufferSize": {
8274
+ "shape": "__integerMin0Max47185920",
8275
+ "locationName": "hrdBufferSize"
8276
+ },
8277
+ "MaxBitrate": {
8278
+ "shape": "__integerMin1000Max480000000",
8279
+ "locationName": "maxBitrate"
8280
+ },
8281
+ "ParControl": {
8282
+ "shape": "Vp9ParControl",
8283
+ "locationName": "parControl"
8284
+ },
8285
+ "ParDenominator": {
8286
+ "shape": "__integerMin1Max2147483647",
8287
+ "locationName": "parDenominator"
8288
+ },
8289
+ "ParNumerator": {
8290
+ "shape": "__integerMin1Max2147483647",
8291
+ "locationName": "parNumerator"
8292
+ },
8293
+ "QualityTuningLevel": {
8294
+ "shape": "Vp9QualityTuningLevel",
8295
+ "locationName": "qualityTuningLevel"
8296
+ },
8297
+ "RateControlMode": {
8298
+ "shape": "Vp9RateControlMode",
8299
+ "locationName": "rateControlMode"
8300
+ }
8301
+ }
8302
+ },
8054
8303
  "WavFormat": {
8055
8304
  "type": "string",
8056
8305
  "enum": [
@@ -8269,6 +8518,11 @@
8269
8518
  "min": 1000,
8270
8519
  "max": 300000000
8271
8520
  },
8521
+ "__integerMin1000Max480000000": {
8522
+ "type": "integer",
8523
+ "min": 1000,
8524
+ "max": 480000000
8525
+ },
8272
8526
  "__integerMin10Max48": {
8273
8527
  "type": "integer",
8274
8528
  "min": 10,
@@ -8279,6 +8533,11 @@
8279
8533
  "min": 16000,
8280
8534
  "max": 320000
8281
8535
  },
8536
+ "__integerMin16000Max48000": {
8537
+ "type": "integer",
8538
+ "min": 16000,
8539
+ "max": 48000
8540
+ },
8282
8541
  "__integerMin16Max24": {
8283
8542
  "type": "integer",
8284
8543
  "min": 16,
@@ -8389,6 +8648,11 @@
8389
8648
  "min": 2,
8390
8649
  "max": 2147483647
8391
8650
  },
8651
+ "__integerMin32000Max192000": {
8652
+ "type": "integer",
8653
+ "min": 32000,
8654
+ "max": 192000
8655
+ },
8392
8656
  "__integerMin32000Max384000": {
8393
8657
  "type": "integer",
8394
8658
  "min": 32000,
@@ -8459,6 +8723,11 @@
8459
8723
  "min": -180,
8460
8724
  "max": 180
8461
8725
  },
8726
+ "__integerMinNegative1Max10": {
8727
+ "type": "integer",
8728
+ "min": -1,
8729
+ "max": 10
8730
+ },
8462
8731
  "__integerMinNegative1Max3": {
8463
8732
  "type": "integer",
8464
8733
  "min": -1,
@@ -8885,14 +9154,14 @@
8885
9154
  "type": "string",
8886
9155
  "pattern": "^s3:\\/\\/.*\\/(ASSETMAP.xml)?$"
8887
9156
  },
8888
- "__stringPatternS3MM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE": {
8889
- "type": "string",
8890
- "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
8891
- },
8892
9157
  "__stringPatternS3MM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL": {
8893
9158
  "type": "string",
8894
9159
  "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
8895
9160
  },
9161
+ "__stringPatternS3WWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE": {
9162
+ "type": "string",
9163
+ "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([wW][eE][bB][mM]|[mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[aA][aA][cC]|[aA][iI][fF][fF]|[mM][pP]2|[aA][cC]3|[eE][cC]3|[dD][tT][sS][eE])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$"
9164
+ },
8896
9165
  "__stringPatternSNManifestConfirmConditionNotificationNS": {
8897
9166
  "type": "string",
8898
9167
  "pattern": "^\\s*<(.|\\n)*ManifestConfirmConditionNotification(.|\\n)*>\\s*$"
@@ -2569,6 +2569,7 @@
2569
2569
  "ap-east-1" : { },
2570
2570
  "ap-northeast-1" : { },
2571
2571
  "ap-northeast-2" : { },
2572
+ "ap-south-1" : { },
2572
2573
  "ap-southeast-1" : { },
2573
2574
  "ap-southeast-2" : { },
2574
2575
  "eu-central-1" : { },
@@ -7751,6 +7752,12 @@
7751
7752
  },
7752
7753
  "storagegateway" : {
7753
7754
  "endpoints" : {
7755
+ "fips" : {
7756
+ "credentialScope" : {
7757
+ "region" : "us-gov-west-1"
7758
+ },
7759
+ "hostname" : "storagegateway-fips.us-gov-west-1.amazonaws.com"
7760
+ },
7754
7761
  "us-gov-east-1" : { },
7755
7762
  "us-gov-west-1" : { }
7756
7763
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.519'
2
+ VERSION = '2.11.520'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.519
4
+ version: 2.11.520
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-02 00:00:00.000000000 Z
11
+ date: 2020-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath