aws-sdk-core 2.11.533 → 2.11.538

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,15 @@
1
1
  {
2
2
  "pagination": {
3
+ "GetFindingsReportAccountSummary": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
+ },
8
+ "ListFindingsReports": {
9
+ "input_token": "nextToken",
10
+ "output_token": "nextToken",
11
+ "limit_key": "maxResults"
12
+ },
3
13
  "ListProfileTimes": {
4
14
  "input_token": "nextToken",
5
15
  "output_token": "nextToken",
@@ -21,6 +21,20 @@
21
21
  },
22
22
  "input":{"shape":"CreateConnectionInput"},
23
23
  "output":{"shape":"CreateConnectionOutput"},
24
+ "errors":[
25
+ {"shape":"LimitExceededException"},
26
+ {"shape":"ResourceNotFoundException"},
27
+ {"shape":"ResourceUnavailableException"}
28
+ ]
29
+ },
30
+ "CreateHost":{
31
+ "name":"CreateHost",
32
+ "http":{
33
+ "method":"POST",
34
+ "requestUri":"/"
35
+ },
36
+ "input":{"shape":"CreateHostInput"},
37
+ "output":{"shape":"CreateHostOutput"},
24
38
  "errors":[
25
39
  {"shape":"LimitExceededException"}
26
40
  ]
@@ -37,6 +51,19 @@
37
51
  {"shape":"ResourceNotFoundException"}
38
52
  ]
39
53
  },
54
+ "DeleteHost":{
55
+ "name":"DeleteHost",
56
+ "http":{
57
+ "method":"POST",
58
+ "requestUri":"/"
59
+ },
60
+ "input":{"shape":"DeleteHostInput"},
61
+ "output":{"shape":"DeleteHostOutput"},
62
+ "errors":[
63
+ {"shape":"ResourceNotFoundException"},
64
+ {"shape":"ResourceUnavailableException"}
65
+ ]
66
+ },
40
67
  "GetConnection":{
41
68
  "name":"GetConnection",
42
69
  "http":{
@@ -45,6 +72,19 @@
45
72
  },
46
73
  "input":{"shape":"GetConnectionInput"},
47
74
  "output":{"shape":"GetConnectionOutput"},
75
+ "errors":[
76
+ {"shape":"ResourceNotFoundException"},
77
+ {"shape":"ResourceUnavailableException"}
78
+ ]
79
+ },
80
+ "GetHost":{
81
+ "name":"GetHost",
82
+ "http":{
83
+ "method":"POST",
84
+ "requestUri":"/"
85
+ },
86
+ "input":{"shape":"GetHostInput"},
87
+ "output":{"shape":"GetHostOutput"},
48
88
  "errors":[
49
89
  {"shape":"ResourceNotFoundException"}
50
90
  ]
@@ -58,6 +98,15 @@
58
98
  "input":{"shape":"ListConnectionsInput"},
59
99
  "output":{"shape":"ListConnectionsOutput"}
60
100
  },
101
+ "ListHosts":{
102
+ "name":"ListHosts",
103
+ "http":{
104
+ "method":"POST",
105
+ "requestUri":"/"
106
+ },
107
+ "input":{"shape":"ListHostsInput"},
108
+ "output":{"shape":"ListHostsOutput"}
109
+ },
61
110
  "ListTagsForResource":{
62
111
  "name":"ListTagsForResource",
63
112
  "http":{
@@ -115,7 +164,8 @@
115
164
  "ConnectionArn":{"shape":"ConnectionArn"},
116
165
  "ProviderType":{"shape":"ProviderType"},
117
166
  "OwnerAccountId":{"shape":"AccountId"},
118
- "ConnectionStatus":{"shape":"ConnectionStatus"}
167
+ "ConnectionStatus":{"shape":"ConnectionStatus"},
168
+ "HostArn":{"shape":"HostArn"}
119
169
  }
120
170
  },
121
171
  "ConnectionArn":{
@@ -143,14 +193,12 @@
143
193
  },
144
194
  "CreateConnectionInput":{
145
195
  "type":"structure",
146
- "required":[
147
- "ProviderType",
148
- "ConnectionName"
149
- ],
196
+ "required":["ConnectionName"],
150
197
  "members":{
151
198
  "ProviderType":{"shape":"ProviderType"},
152
199
  "ConnectionName":{"shape":"ConnectionName"},
153
- "Tags":{"shape":"TagList"}
200
+ "Tags":{"shape":"TagList"},
201
+ "HostArn":{"shape":"HostArn"}
154
202
  }
155
203
  },
