aws-sdk-core 2.11.186 → 2.11.187

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
  SHA1:
3
- metadata.gz: 5fa292a24380a08186b132dddd7a7f87318f5dcd
4
- data.tar.gz: 01c62e0563fbd6d8c065bce5e1cb753dc6448e6f
3
+ metadata.gz: a3a81211631faa29f7fd80894f0b304a9efc3c7d
4
+ data.tar.gz: 1ac682b2630e0092708a0fc278afd37dbe147690
5
5
  SHA512:
6
- metadata.gz: 1379d55802b6647eb45169378038f45a312ab0ce518603be9032bf7c00db477e74abf0643249250a72fa8c7360004b68ace695a92dc5ebe5b537718319e7ee35
7
- data.tar.gz: ecae28c21362205dc0e43b1073a007750eec078d0ee7ee79807e5a6857e9e21b602981ba6333da8f7def796c295f85e3f771c8d0505b6bbf24adab3da9322bef
6
+ metadata.gz: 33a7a5516adc154cdeb0a020b3a8ce10711aaad901b028506148391c0a2a8d455ec36ddaf6811c889f3a0c6a7cc507200f7f41c9fea752823502b8d1ae727cac
7
+ data.tar.gz: 969a5d1f71fa7478669e8b81306e3a2966745b9106b4d29698f45eb6f927c7784298a3c4369594118cea844759393210360af74da7a66c2dba82f1567536fe50
@@ -89,6 +89,19 @@
89
89
  {"shape":"InvalidInputException"}
90
90
  ]
91
91
  },
92
+ "DeleteSourceCredentials":{
93
+ "name":"DeleteSourceCredentials",
94
+ "http":{
95
+ "method":"POST",
96
+ "requestUri":"/"
97
+ },
98
+ "input":{"shape":"DeleteSourceCredentialsInput"},
99
+ "output":{"shape":"DeleteSourceCredentialsOutput"},
100
+ "errors":[
101
+ {"shape":"InvalidInputException"},
102
+ {"shape":"ResourceNotFoundException"}
103
+ ]
104
+ },
92
105
  "DeleteWebhook":{
93
106
  "name":"DeleteWebhook",
94
107
  "http":{
@@ -103,6 +116,19 @@
103
116
  {"shape":"OAuthProviderException"}
104
117
  ]
105
118
  },
119
+ "ImportSourceCredentials":{
120
+ "name":"ImportSourceCredentials",
121
+ "http":{
122
+ "method":"POST",
123
+ "requestUri":"/"
124
+ },
125
+ "input":{"shape":"ImportSourceCredentialsInput"},
126
+ "output":{"shape":"ImportSourceCredentialsOutput"},
127
+ "errors":[
128
+ {"shape":"InvalidInputException"},
129
+ {"shape":"AccountLimitExceededException"}
130
+ ]
131
+ },
106
132
  "InvalidateProjectCache":{
107
133
  "name":"InvalidateProjectCache",
108
134
  "http":{
@@ -162,6 +188,15 @@
162
188
  {"shape":"InvalidInputException"}
163
189
  ]
164
190
  },
191
+ "ListSourceCredentials":{
192
+ "name":"ListSourceCredentials",
193
+ "http":{
194
+ "method":"POST",
195
+ "requestUri":"/"
196
+ },
197
+ "input":{"shape":"ListSourceCredentialsInput"},
198
+ "output":{"shape":"ListSourceCredentialsOutput"}
199
+ },
165
200
  "StartBuild":{
166
201
  "name":"StartBuild",
167
202
  "http":{
@@ -246,6 +281,14 @@
246
281
  "NO_ARTIFACTS"
247
282
  ]
248
283
  },
284
+ "AuthType":{
285
+ "type":"string",
286
+ "enum":[
287
+ "OAUTH",
288
+ "BASIC_AUTH",
289
+ "PERSONAL_ACCESS_TOKEN"
290
+ ]
291
+ },
249
292
  "BatchDeleteBuildsInput":{
250
293
  "type":"structure",
251
294
  "required":["ids"],
@@ -473,6 +516,19 @@
473
516
  "members":{
474
517
  }
475
518
  },
