aws-sdk-core 2.11.535 → 2.11.540

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",
@@ -883,7 +883,8 @@
883
883
  "ACUITY",
884
884
  "TEST_VALUE",
885
885
  "TEST_UNITS",
886
- "DIRECTION"
886
+ "DIRECTION",
887
+ "SYSTEM_ORGAN_SITE"
887
888
  ]
888
889
  },
889
890
  "ResourceNotFoundException":{
@@ -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":{
@@ -6512,6 +6589,10 @@
6512
6589
  "shape":"NewDhcpConfigurationList",
6513
6590
  "locationName":"dhcpConfiguration"
6514
6591
  },
6592
+ "TagSpecifications":{
6593
+ "shape":"TagSpecificationList",
6594
+ "locationName":"TagSpecification"
6595
+ },
6515
6596
  "DryRun":{
6516
6597
  "shape":"Boolean",
6517
6598
  "locationName":"dryRun"
@@ -6533,7 +6614,11 @@
6533
6614
  "members":{
6534
6615
  "ClientToken":{"shape":"String"},
6535
6616
  "DryRun":{"shape":"Boolean"},
6536
- "VpcId":{"shape":"VpcId"}
6617
+ "VpcId":{"shape":"VpcId"},
6618
+ "TagSpecifications":{
6619
+ "shape":"TagSpecificationList",
6620
+ "locationName":"TagSpecification"
6621
+ }
6537
6622
  }
6538
6623
  },
6539
6624
  "CreateEgressOnlyInternetGatewayResult":{
@@ -6805,6 +6890,10 @@
6805
6890
  "CreateInternetGatewayRequest":{
6806
6891
  "type":"structure",
6807
6892
  "members":{
6893
+ "TagSpecifications":{
6894
+ "shape":"TagSpecificationList",
6895
+ "locationName":"TagSpecification"
6896
+ },
6808
6897
  "DryRun":{
6809
6898
  "shape":"Boolean",
6810
6899
  "locationName":"dryRun"
@@ -6940,6 +7029,41 @@
6940
7029
  }
6941
7030
  }
6942
7031
  },
7032
+ "CreateManagedPrefixListRequest":{
7033
+ "type":"structure",
7034
+ "required":[
7035
+ "PrefixListName",
7036
+ "MaxEntries",
7037
+ "AddressFamily"
7038
+ ],
7039
+ "members":{
7040
+ "DryRun":{"shape":"Boolean"},
7041
+ "PrefixListName":{"shape":"String"},
7042
+ "Entries":{
7043
+ "shape":"AddPrefixListEntries",
7044
+ "locationName":"Entry"
7045
+ },
7046
+ "MaxEntries":{"shape":"Integer"},
7047
+ "TagSpecifications":{
7048
+ "shape":"TagSpecificationList",
7049
+ "locationName":"TagSpecification"
7050
+ },
7051
+ "AddressFamily":{"shape":"String"},
7052
+ "ClientToken":{
7053
+ "shape":"String",
7054
+ "idempotencyToken":true
7055
+ }
7056
+ }
7057
+ },
7058
+ "CreateManagedPrefixListResult":{
7059
+ "type":"structure",
7060
+ "members":{
7061
+ "PrefixList":{
7062
+ "shape":"ManagedPrefixList",
7063
+ "locationName":"prefixList"
7064
+ }
7065
+ }
7066
+ },
6943
7067
  "CreateNatGatewayRequest":{
6944
7068
  "type":"structure",
6945
7069
  "required":[
@@ -7036,6 +7160,10 @@
7036
7160
  "VpcId":{
7037
7161
  "shape":"VpcId",
7038
7162
  "locationName":"vpcId"
7163
+ },
7164
+ "TagSpecifications":{
7165
+ "shape":"TagSpecificationList",
7166
+ "locationName":"TagSpecification"
7039
7167
  }
7040
7168
  }
7041
7169
  },
@@ -7111,6 +7239,10 @@
7111
7239
  "SubnetId":{
7112
7240
  "shape":"SubnetId",
7113
7241
  "locationName":"subnetId"
7242
+ },
7243
+ "TagSpecifications":{
7244
+ "shape":"TagSpecificationList",
7245
+ "locationName":"TagSpecification"
7114
7246
  }
7115
7247
  }