156
204
  "CreateConnectionOutput":{
@@ -161,6 +209,26 @@
161
209
  "Tags":{"shape":"TagList"}
162
210
  }
163
211
  },
212
+ "CreateHostInput":{
213
+ "type":"structure",
214
+ "required":[
215
+ "Name",
216
+ "ProviderType",
217
+ "ProviderEndpoint"
218
+ ],
219
+ "members":{
220
+ "Name":{"shape":"HostName"},
221
+ "ProviderType":{"shape":"ProviderType"},
222
+ "ProviderEndpoint":{"shape":"Url"},
223
+ "VpcConfiguration":{"shape":"VpcConfiguration"}
224
+ }
225
+ },
226
+ "CreateHostOutput":{
227
+ "type":"structure",
228
+ "members":{
229
+ "HostArn":{"shape":"HostArn"}
230
+ }
231
+ },
164
232
  "DeleteConnectionInput":{
165
233
  "type":"structure",
166
234
  "required":["ConnectionArn"],
@@ -173,6 +241,18 @@
173
241
  "members":{
174
242
  }
175
243
  },
244
+ "DeleteHostInput":{
245
+ "type":"structure",
246
+ "required":["HostArn"],
247
+ "members":{
248
+ "HostArn":{"shape":"HostArn"}
249
+ }
250
+ },
251
+ "DeleteHostOutput":{
252
+ "type":"structure",
253
+ "members":{
254
+ }
255
+ },
176
256
  "ErrorMessage":{
177
257
  "type":"string",
178
258
  "max":600
@@ -190,6 +270,52 @@
190
270
  "Connection":{"shape":"Connection"}
191
271
  }
192
272
  },
273
+ "GetHostInput":{
274
+ "type":"structure",
275
+ "required":["HostArn"],
276
+ "members":{
277
+ "HostArn":{"shape":"HostArn"}
278
+ }
279
+ },
280
+ "GetHostOutput":{
281
+ "type":"structure",
282
+ "members":{
283
+ "Name":{"shape":"HostName"},
284
+ "Status":{"shape":"HostStatus"},
285
+ "ProviderType":{"shape":"ProviderType"},
286
+ "ProviderEndpoint":{"shape":"Url"},
287
+ "VpcConfiguration":{"shape":"VpcConfiguration"}
288
+ }
289
+ },
290
+ "Host":{
291
+ "type":"structure",
292
+ "members":{
293
+ "Name":{"shape":"HostName"},
294
+ "HostArn":{"shape":"HostArn"},
295
+ "ProviderType":{"shape":"ProviderType"},
296
+ "ProviderEndpoint":{"shape":"Url"},
297
+ "VpcConfiguration":{"shape":"VpcConfiguration"},
298
+ "Status":{"shape":"HostStatus"},
299
+ "StatusMessage":{"shape":"HostStatusMessage"}
300
+ }
301
+ },
302
+ "HostArn":{
303
+ "type":"string",
304
+ "max":256,
305
+ "min":0,
306
+ "pattern":"arn:aws(-[\\w]+)*:codestar-connections:.+:[0-9]{12}:host\\/.+"
307
+ },
308
+ "HostList":{
309
+ "type":"list",
310
+ "member":{"shape":"Host"}
311
+ },
312
+ "HostName":{
313
+ "type":"string",
314
+ "max":32,
315
+ "min":1
316
+ },
317
+ "HostStatus":{"type":"string"},
318
+ "HostStatusMessage":{"type":"string"},
193
319
  "LimitExceededException":{
194
320
  "type":"structure",
195
321
  "members":{
@@ -201,6 +327,7 @@
201
327
  "type":"structure",
202
328
  "members":{
203
329
  "ProviderTypeFilter":{"shape":"ProviderType"},
330
+ "HostArnFilter":{"shape":"HostArn"},
204
331
  "MaxResults":{"shape":"MaxResults"},
205
332
  "NextToken":{"shape":"NextToken"}
206
333
  }
@@ -212,6 +339,20 @@
212
339
  "NextToken":{"shape":"NextToken"}
213
340
  }
214
341
  },