519
+ "DeleteSourceCredentialsInput":{
520
+ "type":"structure",
521
+ "required":["arn"],
522
+ "members":{
523
+ "arn":{"shape":"NonEmptyString"}
524
+ }
525
+ },
526
+ "DeleteSourceCredentialsOutput":{
527
+ "type":"structure",
528
+ "members":{
529
+ "arn":{"shape":"NonEmptyString"}
530
+ }
531
+ },
476
532
  "DeleteWebhookInput":{
477
533
  "type":"structure",
478
534
  "required":["projectName"],
@@ -557,6 +613,26 @@
557
613
  "type":"list",
558
614
  "member":{"shape":"String"}
559
615
  },
616
+ "ImportSourceCredentialsInput":{
617
+ "type":"structure",
618
+ "required":[
619
+ "token",
620
+ "serverType",
621
+ "authType"
622
+ ],
623
+ "members":{
624
+ "username":{"shape":"NonEmptyString"},
625
+ "token":{"shape":"SensitiveNonEmptyString"},
626
+ "serverType":{"shape":"ServerType"},
627
+ "authType":{"shape":"AuthType"}
628
+ }
629
+ },
630
+ "ImportSourceCredentialsOutput":{
631
+ "type":"structure",
632
+ "members":{
633
+ "arn":{"shape":"NonEmptyString"}
634
+ }
635
+ },
560
636
  "InvalidInputException":{
561
637
  "type":"structure",
562
638
  "members":{
@@ -652,6 +728,17 @@
652
728
  "projects":{"shape":"ProjectNames"}
653
729
  }
654
730
  },
731
+ "ListSourceCredentialsInput":{
732
+ "type":"structure",
733
+ "members":{
734
+ }
735
+ },
736
+ "ListSourceCredentialsOutput":{
737
+ "type":"structure",
738
+ "members":{
739
+ "sourceCredentialsInfos":{"shape":"SourceCredentialsInfos"}
740
+ }
741
+ },
655
742
  "LogsConfig":{
656
743
  "type":"structure",
657
744
  "members":{
@@ -882,6 +969,19 @@
882
969
  "member":{"shape":"NonEmptyString"},
883
970
  "max":5
884
971
  },
972
+ "SensitiveNonEmptyString":{
973
+ "type":"string",
974
+ "min":1,
975
+ "sensitive":true
976
+ },
977
+ "ServerType":{
978
+ "type":"string",
979
+ "enum":[
980
+ "GITHUB",
981
+ "BITBUCKET",
982
+ "GITHUB_ENTERPRISE"
983
+ ]
984
+ },
885
985
  "SortOrderType":{
886
986
  "type":"string",
887
987
  "enum":[
@@ -901,6 +1001,18 @@
901
1001
  "type":"string",
902
1002
  "enum":["OAUTH"]
903
1003
  },
1004
+ "SourceCredentialsInfo":{
1005
+ "type":"structure",
1006
+ "members":{
1007
+ "arn":{"shape":"NonEmptyString"},
1008
+ "serverType":{"shape":"ServerType"},
1009
+ "authType":{"shape":"AuthType"}
1010
+ }
1011
+ },
1012
+ "SourceCredentialsInfos":{
1013
+ "type":"list",
1014
+ "member":{"shape":"SourceCredentialsInfo"}
1015
+ },
904
1016
  "SourceType":{
905
1017
  "type":"string",
906
1018
  "enum":[
@@ -26,9 +26,7 @@
26
26
  "errors":[
27
27
  {"shape":"ListenerNotFoundException"},
28
28
  {"shape":"TooManyCertificatesException"},
29
- {"shape":"CertificateNotFoundException"},
30
- {"shape":"UnsupportedCertificateException"},
31
- {"shape":"UnsupportedProtocolException"}
29
+ {"shape":"CertificateNotFoundException"}
32
30
  ]
33
31
  },
34
32
  "AddTags":{
@@ -74,7 +72,6 @@
74
72
  {"shape":"UnsupportedProtocolException"},
75
73
  {"shape":"TooManyRegistrationsForTargetIdException"},
76
74
  {"shape":"TooManyTargetsException"},
77
- {"shape":"UnsupportedCertificateException"},
78
75
  {"shape":"TooManyActionsException"},
79
76
  {"shape":"InvalidLoadBalancerActionException"}
80
77
  ]
@@ -303,21 +300,6 @@
303
300
  {"shape":"LoadBalancerNotFoundException"}
304
301
  ]
305
302
  },
306
- "DescribeProvisionedCapacity":{
307
- "name":"DescribeProvisionedCapacity",
308
- "http":{
309
- "method":"POST",
310
- "requestUri":"/"
311
- },
312
- "input":{"shape":"DescribeProvisionedCapacityInput"},
313
- "output":{
314
- "shape":"DescribeProvisionedCapacityOutput",
315
- "resultWrapper":"DescribeProvisionedCapacityResult"
316
- },
317
- "errors":[
318
- {"shape":"LoadBalancerNotFoundException"}
319
- ]
320
- },
321
303
  "DescribeRules":{
322
304
  "name":"DescribeRules",
323
305
  "http":{
@@ -441,7 +423,6 @@
441
423
  {"shape":"UnsupportedProtocolException"},
442
424
  {"shape":"TooManyRegistrationsForTargetIdException"},
443
425
  {"shape":"TooManyTargetsException"},
444
- {"shape":"UnsupportedCertificateException"},
445
426
  {"shape":"TooManyActionsException"},
446
427
  {"shape":"InvalidLoadBalancerActionException"}
447
428
  ]
@@ -462,25 +443,6 @@
462
443
  {"shape":"InvalidConfigurationRequestException"}
463
444
  ]
464
445
  },