7116
7248
  },
@@ -7202,6 +7334,7 @@
7202
7334
  "shape":"String",
7203
7335
  "locationName":"destinationIpv6CidrBlock"
7204
7336
  },
7337
+ "DestinationPrefixListId":{"shape":"PrefixListResourceId"},
7205
7338
  "DryRun":{
7206
7339
  "shape":"Boolean",
7207
7340
  "locationName":"dryRun"
@@ -7283,6 +7416,10 @@
7283
7416
  },
7284
7417
  "GroupName":{"shape":"String"},
7285
7418
  "VpcId":{"shape":"VpcId"},
7419
+ "TagSpecifications":{
7420
+ "shape":"TagSpecificationList",
7421
+ "locationName":"TagSpecification"
7422
+ },
7286
7423
  "DryRun":{
7287
7424
  "shape":"Boolean",
7288
7425
  "locationName":"dryRun"
@@ -7295,6 +7432,10 @@
7295
7432
  "GroupId":{
7296
7433
  "shape":"String",
7297
7434
  "locationName":"groupId"
7435
+ },
7436
+ "Tags":{
7437
+ "shape":"TagList",
7438
+ "locationName":"tagSet"
7298
7439
  }
7299
7440
  }
7300
7441
  },
@@ -7371,6 +7512,10 @@
7371
7512
  "VpcId"
7372
7513
  ],
7373
7514
  "members":{
7515
+ "TagSpecifications":{
7516
+ "shape":"TagSpecificationList",
7517
+ "locationName":"TagSpecification"
7518
+ },
7374
7519
  "AvailabilityZone":{"shape":"String"},
7375
7520
  "AvailabilityZoneId":{"shape":"String"},
7376
7521
  "CidrBlock":{"shape":"String"},
@@ -7903,7 +8048,11 @@
7903
8048
  "shape":"Tenancy",
7904
8049
  "locationName":"instanceTenancy"
7905
8050
  },
7906
- "Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"}
8051
+ "Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"},
8052
+ "TagSpecifications":{
8053
+ "shape":"TagSpecificationList",
8054
+ "locationName":"TagSpecification"
8055
+ }
7907
8056
  }
7908
8057
  },
7909
8058
  "CreateVpcResult":{
@@ -8460,6 +8609,23 @@
8460
8609
  }
8461
8610
  }
8462
8611
  },
8612
+ "DeleteManagedPrefixListRequest":{
8613
+ "type":"structure",
8614
+ "required":["PrefixListId"],
8615
+ "members":{
8616
+ "DryRun":{"shape":"Boolean"},
8617
+ "PrefixListId":{"shape":"PrefixListResourceId"}
8618
+ }
8619
+ },
8620
+ "DeleteManagedPrefixListResult":{
8621
+ "type":"structure",
8622
+ "members":{
8623
+ "PrefixList":{
8624
+ "shape":"ManagedPrefixList",
8625
+ "locationName":"prefixList"
8626
+ }
8627
+ }
8628
+ },
8463
8629
  "DeleteNatGatewayRequest":{
8464
8630
  "type":"structure",
8465
8631
  "required":["NatGatewayId"],
@@ -8629,6 +8795,7 @@
8629
8795
  "shape":"String",
8630
8796
  "locationName":"destinationIpv6CidrBlock"
8631
8797
  },
8798
+ "DestinationPrefixListId":{"shape":"PrefixListResourceId"},
8632
8799
  "DryRun":{
8633
8800
  "shape":"Boolean",
8634
8801
  "locationName":"dryRun"
@@ -10887,6 +11054,35 @@
10887
11054
  }
10888
11055
  }
10889
11056
  },