342
+ "ListHostsInput":{
343
+ "type":"structure",
344
+ "members":{
345
+ "MaxResults":{"shape":"MaxResults"},
346
+ "NextToken":{"shape":"NextToken"}
347
+ }
348
+ },
349
+ "ListHostsOutput":{
350
+ "type":"structure",
351
+ "members":{
352
+ "Hosts":{"shape":"HostList"},
353
+ "NextToken":{"shape":"NextToken"}
354
+ }
355
+ },
215
356
  "ListTagsForResourceInput":{
216
357
  "type":"structure",
217
358
  "required":["ResourceArn"],
@@ -227,7 +368,7 @@
227
368
  },
228
369
  "MaxResults":{
229
370
  "type":"integer",
230
- "max":5000,
371
+ "max":100,
231
372
  "min":0
232
373
  },
233
374
  "NextToken":{
@@ -237,7 +378,10 @@
237
378
  },
238
379
  "ProviderType":{
239
380
  "type":"string",
240
- "enum":["Bitbucket"]
381
+ "enum":[
382
+ "Bitbucket",
383
+ "GitHubEnterpriseServer"
384
+ ]
241
385
  },
242
386
  "ResourceNotFoundException":{
243
387
  "type":"structure",
@@ -246,6 +390,33 @@
246
390
  },
247
391
  "exception":true
248
392
  },
393
+ "ResourceUnavailableException":{
394
+ "type":"structure",
395
+ "members":{
396
+ "Message":{"shape":"ErrorMessage"}
397
+ },
398
+ "exception":true
399
+ },
400
+ "SecurityGroupId":{
401
+ "type":"string",
402
+ "pattern":"sg-\\w{8}(\\w{9})?"
403
+ },
404
+ "SecurityGroupIds":{
405
+ "type":"list",
406
+ "member":{"shape":"SecurityGroupId"},
407
+ "max":10,
408
+ "min":1
409
+ },
410
+ "SubnetId":{
411
+ "type":"string",
412
+ "pattern":"subnet-\\w{8}(\\w{9})?"
413
+ },
414
+ "SubnetIds":{
415
+ "type":"list",
416
+ "member":{"shape":"SubnetId"},
417
+ "max":10,
418
+ "min":1
419
+ },
249
420
  "Tag":{
250
421
  "type":"structure",
251
422
  "required":[
@@ -295,6 +466,11 @@
295
466
  "max":256,
296
467
  "min":0
297
468
  },
469
+ "TlsCertificate":{
470
+ "type":"string",
471
+ "max":16384,
472
+ "min":1
473
+ },
298
474
  "UntagResourceInput":{
299
475
  "type":"structure",
300
476
  "required":[
@@ -310,6 +486,29 @@
310
486
  "type":"structure",
311
487
  "members":{
312
488
  }
489
+ },
490
+ "Url":{
491
+ "type":"string",
492
+ "max":512,
493
+ "min":1
494
+ },
495
+ "VpcConfiguration":{
496
+ "type":"structure",
497
+ "required":[
498
+ "VpcId",
499
+ "SubnetIds",
500
+ "SecurityGroupIds"
501
+ ],
502
+ "members":{
503
+ "VpcId":{"shape":"VpcId"},
504
+ "SubnetIds":{"shape":"SubnetIds"},
505
+ "SecurityGroupIds":{"shape":"SecurityGroupIds"},
506
+ "TlsCertificate":{"shape":"TlsCertificate"}
507
+ }
508
+ },
509
+ "VpcId":{
510
+ "type":"string",
511
+ "pattern":"vpc-\\w{8}(\\w{9})?"
313
512
  }
314
513
  }
315
514
  }
@@ -4,6 +4,11 @@
4
4
  "input_token": "NextToken",
5
5
  "output_token": "NextToken",
6
6
  "limit_key": "MaxResults"
7
+ },
8
+ "ListHosts": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
7
12
  }
8
13
  }
9
14
  }
@@ -1260,7 +1260,8 @@
1260
1260
  {"shape":"InternalErrorException"},
1261
1261
  {"shape":"InvalidSmsRoleAccessPolicyException"},
1262
1262
  {"shape":"InvalidSmsRoleTrustRelationshipException"}
1263
- ]
1263
+ ],
1264
+ "authtype":"none"
1264
1265
  },
1265
1266
  "ListDevices":{
1266
1267
  "name":"ListDevices",
@@ -1480,7 +1481,8 @@
1480
1481
  {"shape":"AliasExistsException"},
1481
1482
  {"shape":"InternalErrorException"},
1482
1483
  {"shape":"SoftwareTokenMFANotFoundException"}
1483
- ]
1484
+ ],
1485
+ "authtype":"none"
1484
1486
  },