465
- "ModifyProvisionedCapacity":{
466
- "name":"ModifyProvisionedCapacity",
467
- "http":{
468
- "method":"POST",
469
- "requestUri":"/"
470
- },
471
- "input":{"shape":"ModifyProvisionedCapacityInput"},
472
- "output":{
473
- "shape":"ModifyProvisionedCapacityOutput",
474
- "resultWrapper":"ModifyProvisionedCapacityResult"
475
- },
476
- "errors":[
477
- {"shape":"LoadBalancerNotFoundException"},
478
- {"shape":"InvalidConfigurationRequestException"},
479
- {"shape":"MinimumLBCapacityUnitsDecreaseThrottlingException"},
480
- {"shape":"MinimumLBCapacityUnitsLimitExceededException"},
481
- {"shape":"InsufficientCapacityException"}
482
- ]
483
- },
484
446
  "ModifyRule":{
485
447
  "name":"ModifyRule",
486
448
  "http":{
@@ -686,8 +648,8 @@
686
648
  "enum":[
687
649
  "forward",
688
650
  "authenticate-oidc",
689
- "redirect",
690
651
  "authenticate-cognito",
652
+ "redirect",
691
653
  "fixed-response"
692
654
  ]
693
655
  },
@@ -804,7 +766,8 @@
804
766
  "AuthorizationEndpoint",
805
767
  "TokenEndpoint",
806
768
  "UserInfoEndpoint",
807
- "ClientId"
769
+ "ClientId",
770
+ "ClientSecret"
808
771
  ],
809
772
  "members":{
810
773
  "Issuer":{"shape":"AuthenticateOidcActionIssuer"},
@@ -817,8 +780,7 @@
817
780
  "Scope":{"shape":"AuthenticateOidcActionScope"},
818
781
  "SessionTimeout":{"shape":"AuthenticateOidcActionSessionTimeout"},
819
782
  "AuthenticationRequestExtraParams":{"shape":"AuthenticateOidcActionAuthenticationRequestExtraParams"},
820
- "OnUnauthenticatedRequest":{"shape":"AuthenticateOidcActionConditionalBehaviorEnum"},
821
- "UseExistingClientSecret":{"shape":"AuthenticateOidcActionUseExistingClientSecret"}
783
+ "OnUnauthenticatedRequest":{"shape":"AuthenticateOidcActionConditionalBehaviorEnum"}
822
784
  }
823
785
  },
824
786
  "AuthenticateOidcActionIssuer":{"type":"string"},
@@ -826,15 +788,13 @@
826
788
  "AuthenticateOidcActionSessionCookieName":{"type":"string"},
827
789
  "AuthenticateOidcActionSessionTimeout":{"type":"long"},
828
790
  "AuthenticateOidcActionTokenEndpoint":{"type":"string"},
829
- "AuthenticateOidcActionUseExistingClientSecret":{"type":"boolean"},
830
791
  "AuthenticateOidcActionUserInfoEndpoint":{"type":"string"},