11057
+ "DescribeManagedPrefixListsRequest":{
11058
+ "type":"structure",
11059
+ "members":{
11060
+ "DryRun":{"shape":"Boolean"},
11061
+ "Filters":{
11062
+ "shape":"FilterList",
11063
+ "locationName":"Filter"
11064
+ },
11065
+ "MaxResults":{"shape":"PrefixListMaxResults"},
11066
+ "NextToken":{"shape":"NextToken"},
11067
+ "PrefixListIds":{
11068
+ "shape":"ValueStringList",
11069
+ "locationName":"PrefixListId"
11070
+ }
11071
+ }
11072
+ },
11073
+ "DescribeManagedPrefixListsResult":{
11074
+ "type":"structure",
11075
+ "members":{
11076
+ "NextToken":{
11077
+ "shape":"NextToken",
11078
+ "locationName":"nextToken"
11079
+ },
11080
+ "PrefixLists":{
11081
+ "shape":"ManagedPrefixListSet",
11082
+ "locationName":"prefixListSet"
11083
+ }
11084
+ }
11085
+ },
10890
11086
  "DescribeMovingAddressesMaxResults":{
10891
11087
  "type":"integer",
10892
11088
  "max":1000,
@@ -15320,6 +15516,58 @@
15320
15516
  }
15321
15517
  }
15322
15518
  },
15519
+ "GetManagedPrefixListAssociationsMaxResults":{
15520
+ "type":"integer",
15521
+ "max":255,
15522
+ "min":5
15523
+ },
15524
+ "GetManagedPrefixListAssociationsRequest":{
15525
+ "type":"structure",
15526
+ "required":["PrefixListId"],
15527
+ "members":{
15528
+ "DryRun":{"shape":"Boolean"},
15529
+ "PrefixListId":{"shape":"PrefixListResourceId"},
15530
+ "MaxResults":{"shape":"GetManagedPrefixListAssociationsMaxResults"},
15531
+ "NextToken":{"shape":"NextToken"}
15532
+ }
15533
+ },
15534
+ "GetManagedPrefixListAssociationsResult":{
15535
+ "type":"structure",
15536
+ "members":{
15537
+ "PrefixListAssociations":{
15538
+ "shape":"PrefixListAssociationSet",
15539
+ "locationName":"prefixListAssociationSet"
15540
+ },
15541
+ "NextToken":{
15542
+ "shape":"String",
15543
+ "locationName":"nextToken"
15544
+ }
15545
+ }
15546
+ },
15547
+ "GetManagedPrefixListEntriesRequest":{
15548
+ "type":"structure",
15549
+ "required":["PrefixListId"],
15550
+ "members":{
15551
+ "DryRun":{"shape":"Boolean"},
15552
+ "PrefixListId":{"shape":"PrefixListResourceId"},
15553
+ "TargetVersion":{"shape":"Long"},
15554
+ "MaxResults":{"shape":"PrefixListMaxResults"},
15555
+ "NextToken":{"shape":"NextToken"}
15556
+ }
15557
+ },
15558
+ "GetManagedPrefixListEntriesResult":{
15559
+ "type":"structure",
15560
+ "members":{
15561
+ "Entries":{
15562
+ "shape":"PrefixListEntrySet",
15563
+ "locationName":"entrySet"
15564
+ },
15565
+ "NextToken":{
15566
+ "shape":"NextToken",
15567
+ "locationName":"nextToken"
15568
+ }
15569
+ }
15570
+ },
15323
15571
  "GetPasswordDataRequest":{
15324
15572
  "type":"structure",
15325
15573
  "required":["InstanceId"],
@@ -19928,6 +20176,58 @@
19928
20176
  ]
19929
20177
  },
19930
20178
  "Long":{"type":"long"},