1485
1487
  "SetRiskConfiguration":{
1486
1488
  "name":"SetRiskConfiguration",
@@ -546,6 +546,15 @@
546
546
  "input":{"shape":"CreateLocalGatewayRouteTableVpcAssociationRequest"},
547
547
  "output":{"shape":"CreateLocalGatewayRouteTableVpcAssociationResult"}
548
548
  },
549
+ "CreateManagedPrefixList":{
550
+ "name":"CreateManagedPrefixList",
551
+ "http":{
552
+ "method":"POST",
553
+ "requestUri":"/"
554
+ },
555
+ "input":{"shape":"CreateManagedPrefixListRequest"},
556
+ "output":{"shape":"CreateManagedPrefixListResult"}
557
+ },
549
558
  "CreateNatGateway":{
550
559
  "name":"CreateNatGateway",
551
560
  "http":{
@@ -971,6 +980,15 @@
971
980
  "input":{"shape":"DeleteLocalGatewayRouteTableVpcAssociationRequest"},
972
981
  "output":{"shape":"DeleteLocalGatewayRouteTableVpcAssociationResult"}
973
982
  },
983
+ "DeleteManagedPrefixList":{
984
+ "name":"DeleteManagedPrefixList",
985
+ "http":{
986
+ "method":"POST",
987
+ "requestUri":"/"
988
+ },
989
+ "input":{"shape":"DeleteManagedPrefixListRequest"},
990
+ "output":{"shape":"DeleteManagedPrefixListResult"}
991
+ },
974
992
  "DeleteNatGateway":{
975
993
  "name":"DeleteNatGateway",
976
994
  "http":{
@@ -1800,6 +1818,15 @@
1800
1818
  "input":{"shape":"DescribeLocalGatewaysRequest"},
1801
1819
  "output":{"shape":"DescribeLocalGatewaysResult"}
1802
1820
  },
1821
+ "DescribeManagedPrefixLists":{
1822
+ "name":"DescribeManagedPrefixLists",
1823
+ "http":{
1824
+ "method":"POST",
1825
+ "requestUri":"/"
1826
+ },
1827
+ "input":{"shape":"DescribeManagedPrefixListsRequest"},
1828
+ "output":{"shape":"DescribeManagedPrefixListsResult"}
1829
+ },
1803
1830
  "DescribeMovingAddresses":{
1804
1831
  "name":"DescribeMovingAddresses",
1805
1832
  "http":{
@@ -2665,6 +2692,24 @@
2665
2692
  "input":{"shape":"GetLaunchTemplateDataRequest"},
2666
2693
  "output":{"shape":"GetLaunchTemplateDataResult"}
2667
2694
  },
2695
+ "GetManagedPrefixListAssociations":{
2696
+ "name":"GetManagedPrefixListAssociations",
2697
+ "http":{
2698
+ "method":"POST",
2699
+ "requestUri":"/"
2700
+ },
2701
+ "input":{"shape":"GetManagedPrefixListAssociationsRequest"},
2702
+ "output":{"shape":"GetManagedPrefixListAssociationsResult"}
2703
+ },
2704
+ "GetManagedPrefixListEntries":{
2705
+ "name":"GetManagedPrefixListEntries",
2706
+ "http":{
2707
+ "method":"POST",
2708
+ "requestUri":"/"
2709
+ },
2710
+ "input":{"shape":"GetManagedPrefixListEntriesRequest"},
2711
+ "output":{"shape":"GetManagedPrefixListEntriesResult"}
2712
+ },
2668
2713
  "GetPasswordData":{
2669
2714
  "name":"GetPasswordData",
2670
2715
  "http":{
@@ -2931,6 +2976,15 @@
2931
2976
  "input":{"shape":"ModifyLaunchTemplateRequest"},
2932
2977
  "output":{"shape":"ModifyLaunchTemplateResult"}
2933
2978
  },
2979
+ "ModifyManagedPrefixList":{
2980
+ "name":"ModifyManagedPrefixList",
2981
+ "http":{
2982
+ "method":"POST",
2983
+ "requestUri":"/"
2984
+ },
2985
+ "input":{"shape":"ModifyManagedPrefixListRequest"},
2986
+ "output":{"shape":"ModifyManagedPrefixListResult"}
2987
+ },
2934
2988
  "ModifyNetworkInterfaceAttribute":{
2935
2989
  "name":"ModifyNetworkInterfaceAttribute",
2936
2990
  "http":{
@@ -3403,6 +3457,15 @@
3403
3457
  "input":{"shape":"RestoreAddressToClassicRequest"},
3404
3458
  "output":{"shape":"RestoreAddressToClassicResult"}
3405
3459
  },
3460
+ "RestoreManagedPrefixListVersion":{
3461
+ "name":"RestoreManagedPrefixListVersion",
3462
+ "http":{
3463
+ "method":"POST",
3464
+ "requestUri":"/"
3465
+ },
3466
+ "input":{"shape":"RestoreManagedPrefixListVersionRequest"},
3467
+ "output":{"shape":"RestoreManagedPrefixListVersionResult"}
3468
+ },
3406
3469
  "RevokeClientVpnIngress":{
3407
3470
  "name":"RevokeClientVpnIngress",
3408
3471
  "http":{
@@ -3772,6 +3835,20 @@
3772
3835
  "fulfilled"
3773
3836
  ]
3774
3837
  },
3838
+ "AddPrefixListEntries":{
3839
+ "type":"list",
3840
+ "member":{"shape":"AddPrefixListEntry"},
3841
+ "max":1000,
3842
+ "min":0
3843
+ },
3844
+ "AddPrefixListEntry":{
3845
+ "type":"structure",
3846
+ "required":["Cidr"],
3847
+ "members":{
3848
+ "Cidr":{"shape":"String"},
3849
+ "Description":{"shape":"String"}
3850
+ }
3851
+ },
3775
3852
  "Address":{
3776
3853
  "type":"structure",
3777
3854
  "members":{
@@ -6940,6 +7017,41 @@
6940
7017
  }
6941
7018
  }
6942
7019
  },
7020
+ "CreateManagedPrefixListRequest":{
7021
+ "type":"structure",
7022
+ "required":[
7023
+ "PrefixListName",
7024
+ "MaxEntries",
7025
+ "AddressFamily"
7026
+ ],
7027
+ "members":{
7028
+ "DryRun":{"shape":"Boolean"},
7029
+ "PrefixListName":{"shape":"String"},
7030
+ "Entries":{
7031
+ "shape":"AddPrefixListEntries",
7032
+ "locationName":"Entry"
7033
+ },
7034
+ "MaxEntries":{"shape":"Integer"},
7035
+ "TagSpecifications":{
7036
+ "shape":"TagSpecificationList",
7037
+ "locationName":"TagSpecification"
7038
+ },
7039
+ "AddressFamily":{"shape":"String"},
7040
+ "ClientToken":{
7041
+ "shape":"String",
7042
+ "idempotencyToken":true
7043
+ }
7044
+ }
7045
+ },
7046
+ "CreateManagedPrefixListResult":{
7047
+ "type":"structure",
7048
+ "members":{
7049
+ "PrefixList":{
7050
+ "shape":"ManagedPrefixList",
7051
+ "locationName":"prefixList"
7052
+ }
7053
+ }
7054
+ },
6943
7055
  "CreateNatGatewayRequest":{
6944
7056
  "type":"structure",
6945
7057
  "required":[
@@ -7202,6 +7314,7 @@
7202
7314
  "shape":"String",
7203
7315
  "locationName":"destinationIpv6CidrBlock"
7204
7316
  },
7317
+ "DestinationPrefixListId":{"shape":"PrefixListResourceId"},
7205
7318
  "DryRun":{
7206
7319
  "shape":"Boolean",
7207
7320
  "locationName":"dryRun"
@@ -8460,6 +8573,23 @@
8460
8573
  }
8461
8574
  }
8462
8575
  },
8576
+ "DeleteManagedPrefixListRequest":{
8577
+ "type":"structure",
8578
+ "required":["PrefixListId"],
8579
+ "members":{
8580
+ "DryRun":{"shape":"Boolean"},
8581
+ "PrefixListId":{"shape":"PrefixListResourceId"}
8582
+ }
8583
+ },
8584
+ "DeleteManagedPrefixListResult":{
8585
+ "type":"structure",
8586
+ "members":{
8587
+ "PrefixList":{
8588
+ "shape":"ManagedPrefixList",
8589
+ "locationName":"prefixList"
8590
+ }
8591
+ }
8592
+ },
8463
8593
  "DeleteNatGatewayRequest":{
8464
8594
  "type":"structure",
8465
8595
  "required":["NatGatewayId"],
@@ -8629,6 +8759,7 @@
8629
8759
  "shape":"String",
8630
8760
  "locationName":"destinationIpv6CidrBlock"
8631
8761
  },
8762
+ "DestinationPrefixListId":{"shape":"PrefixListResourceId"},
8632
8763
  "DryRun":{
8633
8764
  "shape":"Boolean",
8634
8765
  "locationName":"dryRun"
@@ -10887,6 +11018,35 @@
10887
11018
  }
10888
11019
  }
10889
11020
  },
11021
+ "DescribeManagedPrefixListsRequest":{
11022
+ "type":"structure",
11023
+ "members":{
11024
+ "DryRun":{"shape":"Boolean"},
11025
+ "Filters":{
11026
+ "shape":"FilterList",
11027
+ "locationName":"Filter"
11028
+ },
11029
+ "MaxResults":{"shape":"PrefixListMaxResults"},
11030
+ "NextToken":{"shape":"NextToken"},
11031
+ "PrefixListIds":{
11032
+ "shape":"ValueStringList",
11033
+ "locationName":"PrefixListId"
11034
+ }
11035
+ }
11036
+ },
11037
+ "DescribeManagedPrefixListsResult":{
11038
+ "type":"structure",
11039
+ "members":{
11040
+ "NextToken":{
11041
+ "shape":"NextToken",
11042
+ "locationName":"nextToken"
11043
+ },
11044
+ "PrefixLists":{
11045
+ "shape":"ManagedPrefixListSet",
11046
+ "locationName":"prefixListSet"
11047
+ }
11048
+ }
11049
+ },
10890
11050
  "DescribeMovingAddressesMaxResults":{
10891
11051
  "type":"integer",
10892
11052
  "max":1000,
@@ -15320,6 +15480,58 @@
15320
15480
  }
15321
15481
  }