831
792
  "AvailabilityZone":{
832
793
  "type":"structure",
833
794
  "members":{
834
795
  "ZoneName":{"shape":"ZoneName"},
835
796
  "SubnetId":{"shape":"SubnetId"},
836
- "LoadBalancerAddresses":{"shape":"LoadBalancerAddresses"},
837
- "StaticIp":{"shape":"StaticIp"}
797
+ "LoadBalancerAddresses":{"shape":"LoadBalancerAddresses"}
838
798
  }
839
799
  },
840
800
  "AvailabilityZoneNotSupportedException":{
@@ -985,7 +945,6 @@
985
945
  },
986
946
  "CreatedTime":{"type":"timestamp"},
987
947
  "DNSName":{"type":"string"},
988
- "DecreasesRemaining":{"type":"integer"},
989
948
  "Default":{"type":"boolean"},
990
949
  "DeleteListenerInput":{
991
950
  "type":"structure",
@@ -1126,19 +1085,6 @@
1126
1085
  "NextMarker":{"shape":"Marker"}
1127
1086
  }
1128
1087
  },
1129
- "DescribeProvisionedCapacityInput":{
1130
- "type":"structure",
1131
- "required":["LoadBalancerArn"],
1132
- "members":{
1133
- "LoadBalancerArn":{"shape":"LoadBalancerArn"}
1134
- }
1135
- },
1136
- "DescribeProvisionedCapacityOutput":{
1137
- "type":"structure",
1138
- "members":{
1139
- "ProvisionedCapacity":{"shape":"ProvisionedCapacity"}
1140
- }
1141
- },
1142
1088
  "DescribeRulesInput":{
1143
1089
  "type":"structure",
1144
1090
  "members":{
@@ -1322,45 +1268,7 @@
1322
1268
  },
1323
1269
  "exception":true
1324
1270
  },
1325
- "HostHeaderConditionConfig":{
1326
- "type":"structure",
1327
- "members":{
1328
- "Values":{"shape":"ListOfString"}
1329
- }
1330
- },
1331
1271
  "HttpCode":{"type":"string"},
1332
- "HttpHeaderConditionConfig":{
1333
- "type":"structure",
1334
- "members":{
1335
- "HttpHeaderName":{"shape":"HttpHeaderConditionName"},
1336
- "Values":{"shape":"ListOfString"}
1337
- }
1338
- },
1339
- "HttpHeaderConditionName":{"type":"string"},
1340
- "HttpRequestMethodConditionConfig":{
1341
- "type":"structure",
1342
- "members":{
1343
- "Values":{"shape":"HttpRequestMethodList"}
1344
- }
1345
- },
1346
- "HttpRequestMethodEnum":{
1347
- "type":"string",
1348
- "enum":[
1349
- "GET",
1350
- "HEAD",
1351
- "POST",
1352
- "PUT",
1353
- "DELETE",
1354
- "CONNECT",
1355
- "OPTIONS",
1356
- "TRACE",
1357
- "PATCH"
1358
- ]
1359
- },
1360
- "HttpRequestMethodList":{
1361
- "type":"list",
1362
- "member":{"shape":"HttpRequestMethodEnum"}
1363
- },
1364
1272
  "IncompatibleProtocolsException":{
1365
1273
  "type":"structure",
1366
1274
  "members":{
@@ -1372,16 +1280,6 @@
1372
1280
  },
1373
1281
  "exception":true
1374
1282
  },
1375
- "InsufficientCapacityException":{
1376
- "type":"structure",
1377
- "members":{
1378
- },
1379
- "error":{
1380
- "code":"InsufficientCapacity",
1381
- "httpStatusCode":500
1382
- },
1383
- "exception":true
1384
- },
1385
1283
  "InvalidConfigurationRequestException":{
1386
1284
  "type":"structure",
1387
1285
  "members":{
@@ -1457,8 +1355,6 @@
1457
1355
  ]
1458
1356
  },
1459
1357
  "IsDefault":{"type":"boolean"},
1460
- "LBCapacityUnits":{"type":"integer"},
1461
- "LastModifiedTime":{"type":"timestamp"},
1462
1358
  "Limit":{
1463
1359
  "type":"structure",
1464
1360
  "members":{
@@ -1619,28 +1515,6 @@
1619
1515
  }
1620
1516
  },
1621
1517
  "Max":{"type":"string"},