20179
+ "ManagedPrefixList":{
20180
+ "type":"structure",
20181
+ "members":{
20182
+ "PrefixListId":{
20183
+ "shape":"PrefixListResourceId",
20184
+ "locationName":"prefixListId"
20185
+ },
20186
+ "AddressFamily":{
20187
+ "shape":"String",
20188
+ "locationName":"addressFamily"
20189
+ },
20190
+ "State":{
20191
+ "shape":"PrefixListState",
20192
+ "locationName":"state"
20193
+ },
20194
+ "StateMessage":{
20195
+ "shape":"String",
20196
+ "locationName":"stateMessage"
20197
+ },
20198
+ "PrefixListArn":{
20199
+ "shape":"ResourceArn",
20200
+ "locationName":"prefixListArn"
20201
+ },
20202
+ "PrefixListName":{
20203
+ "shape":"String",
20204
+ "locationName":"prefixListName"
20205
+ },
20206
+ "MaxEntries":{
20207
+ "shape":"Integer",
20208
+ "locationName":"maxEntries"
20209
+ },
20210
+ "Version":{
20211
+ "shape":"Long",
20212
+ "locationName":"version"
20213
+ },
20214
+ "Tags":{
20215
+ "shape":"TagList",
20216
+ "locationName":"tagSet"
20217
+ },
20218
+ "OwnerId":{
20219
+ "shape":"String",
20220
+ "locationName":"ownerId"
20221
+ }
20222
+ }
20223
+ },
20224
+ "ManagedPrefixListSet":{
20225
+ "type":"list",
20226
+ "member":{
20227
+ "shape":"ManagedPrefixList",
20228
+ "locationName":"item"
20229
+ }
20230
+ },
19931
20231
  "MarketType":{
19932
20232
  "type":"string",
19933
20233
  "enum":["spot"]
@@ -20434,6 +20734,33 @@
20434
20734
  }
20435
20735
  }
20436
20736
  },
20737
+ "ModifyManagedPrefixListRequest":{
20738
+ "type":"structure",
20739
+ "required":["PrefixListId"],
20740
+ "members":{
20741
+ "DryRun":{"shape":"Boolean"},
20742
+ "PrefixListId":{"shape":"PrefixListResourceId"},
20743
+ "CurrentVersion":{"shape":"Long"},
20744
+ "PrefixListName":{"shape":"String"},
20745
+ "AddEntries":{
20746
+ "shape":"AddPrefixListEntries",
20747
+ "locationName":"AddEntry"
20748
+ },
20749
+ "RemoveEntries":{
20750
+ "shape":"RemovePrefixListEntries",
20751
+ "locationName":"RemoveEntry"
20752
+ }
20753
+ }
20754
+ },
20755
+ "ModifyManagedPrefixListResult":{
20756
+ "type":"structure",
20757
+ "members":{
20758
+ "PrefixList":{
20759
+ "shape":"ManagedPrefixList",
20760
+ "locationName":"prefixList"
20761
+ }
20762
+ }
20763
+ },
20437
20764
  "ModifyNetworkInterfaceAttributeRequest":{
20438
20765
  "type":"structure",
20439
20766
  "required":["NetworkInterfaceId"],
@@ -22195,6 +22522,46 @@
22195
22522
  }
22196
22523
  }
22197
22524
  },
22525
+ "PrefixListAssociation":{
22526
+ "type":"structure",
22527
+ "members":{
22528
+ "ResourceId":{
22529
+ "shape":"String",
22530
+ "locationName":"resourceId"
22531
+ },
22532
+ "ResourceOwner":{
22533
+ "shape":"String",
22534
+ "locationName":"resourceOwner"
22535
+ }
22536
+ }
22537
+ },
22538
+ "PrefixListAssociationSet":{
22539
+ "type":"list",
22540
+ "member":{
22541
+ "shape":"PrefixListAssociation",
22542
+ "locationName":"item"
22543
+ }
22544
+ },
22545
+ "PrefixListEntry":{
22546
+ "type":"structure",
22547
+ "members":{
22548
+ "Cidr":{
22549
+ "shape":"String",
22550
+ "locationName":"cidr"
22551
+ },
22552
+ "Description":{
22553
+ "shape":"String",
22554
+ "locationName":"description"
22555
+ }
22556
+ }
22557
+ },
22558
+ "PrefixListEntrySet":{
22559
+ "type":"list",
22560
+ "member":{
22561
+ "shape":"PrefixListEntry",
22562
+ "locationName":"item"
22563
+ }
22564
+ },
22198
22565
  "PrefixListId":{
22199
22566
  "type":"structure",
22200
22567
  "members":{
@@ -22222,6 +22589,11 @@
22222
22589
  "locationName":"item"
22223
22590
  }
22224
22591
  },
22592
+ "PrefixListMaxResults":{
22593
+ "type":"integer",
22594
+ "max":1000,
22595
+ "min":1
22596
+ },
22225
22597
  "PrefixListResourceId":{"type":"string"},