15322
15482
  },
15483
+ "GetManagedPrefixListAssociationsMaxResults":{
15484
+ "type":"integer",
15485
+ "max":255,
15486
+ "min":5
15487
+ },
15488
+ "GetManagedPrefixListAssociationsRequest":{
15489
+ "type":"structure",
15490
+ "required":["PrefixListId"],
15491
+ "members":{
15492
+ "DryRun":{"shape":"Boolean"},
15493
+ "PrefixListId":{"shape":"PrefixListResourceId"},
15494
+ "MaxResults":{"shape":"GetManagedPrefixListAssociationsMaxResults"},
15495
+ "NextToken":{"shape":"NextToken"}
15496
+ }
15497
+ },
15498
+ "GetManagedPrefixListAssociationsResult":{
15499
+ "type":"structure",
15500
+ "members":{
15501
+ "PrefixListAssociations":{
15502
+ "shape":"PrefixListAssociationSet",
15503
+ "locationName":"prefixListAssociationSet"
15504
+ },
15505
+ "NextToken":{
15506
+ "shape":"String",
15507
+ "locationName":"nextToken"
15508
+ }
15509
+ }
15510
+ },
15511
+ "GetManagedPrefixListEntriesRequest":{
15512
+ "type":"structure",
15513
+ "required":["PrefixListId"],
15514
+ "members":{
15515
+ "DryRun":{"shape":"Boolean"},
15516
+ "PrefixListId":{"shape":"PrefixListResourceId"},
15517
+ "TargetVersion":{"shape":"Long"},
15518
+ "MaxResults":{"shape":"PrefixListMaxResults"},
15519
+ "NextToken":{"shape":"NextToken"}
15520
+ }
15521
+ },
15522
+ "GetManagedPrefixListEntriesResult":{
15523
+ "type":"structure",
15524
+ "members":{
15525
+ "Entries":{
15526
+ "shape":"PrefixListEntrySet",
15527
+ "locationName":"entrySet"
15528
+ },
15529
+ "NextToken":{
15530
+ "shape":"NextToken",
15531
+ "locationName":"nextToken"
15532
+ }
15533
+ }
15534
+ },
15323
15535
  "GetPasswordDataRequest":{
15324
15536
  "type":"structure",
15325
15537
  "required":["InstanceId"],
@@ -19928,6 +20140,58 @@
19928
20140
  ]