1622
- "MinimumLBCapacityUnitsDecreaseThrottlingException":{
1623
- "type":"structure",
1624
- "members":{
1625
- },
1626
- "error":{
1627
- "code":"MinimumLBCapacityUnitsDecreaseThrottling",
1628
- "httpStatusCode":400,
1629
- "senderFault":true
1630
- },
1631
- "exception":true
1632
- },
1633
- "MinimumLBCapacityUnitsLimitExceededException":{
1634
- "type":"structure",
1635
- "members":{
1636
- },
1637
- "error":{
1638
- "code":"MinimumLBCapacityUnitsLimitExceeded",
1639
- "httpStatusCode":400,
1640
- "senderFault":true
1641
- },
1642
- "exception":true
1643
- },
1644
1518
  "ModifyListenerInput":{
1645
1519
  "type":"structure",
1646
1520
  "required":["ListenerArn"],
@@ -1676,23 +1550,6 @@
1676
1550
  "Attributes":{"shape":"LoadBalancerAttributes"}
1677
1551
  }
1678
1552
  },
1679
- "ModifyProvisionedCapacityInput":{
1680
- "type":"structure",
1681
- "required":[
1682
- "LoadBalancerArn",
1683
- "MinimumLBCapacityUnits"
1684
- ],
1685
- "members":{
1686
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1687
- "MinimumLBCapacityUnits":{"shape":"LBCapacityUnits"}
1688
- }
1689
- },
1690
- "ModifyProvisionedCapacityOutput":{
1691
- "type":"structure",
1692
- "members":{
1693
- "ProvisionedCapacity":{"shape":"ProvisionedCapacity"}
1694
- }
1695
- },
1696
1553
  "ModifyRuleInput":{
1697
1554
  "type":"structure",
1698
1555
  "required":["RuleArn"],
@@ -1769,12 +1626,6 @@
1769
1626
  "max":1024,
1770
1627
  "min":1
1771
1628
  },
1772
- "PathPatternConditionConfig":{
1773
- "type":"structure",
1774
- "members":{
1775
- "Values":{"shape":"ListOfString"}
1776
- }
1777
- },
1778
1629
  "Port":{
1779
1630
  "type":"integer",
1780
1631
  "max":65535,
@@ -1796,35 +1647,9 @@
1796
1647
  "enum":[
1797
1648
  "HTTP",
1798
1649
  "HTTPS",
1799
- "TCP",
1800
- "TLS",
1801
- "UDP"
1650
+ "TCP"
1802
1651
  ]
1803
1652
  },
1804
- "ProvisionedCapacity":{
1805
- "type":"structure",
1806
- "members":{
1807
- "MinimumLBCapacityUnits":{"shape":"LBCapacityUnits"},
1808
- "Status":{"shape":"ProvisionedCapacityStatus"},
1809
- "DecreasesRemaining":{"shape":"DecreasesRemaining"},
1810
- "LastModifiedTime":{"shape":"LastModifiedTime"}
1811
- }
1812
- },
1813
- "ProvisionedCapacityStatus":{
1814
- "type":"string",
1815
- "enum":[
1816
- "disabled",
1817
- "pending",
1818
- "provisioned",
1819
- "pre-warmed"
1820
- ]
1821
- },
1822
- "QueryStringConditionConfig":{
1823
- "type":"structure",
1824
- "members":{
1825
- "Values":{"shape":"ListOfString"}
1826
- }
1827
- },
1828
1653
  "RedirectActionConfig":{
1829
1654
  "type":"structure",
1830
1655
  "required":["StatusCode"],
@@ -1947,12 +1772,7 @@
1947
1772
  "type":"structure",
1948
1773
  "members":{
1949
1774
  "Field":{"shape":"ConditionFieldName"},
1950
- "Values":{"shape":"ListOfString"},
1951
- "HostHeaderConfig":{"shape":"HostHeaderConditionConfig"},
1952
- "PathPatternConfig":{"shape":"PathPatternConditionConfig"},
1953
- "HttpHeaderConfig":{"shape":"HttpHeaderConditionConfig"},
1954
- "QueryStringConfig":{"shape":"QueryStringConditionConfig"},
1955
- "HttpRequestMethodConfig":{"shape":"HttpRequestMethodConditionConfig"}
1775
+ "Values":{"shape":"ListOfString"}
1956
1776
  }
1957
1777
  },
1958
1778
  "RuleConditionList":{
@@ -2091,7 +1911,6 @@
2091
1911
  "member":{"shape":"SslProtocol"}
2092
1912
  },
2093
1913
  "StateReason":{"type":"string"},