22226
22598
  "PrefixListResourceIdStringList":{
22227
22599
  "type":"list",
@@ -22237,6 +22609,23 @@
22237
22609
  "locationName":"item"
22238
22610
  }
22239
22611
  },
22612
+ "PrefixListState":{
22613
+ "type":"string",
22614
+ "enum":[
22615
+ "create-in-progress",
22616
+ "create-complete",
22617
+ "create-failed",
22618
+ "modify-in-progress",
22619
+ "modify-complete",
22620
+ "modify-failed",
22621
+ "restore-in-progress",
22622
+ "restore-complete",
22623
+ "restore-failed",
22624
+ "delete-in-progress",
22625
+ "delete-complete",
22626
+ "delete-failed"
22627
+ ]
22628
+ },
22240
22629
  "PriceSchedule":{
22241
22630
  "type":"structure",
22242
22631
  "members":{
@@ -22642,7 +23031,11 @@
22642
23031
  "CurrencyCode":{"shape":"CurrencyCodeValues"},
22643
23032
  "HostIdSet":{"shape":"RequestHostIdSet"},
22644
23033
  "LimitPrice":{"shape":"String"},
22645
- "OfferingId":{"shape":"OfferingId"}
23034
+ "OfferingId":{"shape":"OfferingId"},
23035
+ "TagSpecifications":{
23036
+ "shape":"TagSpecificationList",
23037
+ "locationName":"TagSpecification"
23038
+ }
22646
23039
  }
22647
23040
  },
22648
23041
  "PurchaseHostReservationResult":{
@@ -23084,6 +23477,19 @@
23084
23477
  }
23085
23478
  }
23086
23479
  },
23480
+ "RemovePrefixListEntries":{
23481
+ "type":"list",
23482
+ "member":{"shape":"RemovePrefixListEntry"},
23483
+ "max":1000,
23484
+ "min":0
23485
+ },
23486
+ "RemovePrefixListEntry":{
23487
+ "type":"structure",
23488
+ "required":["Cidr"],
23489
+ "members":{
23490
+ "Cidr":{"shape":"String"}
23491
+ }
23492
+ },
23087
23493
  "ReplaceIamInstanceProfileAssociationRequest":{
23088
23494
  "type":"structure",
23089
23495
  "required":[
@@ -23198,6 +23604,7 @@
23198
23604
  "shape":"String",
23199
23605
  "locationName":"destinationIpv6CidrBlock"
23200
23606
  },
23607
+ "DestinationPrefixListId":{"shape":"PrefixListResourceId"},
23201
23608
  "DryRun":{
23202
23609
  "shape":"Boolean",
23203
23610
  "locationName":"dryRun"
@@ -24153,6 +24560,11 @@
24153
24560
  }
24154
24561
  }
24155
24562
  },
24563
+ "ResourceArn":{
24564
+ "type":"string",
24565
+ "max":1283,
24566
+ "min":1
24567
+ },
24156
24568
  "ResourceIdList":{
24157
24569
  "type":"list",
24158
24570
  "member":{"shape":"TaggableResourceId"}
@@ -24379,6 +24791,29 @@
24379
24791
  }
24380
24792
  }
24381
24793
  },
24794
+ "RestoreManagedPrefixListVersionRequest":{
24795
+ "type":"structure",
24796
+ "required":[
24797
+ "PrefixListId",
24798
+ "PreviousVersion",
24799
+ "CurrentVersion"
24800
+ ],
24801
+ "members":{
24802
+ "DryRun":{"shape":"Boolean"},
24803
+ "PrefixListId":{"shape":"PrefixListResourceId"},
24804
+ "PreviousVersion":{"shape":"Long"},
24805
+ "CurrentVersion":{"shape":"Long"}
24806
+ }
24807
+ },
24808
+ "RestoreManagedPrefixListVersionResult":{
24809
+ "type":"structure",
24810
+ "members":{
24811
+ "PrefixList":{
24812
+ "shape":"ManagedPrefixList",
24813
+ "locationName":"prefixList"
24814
+ }
24815
+ }
24816
+ },
24382
24817
  "RevokeClientVpnIngressRequest":{
24383
24818
  "type":"structure",
24384
24819
  "required":[