19929
20141
  },
19930
20142
  "Long":{"type":"long"},
20143
+ "ManagedPrefixList":{
20144
+ "type":"structure",
20145
+ "members":{
20146
+ "PrefixListId":{
20147
+ "shape":"PrefixListResourceId",
20148
+ "locationName":"prefixListId"
20149
+ },
20150
+ "AddressFamily":{
20151
+ "shape":"String",
20152
+ "locationName":"addressFamily"
20153
+ },
20154
+ "State":{
20155
+ "shape":"PrefixListState",
20156
+ "locationName":"state"
20157
+ },
20158
+ "StateMessage":{
20159
+ "shape":"String",
20160
+ "locationName":"stateMessage"
20161
+ },
20162
+ "PrefixListArn":{
20163
+ "shape":"ResourceArn",
20164
+ "locationName":"prefixListArn"
20165
+ },
20166
+ "PrefixListName":{
20167
+ "shape":"String",
20168
+ "locationName":"prefixListName"
20169
+ },
20170
+ "MaxEntries":{
20171
+ "shape":"Integer",
20172
+ "locationName":"maxEntries"
20173
+ },
20174
+ "Version":{
20175
+ "shape":"Long",
20176
+ "locationName":"version"
20177
+ },
20178
+ "Tags":{
20179
+ "shape":"TagList",
20180
+ "locationName":"tagSet"
20181
+ },
20182
+ "OwnerId":{
20183
+ "shape":"String",
20184
+ "locationName":"ownerId"
20185
+ }
20186
+ }
20187
+ },
20188
+ "ManagedPrefixListSet":{
20189
+ "type":"list",
20190
+ "member":{
20191
+ "shape":"ManagedPrefixList",
20192
+ "locationName":"item"
20193
+ }
20194
+ },
19931
20195
  "MarketType":{
19932
20196
  "type":"string",
19933
20197
  "enum":["spot"]
@@ -20434,6 +20698,33 @@
20434
20698
  }