2094
- "StaticIp":{"type":"boolean"},
2095
1914
  "String":{"type":"string"},
2096
1915
  "StringValue":{"type":"string"},
2097
1916
  "SubnetId":{"type":"string"},
@@ -2099,8 +1918,7 @@
2099
1918
  "type":"structure",
2100
1919
  "members":{
2101
1920
  "SubnetId":{"shape":"SubnetId"},
2102
- "AllocationId":{"shape":"AllocationId"},
2103
- "StaticIp":{"shape":"StaticIp"}
1921
+ "AllocationId":{"shape":"AllocationId"}
2104
1922
  }
2105
1923
  },
2106
1924
  "SubnetMappings":{
@@ -2405,17 +2223,6 @@
2405
2223
  },
2406
2224
  "exception":true
2407
2225
  },
2408
- "UnsupportedCertificateException":{
2409
- "type":"structure",
2410
- "members":{
2411
- },
2412
- "error":{
2413
- "code":"UnsupportedCertificate",
2414
- "httpStatusCode":400,
2415
- "senderFault":true
2416
- },
2417
- "exception":true
2418
- },
2419
2226
  "UnsupportedProtocolException":{
2420
2227
  "type":"structure",
2421
2228
  "members":{
@@ -2174,6 +2174,10 @@
2174
2174
  "shape": "__listOf__string",
2175
2175
  "locationName": "inputSecurityGroups"
2176
2176
  },
2177
+ "MediaConnectFlows": {
2178
+ "shape": "__listOfMediaConnectFlowRequest",
2179
+ "locationName": "mediaConnectFlows"
2180
+ },
2177
2181
  "Name": {
2178
2182
  "shape": "__string",
2179
2183
  "locationName": "name"
@@ -2183,6 +2187,10 @@
2183
2187
  "locationName": "requestId",
2184
2188
  "idempotencyToken": true
2185
2189
  },
2190
+ "RoleArn": {
2191
+ "shape": "__string",
2192
+ "locationName": "roleArn"
2193
+ },
2186
2194
  "Sources": {
2187
2195
  "shape": "__listOfInputSourceRequest",
2188
2196
  "locationName": "sources"
@@ -2204,6 +2212,10 @@
2204
2212
  "shape": "__listOf__string",
2205
2213
  "locationName": "inputSecurityGroups"
2206
2214
  },
2215
+ "MediaConnectFlows": {
2216
+ "shape": "__listOfMediaConnectFlowRequest",
2217
+ "locationName": "mediaConnectFlows"
2218
+ },
2207
2219
  "Name": {
2208
2220
  "shape": "__string",
2209
2221
  "locationName": "name"
@@ -2213,6 +2225,10 @@
2213
2225
  "locationName": "requestId",
2214
2226
  "idempotencyToken": true
2215
2227
  },
2228
+ "RoleArn": {
2229
+ "shape": "__string",
2230
+ "locationName": "roleArn"
2231
+ },
2216
2232
  "Sources": {
2217
2233
  "shape": "__listOfInputSourceRequest",
2218
2234
  "locationName": "sources"
@@ -2554,10 +2570,18 @@
2554
2570
  "shape": "__string",
2555
2571
  "locationName": "id"
2556
2572
  },
2573
+ "MediaConnectFlows": {
2574
+ "shape": "__listOfMediaConnectFlow",
2575
+ "locationName": "mediaConnectFlows"
2576
+ },
2557
2577
  "Name": {
2558
2578
  "shape": "__string",
2559
2579
  "locationName": "name"
2560
2580
  },
2581
+ "RoleArn": {
2582
+ "shape": "__string",
2583
+ "locationName": "roleArn"
2584
+ },
2561
2585
  "SecurityGroups": {
2562
2586
  "shape": "__listOf__string",
2563
2587
  "locationName": "securityGroups"
@@ -4236,10 +4260,18 @@
4236
4260
  "shape": "__string",
4237
4261
  "locationName": "id"
4238
4262
  },
4263
+ "MediaConnectFlows": {
4264
+ "shape": "__listOfMediaConnectFlow",
4265
+ "locationName": "mediaConnectFlows"
4266
+ },
4239
4267
  "Name": {
4240
4268
  "shape": "__string",
4241
4269
  "locationName": "name"
4242
4270
  },
4271
+ "RoleArn": {
4272
+ "shape": "__string",
4273
+ "locationName": "roleArn"
4274
+ },
4243
4275
  "SecurityGroups": {
4244
4276
  "shape": "__listOf__string",
4245
4277
  "locationName": "securityGroups"
@@ -4389,6 +4421,13 @@
4389
4421
  "PAUSE_OUTPUT"
4390
4422
  ]
4391
4423
  },