20435
20699
  }
20436
20700
  },
20701
+ "ModifyManagedPrefixListRequest":{
20702
+ "type":"structure",
20703
+ "required":["PrefixListId"],
20704
+ "members":{
20705
+ "DryRun":{"shape":"Boolean"},
20706
+ "PrefixListId":{"shape":"PrefixListResourceId"},
20707
+ "CurrentVersion":{"shape":"Long"},
20708
+ "PrefixListName":{"shape":"String"},
20709
+ "AddEntries":{
20710
+ "shape":"AddPrefixListEntries",
20711
+ "locationName":"AddEntry"
20712
+ },
20713
+ "RemoveEntries":{
20714
+ "shape":"RemovePrefixListEntries",
20715
+ "locationName":"RemoveEntry"
20716
+ }
20717
+ }
20718
+ },
20719
+ "ModifyManagedPrefixListResult":{
20720
+ "type":"structure",
20721
+ "members":{
20722
+ "PrefixList":{
20723
+ "shape":"ManagedPrefixList",
20724
+ "locationName":"prefixList"
20725
+ }
20726
+ }
20727
+ },
20437
20728
  "ModifyNetworkInterfaceAttributeRequest":{
20438
20729
  "type":"structure",
20439
20730
  "required":["NetworkInterfaceId"],
@@ -22195,6 +22486,46 @@
22195
22486
  }
22196
22487
  }
22197
22488
  },
22489
+ "PrefixListAssociation":{
22490
+ "type":"structure",
22491
+ "members":{
22492
+ "ResourceId":{
22493
+ "shape":"String",
22494
+ "locationName":"resourceId"
22495
+ },
22496
+ "ResourceOwner":{
22497
+ "shape":"String",
22498
+ "locationName":"resourceOwner"
22499
+ }
22500
+ }
22501
+ },
22502
+ "PrefixListAssociationSet":{
22503
+ "type":"list",
22504
+ "member":{
22505
+ "shape":"PrefixListAssociation",
22506
+ "locationName":"item"
22507
+ }
22508
+ },
22509
+ "PrefixListEntry":{
22510
+ "type":"structure",
22511
+ "members":{
22512
+ "Cidr":{
22513
+ "shape":"String",
22514
+ "locationName":"cidr"
22515
+ },
22516
+ "Description":{
22517
+ "shape":"String",
22518
+ "locationName":"description"
22519
+ }
22520
+ }
22521
+ },
22522
+ "PrefixListEntrySet":{
22523
+ "type":"list",
22524
+ "member":{
22525
+ "shape":"PrefixListEntry",
22526
+ "locationName":"item"
22527
+ }
22528
+ },
22198
22529
  "PrefixListId":{
22199
22530
  "type":"structure",
22200
22531
  "members":{
@@ -22222,6 +22553,11 @@
22222
22553
  "locationName":"item"
22223
22554
  }
22224
22555
  },
22556
+ "PrefixListMaxResults":{
22557
+ "type":"integer",
22558
+ "max":1000,
22559
+ "min":1
22560
+ },
22225
22561
  "PrefixListResourceId":{"type":"string"},
22226
22562
  "PrefixListResourceIdStringList":{
22227
22563
  "type":"list",
@@ -22237,6 +22573,23 @@
22237
22573
  "locationName":"item"
22238
22574
  }
22239
22575
  },
22576
+ "PrefixListState":{
22577
+ "type":"string",
22578
+ "enum":[
22579
+ "create-in-progress",
22580
+ "create-complete",
22581
+ "create-failed",
22582
+ "modify-in-progress",
22583
+ "modify-complete",
22584
+ "modify-failed",
22585
+ "restore-in-progress",
22586
+ "restore-complete",
22587
+ "restore-failed",
22588
+ "delete-in-progress",
22589
+ "delete-complete",
22590
+ "delete-failed"
22591
+ ]
22592
+ },
22240
22593
  "PriceSchedule":{
22241
22594
  "type":"structure",
22242
22595
  "members":{
@@ -22642,7 +22995,11 @@
22642
22995
  "CurrencyCode":{"shape":"CurrencyCodeValues"},
22643
22996
  "HostIdSet":{"shape":"RequestHostIdSet"},
22644
22997
  "LimitPrice":{"shape":"String"},
22645
- "OfferingId":{"shape":"OfferingId"}
22998
+ "OfferingId":{"shape":"OfferingId"},
22999
+ "TagSpecifications":{
23000
+ "shape":"TagSpecificationList",
23001
+ "locationName":"TagSpecification"
23002
+ }
22646
23003
  }
22647
23004
  },
22648
23005
  "PurchaseHostReservationResult":{
@@ -23084,6 +23441,19 @@
23084
23441
  }
23085
23442
  }
23086
23443
  },
23444
+ "RemovePrefixListEntries":{
23445
+ "type":"list",
23446
+ "member":{"shape":"RemovePrefixListEntry"},
23447
+ "max":1000,
23448
+ "min":0
23449
+ },
23450
+ "RemovePrefixListEntry":{
23451
+ "type":"structure",
23452
+ "required":["Cidr"],
23453
+ "members":{
23454
+ "Cidr":{"shape":"String"}
23455
+ }
23456
+ },
23087
23457
  "ReplaceIamInstanceProfileAssociationRequest":{
23088
23458
  "type":"structure",
23089
23459
  "required":[
@@ -23198,6 +23568,7 @@
23198
23568
  "shape":"String",
23199
23569
  "locationName":"destinationIpv6CidrBlock"
23200
23570
  },
23571
+ "DestinationPrefixListId":{"shape":"PrefixListResourceId"},
23201
23572
  "DryRun":{
23202
23573
  "shape":"Boolean",
23203
23574
  "locationName":"dryRun"
@@ -24153,6 +24524,11 @@
24153
24524
  }
24154
24525
  }
24155
24526
  },
24527
+ "ResourceArn":{
24528
+ "type":"string",
24529
+ "max":1283,
24530
+ "min":1
24531
+ },
24156
24532
  "ResourceIdList":{
24157
24533
  "type":"list",
24158
24534
  "member":{"shape":"TaggableResourceId"}
@@ -24379,6 +24755,29 @@
24379
24755
  }
24380
24756
  }
24381
24757
  },
24758
+ "RestoreManagedPrefixListVersionRequest":{
24759
+ "type":"structure",
24760
+ "required":[
24761
+ "PrefixListId",
24762
+ "PreviousVersion",
24763
+ "CurrentVersion"
24764
+ ],
24765
+ "members":{
24766
+ "DryRun":{"shape":"Boolean"},
24767
+ "PrefixListId":{"shape":"PrefixListResourceId"},
24768
+ "PreviousVersion":{"shape":"Long"},
24769
+ "CurrentVersion":{"shape":"Long"}
24770
+ }
24771
+ },
24772
+ "RestoreManagedPrefixListVersionResult":{
24773
+ "type":"structure",
24774
+ "members":{
24775
+ "PrefixList":{
24776
+ "shape":"ManagedPrefixList",
24777
+ "locationName":"prefixList"
24778
+ }
24779
+ }
24780
+ },
24382
24781
  "RevokeClientVpnIngressRequest":{
24383
24782
  "type":"structure",
24384
24783
  "required":[