4424
+ "InputLossActionForRtmpOut": {
4425
+ "type": "string",
4426
+ "enum": [
4427
+ "EMIT_OUTPUT",
4428
+ "PAUSE_OUTPUT"
4429
+ ]
4430
+ },
4392
4431
  "InputLossActionForUdpOut": {
4393
4432
  "type": "string",
4394
4433
  "enum": [
@@ -4617,7 +4656,8 @@
4617
4656
  "RTMP_PUSH",
4618
4657
  "RTMP_PULL",
4619
4658
  "URL_PULL",
4620
- "MP4_FILE"
4659
+ "MP4_FILE",
4660
+ "MEDIACONNECT"
4621
4661
  ]
4622
4662
  },
4623
4663
  "InputWhitelistRule": {
@@ -5391,6 +5431,24 @@
5391
5431
  "min": 1,
5392
5432
  "max": 1000
5393
5433
  },
5434
+ "MediaConnectFlow": {
5435
+ "type": "structure",
5436
+ "members": {
5437
+ "FlowArn": {
5438
+ "shape": "__string",
5439
+ "locationName": "flowArn"
5440
+ }
5441
+ }
5442
+ },
5443
+ "MediaConnectFlowRequest": {
5444
+ "type": "structure",
5445
+ "members": {
5446
+ "FlowArn": {
5447
+ "shape": "__string",
5448
+ "locationName": "flowArn"
5449
+ }
5450
+ }
5451
+ },
5394
5452
  "Mp2CodingMode": {
5395
5453
  "type": "string",
5396
5454
  "enum": [
@@ -7006,10 +7064,18 @@
7006
7064
  "shape": "__listOf__string",
7007
7065
  "locationName": "inputSecurityGroups"
7008
7066
  },
7067
+ "MediaConnectFlows": {
7068
+ "shape": "__listOfMediaConnectFlowRequest",
7069
+ "locationName": "mediaConnectFlows"
7070
+ },
7009
7071
  "Name": {
7010
7072
  "shape": "__string",
7011
7073
  "locationName": "name"
7012
7074
  },
7075
+ "RoleArn": {
7076
+ "shape": "__string",
7077
+ "locationName": "roleArn"
7078
+ },
7013
7079
  "Sources": {
7014
7080
  "shape": "__listOfInputSourceRequest",
7015
7081
  "locationName": "sources"
@@ -7032,10 +7098,18 @@
7032
7098
  "shape": "__listOf__string",
7033
7099
  "locationName": "inputSecurityGroups"
7034
7100
  },
7101
+ "MediaConnectFlows": {
7102
+ "shape": "__listOfMediaConnectFlowRequest",
7103
+ "locationName": "mediaConnectFlows"
7104
+ },
7035
7105
  "Name": {
7036
7106
  "shape": "__string",
7037
7107
  "locationName": "name"
7038
7108
  },
7109
+ "RoleArn": {
7110
+ "shape": "__string",
7111
+ "locationName": "roleArn"
7112
+ },
7039
7113
  "Sources": {
7040
7114
  "shape": "__listOfInputSourceRequest",
7041
7115
  "locationName": "sources"
@@ -7576,6 +7650,18 @@
7576
7650
  "shape": "InputWhitelistRuleCidr"
7577
7651
  }
7578
7652
  },
7653
+ "__listOfMediaConnectFlow": {
7654
+ "type": "list",
7655
+ "member": {
7656
+ "shape": "MediaConnectFlow"
7657
+ }
7658
+ },
7659
+ "__listOfMediaConnectFlowRequest": {
7660
+ "type": "list",
7661
+ "member": {
7662
+ "shape": "MediaConnectFlowRequest"
7663
+ }
7664
+ },
7579
7665
  "__listOfOffering": {
7580
7666
  "type": "list",
7581
7667
  "member": {
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.186'
2
+ VERSION = '2.11.187'
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.186
4
+ version: 2.11.187
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: 2018-12-05 00:00:00.000000000 Z
11
+ date: 2018-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath