aws-sdk-core 2.11.445 → 2.11.446

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: 3fbfcbaf156deee45618c13ef62fb7bb7ee208ff
4
- data.tar.gz: 9b03e8af8eaf6f7c11505e865e3fa5ba286d8e39
3
+ metadata.gz: 74eb241a16d4286c32175a440c96f834435a524a
4
+ data.tar.gz: 82d37ef4e1b3dad7d4951cbc543cea44ea95205e
5
5
  SHA512:
6
- metadata.gz: b97085fd33b5c7fe4ba4e40aa02207d0a670e6d6f4d8af5114132ba8eddf943033a2156d3312e2089d4056ec942cd1ebf3a800500fc939a28c53a20805308c32
7
- data.tar.gz: 46b14a61228d6b0876be63f3f0880a63bde4461a98ae89ddb971d17bbaf276dda8d5e0945bd82980e7f496b7a53ad920a8dce15bae4272f287703dbf0fcc750a
6
+ metadata.gz: 2054c79d7fb7426d7ff6af8a42dc70461fb5e48a83c8b11ecd8eae099f1f88e258de153465e36d379dd6a7371b47449a07cb061dcc00cc84ce205f75510f1c28
7
+ data.tar.gz: e9d1ff42ec9a3414117cb0ab7b5a1208032073286397e89c5a56aa2dcd8275e0fa63d21ecf1ed91a1e1922dfa587f0145e69a2b6d8c1ea9cb3930ea5ef485535
@@ -160,6 +160,48 @@
160
160
  {"shape":"InternalServerErrorException"}
161
161
  ]
162
162
  },
163
+ "ListTagsForResource":{
164
+ "name":"ListTagsForResource",
165
+ "http":{
166
+ "method":"POST",
167
+ "requestUri":"/"
168
+ },
169
+ "input":{"shape":"ListTagsForResourceRequest"},
170
+ "output":{"shape":"ListTagsForResourceResponse"},
171
+ "errors":[
172
+ {"shape":"NotFoundException"},
173
+ {"shape":"InternalServerErrorException"},
174
+ {"shape":"BadRequestException"}
175
+ ]
176
+ },
177
+ "TagResource":{
178
+ "name":"TagResource",
179
+ "http":{
180
+ "method":"POST",
181
+ "requestUri":"/"
182
+ },
183
+ "input":{"shape":"TagResourceRequest"},
184
+ "output":{"shape":"TagResourceResponse"},
185
+ "errors":[
186
+ {"shape":"NotFoundException"},
187
+ {"shape":"InternalServerErrorException"},
188
+ {"shape":"BadRequestException"}
189
+ ]
190
+ },
191
+ "UntagResource":{
192
+ "name":"UntagResource",
193
+ "http":{
194
+ "method":"POST",
195
+ "requestUri":"/"
196
+ },
197
+ "input":{"shape":"UntagResourceRequest"},
198
+ "output":{"shape":"UntagResourceResponse"},
199
+ "errors":[
200
+ {"shape":"NotFoundException"},
201
+ {"shape":"InternalServerErrorException"},
202
+ {"shape":"BadRequestException"}
203
+ ]
204
+ },
163
205
  "UpdateEnvironment":{
164
206
  "name":"UpdateEnvironment",
165
207
  "http":{
@@ -240,7 +282,8 @@
240
282
  "instanceType":{"shape":"InstanceType"},
241
283
  "subnetId":{"shape":"SubnetId"},
242
284
  "automaticStopTimeMinutes":{"shape":"AutomaticStopTimeMinutes"},
243
- "ownerArn":{"shape":"UserArn"}
285
+ "ownerArn":{"shape":"UserArn"},
286
+ "tags":{"shape":"TagList"}
244
287
  }
245
288
  },
246
289
  "CreateEnvironmentEC2Result":{
@@ -352,6 +395,10 @@
352
395
  "lifecycle":{"shape":"EnvironmentLifecycle"}
353
396
  }
354
397
  },
398
+ "EnvironmentArn":{
399
+ "type":"string",
400
+ "pattern":"arn:aws:cloud9:([a-z]{2}-[a-z]+-\\d{1}):[0-9]{12}:environment:[a-zA-Z0-9]{8,32}"
401
+ },
355
402
  "EnvironmentDescription":{
356
403
  "type":"string",
357
404
  "max":200,
@@ -464,6 +511,19 @@
464
511
  "environmentIds":{"shape":"EnvironmentIdList"}
465
512
  }
466
513
  },
514
+ "ListTagsForResourceRequest":{
515
+ "type":"structure",
516
+ "required":["ResourceARN"],
517
+ "members":{
518
+ "ResourceARN":{"shape":"EnvironmentArn"}
519
+ }
520
+ },
521
+ "ListTagsForResourceResponse":{
522
+ "type":"structure",
523
+ "members":{
524
+ "Tags":{"shape":"TagList"}
525
+ }
526
+ },
467
527
  "MaxResults":{
468
528
  "type":"integer",
469
529
  "box":true,
@@ -501,6 +561,55 @@
501
561
  "max":30,
502
562
  "min":5
503
563
  },
564
+ "Tag":{
565
+ "type":"structure",
566
+ "required":[
567
+ "Key",
568
+ "Value"
569
+ ],
570
+ "members":{
571
+ "Key":{"shape":"TagKey"},
572
+ "Value":{"shape":"TagValue"}
573
+ }
574
+ },
575
+ "TagKey":{
576
+ "type":"string",
577
+ "max":128,
578
+ "min":1
579
+ },
580
+ "TagKeyList":{
581
+ "type":"list",
582
+ "member":{"shape":"TagKey"},
583
+ "max":200,
584
+ "min":0
585
+ },
586
+ "TagList":{
587
+ "type":"list",
588
+ "member":{"shape":"Tag"},
589
+ "max":200,
590
+ "min":0
591
+ },
592
+ "TagResourceRequest":{
593
+ "type":"structure",
594
+ "required":[
595
+ "ResourceARN",
596
+ "Tags"
597
+ ],
598
+ "members":{
599
+ "ResourceARN":{"shape":"EnvironmentArn"},
600
+ "Tags":{"shape":"TagList"}
601
+ }
602
+ },
603
+ "TagResourceResponse":{
604
+ "type":"structure",
605
+ "members":{
606
+ }
607
+ },
608
+ "TagValue":{
609
+ "type":"string",
610
+ "max":256,
611
+ "min":0
612
+ },
504
613
  "Timestamp":{"type":"timestamp"},
505
614
  "TooManyRequestsException":{
506
615
  "type":"structure",
@@ -508,6 +617,22 @@
508
617
  },
509
618
  "exception":true
510
619
  },
620
+ "UntagResourceRequest":{
621
+ "type":"structure",
622
+ "required":[
623
+ "ResourceARN",
624
+ "TagKeys"
625
+ ],
626
+ "members":{
627
+ "ResourceARN":{"shape":"EnvironmentArn"},
628
+ "TagKeys":{"shape":"TagKeyList"}
629
+ }
630
+ },
631
+ "UntagResourceResponse":{
632
+ "type":"structure",
633
+ "members":{
634
+ }
635
+ },
511
636
  "UpdateEnvironmentMembershipRequest":{
512
637
  "type":"structure",
513
638
  "required":[
@@ -543,7 +668,7 @@
543
668
  },
544
669
  "UserArn":{
545
670
  "type":"string",
546
- "pattern":"^arn:aws:(iam|sts)::\\d+:(root|(user\\/[\\w+=/:,.@-]{1,64}|federated-user\\/[\\w+=/:,.@-]{2,32}|assumed-role\\/[\\w+=/:,.@-]{1,64}\\/[\\w+=/:,.@-]{1,64}))$"
671
+ "pattern":"^arn:aws:(iam|sts)::\\d+:(root|(user\\/[\\w+=/:,.@-]{1,64}|federated-user\\/[\\w+=/:,.@-]{2,32}|assumed-role\\/[\\w+=:,.@-]{1,64}\\/[\\w+=,.@-]{1,64}))$"
547
672
  }
548
673
  }
549
674
  }
@@ -2494,7 +2494,8 @@
2494
2494
  "BillingModeOverride":{"shape":"BillingMode"},
2495
2495
  "GlobalSecondaryIndexOverride":{"shape":"GlobalSecondaryIndexList"},
2496
2496
  "LocalSecondaryIndexOverride":{"shape":"LocalSecondaryIndexList"},
2497
- "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughput"}
2497
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughput"},
2498
+ "SSESpecificationOverride":{"shape":"SSESpecification"}
2498
2499
  }
2499
2500
  },
2500
2501
  "RestoreTableFromBackupOutput":{
@@ -2505,11 +2506,9 @@
2505
2506
  },
2506
2507
  "RestoreTableToPointInTimeInput":{
2507
2508
  "type":"structure",
2508
- "required":[
2509
- "SourceTableName",
2510
- "TargetTableName"
2511
- ],
2509
+ "required":["TargetTableName"],
2512
2510
  "members":{
2511
+ "SourceTableArn":{"shape":"TableArn"},
2513
2512
  "SourceTableName":{"shape":"TableName"},
2514
2513
  "TargetTableName":{"shape":"TableName"},
2515
2514
  "UseLatestRestorableTime":{"shape":"BooleanObject"},
@@ -2517,7 +2516,8 @@
2517
2516
  "BillingModeOverride":{"shape":"BillingMode"},
2518
2517
  "GlobalSecondaryIndexOverride":{"shape":"GlobalSecondaryIndexList"},
2519
2518
  "LocalSecondaryIndexOverride":{"shape":"LocalSecondaryIndexList"},
2520
- "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughput"}
2519
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughput"},
2520
+ "SSESpecificationOverride":{"shape":"SSESpecification"}
2521
2521
  }
2522
2522
  },
2523
2523
  "RestoreTableToPointInTimeOutput":{
@@ -3572,7 +3572,7 @@
3572
3572
  "type":"structure",
3573
3573
  "required":["TransitGatewayAttachmentId"],
3574
3574
  "members":{
3575
- "TransitGatewayAttachmentId":{"shape":"String"},
3575
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
3576
3576
  "DryRun":{"shape":"Boolean"}
3577
3577
  }
3578
3578
  },
@@ -3589,7 +3589,7 @@
3589
3589
  "type":"structure",
3590
3590
  "required":["TransitGatewayAttachmentId"],
3591
3591
  "members":{
3592
- "TransitGatewayAttachmentId":{"shape":"String"},
3592
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
3593
3593
  "DryRun":{"shape":"Boolean"}
3594
3594
  }
3595
3595
  },
@@ -3610,9 +3610,9 @@
3610
3610
  ],
3611
3611
  "members":{
3612
3612
  "DryRun":{"shape":"Boolean"},
3613
- "ServiceId":{"shape":"ServiceId"},
3613
+ "ServiceId":{"shape":"VpcEndpointServiceId"},
3614
3614
  "VpcEndpointIds":{
3615
- "shape":"ValueStringList",
3615
+ "shape":"VpcEndpointIdList",
3616
3616
  "locationName":"VpcEndpointId"
3617
3617
  }
3618
3618
  }
@@ -4205,14 +4205,14 @@
4205
4205
  "locationName":"dryRun"
4206
4206
  },
4207
4207
  "RouteTableId":{
4208
- "shape":"String",
4208
+ "shape":"RouteTableId",
4209
4209
  "locationName":"routeTableId"
4210
4210
  },
4211
4211
  "SubnetId":{
4212
- "shape":"String",
4212
+ "shape":"SubnetId",
4213
4213
  "locationName":"subnetId"
4214
4214
  },
4215
- "GatewayId":{"shape":"String"}
4215
+ "GatewayId":{"shape":"RouteGatewayId"}
4216
4216
  }
4217
4217
  },
4218
4218
  "AssociateRouteTableResult":{
@@ -4261,8 +4261,8 @@
4261
4261
  "AssociateTransitGatewayMulticastDomainRequest":{
4262
4262
  "type":"structure",
4263
4263
  "members":{
4264
- "TransitGatewayMulticastDomainId":{"shape":"String"},
4265
- "TransitGatewayAttachmentId":{"shape":"String"},
4264
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
4265
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
4266
4266
  "SubnetIds":{"shape":"ValueStringList"},
4267
4267
  "DryRun":{"shape":"Boolean"}
4268
4268
  }
@@ -4283,8 +4283,8 @@
4283
4283
  "TransitGatewayAttachmentId"
4284
4284
  ],
4285
4285
  "members":{
4286
- "TransitGatewayRouteTableId":{"shape":"String"},
4287
- "TransitGatewayAttachmentId":{"shape":"String"},
4286
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
4287
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
4288
4288
  "DryRun":{"shape":"Boolean"}
4289
4289
  }
4290
4290
  },
@@ -4310,9 +4310,9 @@
4310
4310
  "shape":"VpcId",
4311
4311
  "locationName":"vpcId"
4312
4312
  },
4313
- "Ipv6Pool":{"shape":"String"},
4314
- "Ipv6CidrBlock":{"shape":"String"},
4315
- "Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"}
4313
+ "Ipv6CidrBlockNetworkBorderGroup":{"shape":"String"},
4314
+ "Ipv6Pool":{"shape":"Ipv6PoolEc2Id"},
4315
+ "Ipv6CidrBlock":{"shape":"String"}
4316
4316
  }
4317
4317
  },
4318
4318
  "AssociateVpcCidrBlockResult":{
@@ -4359,7 +4359,7 @@
4359
4359
  "AssociationIdList":{
4360
4360
  "type":"list",
4361
4361
  "member":{
4362
- "shape":"String",
4362
+ "shape":"IamInstanceProfileAssociationId",
4363
4363
  "locationName":"AssociationId"
4364
4364
  }
4365
4365
  },
@@ -4618,7 +4618,7 @@
4618
4618
  "locationName":"dryRun"
4619
4619
  },
4620
4620
  "GroupId":{
4621
- "shape":"String",
4621
+ "shape":"SecurityGroupId",
4622
4622
  "locationName":"groupId"
4623
4623
  },
4624
4624
  "IpPermissions":{
@@ -4656,8 +4656,8 @@
4656
4656
  "members":{
4657
4657
  "CidrIp":{"shape":"String"},
4658
4658
  "FromPort":{"shape":"Integer"},
4659
- "GroupId":{"shape":"String"},
4660
- "GroupName":{"shape":"String"},
4659
+ "GroupId":{"shape":"SecurityGroupId"},
4660
+ "GroupName":{"shape":"SecurityGroupName"},
4661
4661
  "IpPermissions":{"shape":"IpPermissionList"},
4662
4662
  "IpProtocol":{"shape":"String"},
4663
4663
  "SourceSecurityGroupName":{"shape":"String"},
@@ -4858,7 +4858,7 @@
4858
4858
  "BundleIdStringList":{
4859
4859
  "type":"list",
4860
4860
  "member":{
4861
- "shape":"String",
4861
+ "shape":"BundleId",
4862
4862
  "locationName":"BundleId"
4863
4863
  }
4864
4864
  },
@@ -5160,7 +5160,7 @@
5160
5160
  "locationName":"dryRun"
5161
5161
  },
5162
5162
  "SpotFleetRequestIds":{
5163
- "shape":"ValueStringList",
5163
+ "shape":"SpotFleetRequestIdList",
5164
5164
  "locationName":"spotFleetRequestId"
5165
5165
  },
5166
5166
  "TerminateInstances":{
@@ -5422,7 +5422,7 @@
5422
5422
  "CapacityReservationTarget":{
5423
5423
  "type":"structure",
5424
5424
  "members":{
5425
- "CapacityReservationId":{"shape":"String"}
5425
+ "CapacityReservationId":{"shape":"CapacityReservationId"}
5426
5426
  }
5427
5427
  },
5428
5428
  "CapacityReservationTargetResponse":{
@@ -5814,6 +5814,13 @@
5814
5814
  }
5815
5815
  },
5816
5816
  "ClientVpnEndpointId":{"type":"string"},
5817
+ "ClientVpnEndpointIdList":{
5818
+ "type":"list",
5819
+ "member":{
5820
+ "shape":"ClientVpnEndpointId",
5821
+ "locationName":"item"
5822
+ }
5823
+ },
5817
5824
  "ClientVpnEndpointStatus":{
5818
5825
  "type":"structure",
5819
5826
  "members":{
@@ -5937,7 +5944,7 @@
5937
5944
  "type":"structure",
5938
5945
  "members":{
5939
5946
  "PoolId":{
5940
- "shape":"String",
5947
+ "shape":"CoipPoolId",
5941
5948
  "locationName":"poolId"
5942
5949
  },
5943
5950
  "PoolCidrs":{
@@ -5945,7 +5952,7 @@
5945
5952
  "locationName":"poolCidrSet"
5946
5953
  },
5947
5954
  "LocalGatewayRouteTableId":{
5948
- "shape":"String",
5955
+ "shape":"LocalGatewayRoutetableId",
5949
5956
  "locationName":"localGatewayRouteTableId"
5950
5957
  },
5951
5958
  "Tags":{
@@ -5954,6 +5961,7 @@
5954
5961
  }
5955
5962
  }
5956
5963
  },
5964
+ "CoipPoolId":{"type":"string"},
5957
5965
  "CoipPoolIdSet":{
5958
5966
  "type":"list",
5959
5967
  "member":{
@@ -6076,7 +6084,7 @@
6076
6084
  "ConversionIdStringList":{
6077
6085
  "type":"list",
6078
6086
  "member":{
6079
- "shape":"String",
6087
+ "shape":"ConversionTaskId",
6080
6088
  "locationName":"item"
6081
6089
  }
6082
6090
  },
@@ -6131,7 +6139,7 @@
6131
6139
  ],
6132
6140
  "members":{
6133
6141
  "DryRun":{"shape":"Boolean"},
6134
- "SourceFpgaImageId":{"shape":"String"},
6142
+ "SourceFpgaImageId":{"shape":"FpgaImageId"},
6135
6143
  "Description":{"shape":"String"},
6136
6144
  "Name":{"shape":"String"},
6137
6145
  "SourceRegion":{"shape":"String"},
@@ -6200,7 +6208,7 @@
6200
6208
  "locationName":"encrypted"
6201
6209
  },
6202
6210
  "KmsKeyId":{
6203
- "shape":"String",
6211
+ "shape":"KmsKeyId",
6204
6212
  "locationName":"kmsKeyId"
6205
6213
  },
6206
6214
  "PresignedUrl":{
@@ -6596,7 +6604,7 @@
6596
6604
  "DeliverLogsPermissionArn":{"shape":"String"},
6597
6605
  "LogGroupName":{"shape":"String"},
6598
6606
  "ResourceIds":{
6599
- "shape":"ValueStringList",
6607
+ "shape":"FlowLogResourceIds",
6600
6608
  "locationName":"ResourceId"
6601
6609
  },
6602
6610
  "ResourceType":{"shape":"FlowLogsResourceType"},
@@ -6748,7 +6756,7 @@
6748
6756
  "type":"structure",
6749
6757
  "required":["KeyName"],
6750
6758
  "members":{
6751
- "KeyName":{"shape":"KeyPairName"},
6759
+ "KeyName":{"shape":"String"},
6752
6760
  "DryRun":{
6753
6761
  "shape":"Boolean",
6754
6762
  "locationName":"dryRun"
@@ -6813,8 +6821,8 @@
6813
6821
  ],
6814
6822
  "members":{
6815
6823
  "DestinationCidrBlock":{"shape":"String"},
6816
- "LocalGatewayRouteTableId":{"shape":"String"},
6817
- "LocalGatewayVirtualInterfaceGroupId":{"shape":"String"},
6824
+ "LocalGatewayRouteTableId":{"shape":"LocalGatewayRoutetableId"},
6825
+ "LocalGatewayVirtualInterfaceGroupId":{"shape":"LocalGatewayVirtualInterfaceGroupId"},
6818
6826
  "DryRun":{"shape":"Boolean"}
6819
6827
  }
6820
6828
  },
@@ -6834,8 +6842,8 @@
6834
6842
  "VpcId"
6835
6843
  ],
6836
6844
  "members":{
6837
- "LocalGatewayRouteTableId":{"shape":"String"},
6838
- "VpcId":{"shape":"String"},
6845
+ "LocalGatewayRouteTableId":{"shape":"LocalGatewayRoutetableId"},
6846
+ "VpcId":{"shape":"VpcId"},
6839
6847
  "DryRun":{"shape":"Boolean"}
6840
6848
  }
6841
6849
  },
@@ -7063,7 +7071,7 @@
7063
7071
  "locationName":"priceSchedules"
7064
7072
  },
7065
7073
  "ReservedInstancesId":{
7066
- "shape":"String",
7074
+ "shape":"ReservationId",
7067
7075
  "locationName":"reservedInstancesId"
7068
7076
  }
7069
7077
  }
@@ -7098,7 +7106,7 @@
7098
7106
  "locationName":"egressOnlyInternetGatewayId"
7099
7107
  },
7100
7108
  "GatewayId":{
7101
- "shape":"RouteTableGatewayId",
7109
+ "shape":"RouteGatewayId",
7102
7110
  "locationName":"gatewayId"
7103
7111
  },
7104
7112
  "InstanceId":{
@@ -7110,7 +7118,7 @@
7110
7118
  "locationName":"natGatewayId"
7111
7119
  },
7112
7120
  "TransitGatewayId":{"shape":"TransitGatewayId"},
7113
- "LocalGatewayId":{"shape":"String"},
7121
+ "LocalGatewayId":{"shape":"LocalGatewayId"},
7114
7122
  "NetworkInterfaceId":{
7115
7123
  "shape":"NetworkInterfaceId",
7116
7124
  "locationName":"networkInterfaceId"
@@ -7443,7 +7451,7 @@
7443
7451
  "type":"structure",
7444
7452
  "required":["TransitGatewayId"],
7445
7453
  "members":{
7446
- "TransitGatewayId":{"shape":"String"},
7454
+ "TransitGatewayId":{"shape":"TransitGatewayId"},
7447
7455
  "TagSpecifications":{
7448
7456
  "shape":"TagSpecificationList",
7449
7457
  "locationName":"TagSpecification"
@@ -7469,7 +7477,7 @@
7469
7477
  "PeerRegion"
7470
7478
  ],
7471
7479
  "members":{
7472
- "TransitGatewayId":{"shape":"String"},
7480
+ "TransitGatewayId":{"shape":"TransitGatewayId"},
7473
7481
  "PeerTransitGatewayId":{"shape":"String"},
7474
7482
  "PeerAccountId":{"shape":"String"},
7475
7483
  "PeerRegion":{"shape":"String"},
@@ -7518,8 +7526,8 @@
7518
7526
  ],
7519
7527
  "members":{
7520
7528
  "DestinationCidrBlock":{"shape":"String"},
7521
- "TransitGatewayRouteTableId":{"shape":"String"},
7522
- "TransitGatewayAttachmentId":{"shape":"String"},
7529
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
7530
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
7523
7531
  "Blackhole":{"shape":"Boolean"},
7524
7532
  "DryRun":{"shape":"Boolean"}
7525
7533
  }
@@ -7537,7 +7545,7 @@
7537
7545
  "type":"structure",
7538
7546
  "required":["TransitGatewayId"],
7539
7547
  "members":{
7540
- "TransitGatewayId":{"shape":"String"},
7548
+ "TransitGatewayId":{"shape":"TransitGatewayId"},
7541
7549
  "TagSpecifications":{"shape":"TagSpecificationList"},
7542
7550
  "DryRun":{"shape":"Boolean"}
7543
7551
  }
@@ -7559,9 +7567,9 @@
7559
7567
  "SubnetIds"
7560
7568
  ],
7561
7569
  "members":{
7562
- "TransitGatewayId":{"shape":"String"},
7563
- "VpcId":{"shape":"String"},
7564
- "SubnetIds":{"shape":"ValueStringList"},
7570
+ "TransitGatewayId":{"shape":"TransitGatewayId"},
7571
+ "VpcId":{"shape":"VpcId"},
7572
+ "SubnetIds":{"shape":"TransitGatewaySubnetIdList"},
7565
7573
  "Options":{"shape":"CreateTransitGatewayVpcAttachmentRequestOptions"},
7566
7574
  "TagSpecifications":{"shape":"TagSpecificationList"},
7567
7575
  "DryRun":{"shape":"Boolean"}
@@ -7644,7 +7652,7 @@
7644
7652
  ],
7645
7653
  "members":{
7646
7654
  "DryRun":{"shape":"Boolean"},
7647
- "ServiceId":{"shape":"ServiceId"},
7655
+ "ServiceId":{"shape":"VpcEndpointServiceId"},
7648
7656
  "VpcEndpointId":{"shape":"VpcEndpointId"},
7649
7657
  "ConnectionNotificationArn":{"shape":"String"},
7650
7658
  "ConnectionEvents":{"shape":"ValueStringList"},
@@ -7677,15 +7685,15 @@
7677
7685
  "ServiceName":{"shape":"String"},
7678
7686
  "PolicyDocument":{"shape":"String"},
7679
7687
  "RouteTableIds":{
7680
- "shape":"ValueStringList",
7688
+ "shape":"VpcEndpointRouteTableIdList",
7681
7689
  "locationName":"RouteTableId"
7682
7690
  },
7683
7691
  "SubnetIds":{
7684
- "shape":"ValueStringList",
7692
+ "shape":"VpcEndpointSubnetIdList",
7685
7693
  "locationName":"SubnetId"
7686
7694
  },
7687
7695
  "SecurityGroupIds":{
7688
- "shape":"ValueStringList",
7696
+ "shape":"VpcEndpointSecurityGroupIdList",
7689
7697
  "locationName":"SecurityGroupId"
7690
7698
  },
7691
7699
  "ClientToken":{"shape":"String"},
@@ -7780,7 +7788,7 @@
7780
7788
  "shape":"Boolean",
7781
7789
  "locationName":"amazonProvidedIpv6CidrBlock"
7782
7790
  },
7783
- "Ipv6Pool":{"shape":"String"},
7791
+ "Ipv6Pool":{"shape":"Ipv6PoolEc2Id"},
7784
7792
  "Ipv6CidrBlock":{"shape":"String"},
7785
7793
  "DryRun":{
7786
7794
  "shape":"Boolean",
@@ -7927,7 +7935,7 @@
7927
7935
  "CustomerGatewayIdStringList":{
7928
7936
  "type":"list",
7929
7937
  "member":{
7930
- "shape":"String",
7938
+ "shape":"CustomerGatewayId",
7931
7939
  "locationName":"CustomerGatewayId"
7932
7940
  }
7933
7941
  },
@@ -8158,7 +8166,7 @@
8158
8166
  "members":{
8159
8167
  "DryRun":{"shape":"Boolean"},
8160
8168
  "FlowLogIds":{
8161
- "shape":"ValueStringList",
8169
+ "shape":"FlowLogIdList",
8162
8170
  "locationName":"FlowLogId"
8163
8171
  }
8164
8172
  }
@@ -8317,7 +8325,7 @@
8317
8325
  ],
8318
8326
  "members":{
8319
8327
  "DestinationCidrBlock":{"shape":"String"},
8320
- "LocalGatewayRouteTableId":{"shape":"String"},
8328
+ "LocalGatewayRouteTableId":{"shape":"LocalGatewayRoutetableId"},
8321
8329
  "DryRun":{"shape":"Boolean"}
8322
8330
  }
8323
8331
  },
@@ -8334,7 +8342,7 @@
8334
8342
  "type":"structure",
8335
8343
  "required":["LocalGatewayRouteTableVpcAssociationId"],
8336
8344
  "members":{
8337
- "LocalGatewayRouteTableVpcAssociationId":{"shape":"String"},
8345
+ "LocalGatewayRouteTableVpcAssociationId":{"shape":"LocalGatewayRouteTableVpcAssociationId"},
8338
8346
  "DryRun":{"shape":"Boolean"}
8339
8347
  }
8340
8348
  },
@@ -8407,7 +8415,7 @@
8407
8415
  "type":"structure",
8408
8416
  "required":["NetworkInterfacePermissionId"],
8409
8417
  "members":{
8410
- "NetworkInterfacePermissionId":{"shape":"String"},
8418
+ "NetworkInterfacePermissionId":{"shape":"NetworkInterfacePermissionId"},
8411
8419
  "Force":{"shape":"Boolean"},
8412
8420
  "DryRun":{"shape":"Boolean"}
8413
8421
  }
@@ -8444,7 +8452,7 @@
8444
8452
  "locationName":"dryRun"
8445
8453
  },
8446
8454
  "GroupName":{
8447
- "shape":"String",
8455
+ "shape":"PlacementGroupName",
8448
8456
  "locationName":"groupName"
8449
8457
  }
8450
8458
  }
@@ -8473,7 +8481,7 @@
8473
8481
  "DeleteQueuedReservedInstancesIdList":{
8474
8482
  "type":"list",
8475
8483
  "member":{
8476
- "shape":"String",
8484
+ "shape":"ReservationId",
8477
8485
  "locationName":"item"
8478
8486
  },
8479
8487
  "max":100,
@@ -8534,7 +8542,7 @@
8534
8542
  "locationName":"dryRun"
8535
8543
  },
8536
8544
  "RouteTableId":{
8537
- "shape":"String",
8545
+ "shape":"RouteTableId",
8538
8546
  "locationName":"routeTableId"
8539
8547
  }
8540
8548
  }
@@ -8542,8 +8550,8 @@
8542
8550
  "DeleteSecurityGroupRequest":{
8543
8551
  "type":"structure",
8544
8552
  "members":{
8545
- "GroupId":{"shape":"String"},
8546
- "GroupName":{"shape":"String"},
8553
+ "GroupId":{"shape":"SecurityGroupId"},
8554
+ "GroupName":{"shape":"SecurityGroupName"},
8547
8555
  "DryRun":{
8548
8556
  "shape":"Boolean",
8549
8557
  "locationName":"dryRun"
@@ -8671,7 +8679,7 @@
8671
8679
  "type":"structure",
8672
8680
  "required":["TransitGatewayMulticastDomainId"],
8673
8681
  "members":{
8674
- "TransitGatewayMulticastDomainId":{"shape":"String"},
8682
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
8675
8683
  "DryRun":{"shape":"Boolean"}
8676
8684
  }
8677
8685
  },
@@ -8688,7 +8696,7 @@
8688
8696
  "type":"structure",
8689
8697
  "required":["TransitGatewayAttachmentId"],
8690
8698
  "members":{
8691
- "TransitGatewayAttachmentId":{"shape":"String"},
8699
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
8692
8700
  "DryRun":{"shape":"Boolean"}
8693
8701
  }
8694
8702
  },
@@ -8705,7 +8713,7 @@
8705
8713
  "type":"structure",
8706
8714
  "required":["TransitGatewayId"],
8707
8715
  "members":{
8708
- "TransitGatewayId":{"shape":"String"},
8716
+ "TransitGatewayId":{"shape":"TransitGatewayId"},
8709
8717
  "DryRun":{"shape":"Boolean"}
8710
8718
  }
8711
8719
  },
@@ -8725,7 +8733,7 @@
8725
8733
  "DestinationCidrBlock"
8726
8734
  ],
8727
8735
  "members":{
8728
- "TransitGatewayRouteTableId":{"shape":"String"},
8736
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
8729
8737
  "DestinationCidrBlock":{"shape":"String"},
8730
8738
  "DryRun":{"shape":"Boolean"}
8731
8739
  }
@@ -8743,7 +8751,7 @@
8743
8751
  "type":"structure",
8744
8752
  "required":["TransitGatewayRouteTableId"],
8745
8753
  "members":{
8746
- "TransitGatewayRouteTableId":{"shape":"String"},
8754
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
8747
8755
  "DryRun":{"shape":"Boolean"}
8748
8756
  }
8749
8757
  },
@@ -8760,7 +8768,7 @@
8760
8768
  "type":"structure",
8761
8769
  "required":["TransitGatewayAttachmentId"],
8762
8770
  "members":{
8763
- "TransitGatewayAttachmentId":{"shape":"String"},
8771
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
8764
8772
  "DryRun":{"shape":"Boolean"}
8765
8773
  }
8766
8774
  },
@@ -8810,7 +8818,7 @@
8810
8818
  "members":{
8811
8819
  "DryRun":{"shape":"Boolean"},
8812
8820
  "ServiceIds":{
8813
- "shape":"ValueStringList",
8821
+ "shape":"VpcEndpointServiceIdList",
8814
8822
  "locationName":"ServiceId"
8815
8823
  }
8816
8824
  }
@@ -8830,7 +8838,7 @@
8830
8838
  "members":{
8831
8839
  "DryRun":{"shape":"Boolean"},
8832
8840
  "VpcEndpointIds":{
8833
- "shape":"ValueStringList",
8841
+ "shape":"VpcEndpointIdList",
8834
8842
  "locationName":"VpcEndpointId"
8835
8843
  }
8836
8844
  }
@@ -8942,9 +8950,9 @@
8942
8950
  "DeregisterTransitGatewayMulticastGroupMembersRequest":{
8943
8951
  "type":"structure",
8944
8952
  "members":{
8945
- "TransitGatewayMulticastDomainId":{"shape":"String"},
8953
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
8946
8954
  "GroupIpAddress":{"shape":"String"},
8947
- "NetworkInterfaceIds":{"shape":"ValueStringList"},
8955
+ "NetworkInterfaceIds":{"shape":"TransitGatewayNetworkInterfaceIdList"},
8948
8956
  "DryRun":{"shape":"Boolean"}
8949
8957
  }
8950
8958
  },
@@ -8960,9 +8968,9 @@
8960
8968
  "DeregisterTransitGatewayMulticastGroupSourcesRequest":{
8961
8969
  "type":"structure",
8962
8970
  "members":{
8963
- "TransitGatewayMulticastDomainId":{"shape":"String"},
8971
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
8964
8972
  "GroupIpAddress":{"shape":"String"},
8965
- "NetworkInterfaceIds":{"shape":"ValueStringList"},
8973
+ "NetworkInterfaceIds":{"shape":"TransitGatewayNetworkInterfaceIdList"},
8966
8974
  "DryRun":{"shape":"Boolean"}
8967
8975
  }
8968
8976
  },
@@ -9216,7 +9224,7 @@
9216
9224
  "type":"structure",
9217
9225
  "required":["ClientVpnEndpointId"],
9218
9226
  "members":{
9219
- "ClientVpnEndpointId":{"shape":"String"},
9227
+ "ClientVpnEndpointId":{"shape":"ClientVpnEndpointId"},
9220
9228
  "DryRun":{"shape":"Boolean"},
9221
9229
  "NextToken":{"shape":"NextToken"},
9222
9230
  "Filters":{
@@ -9248,7 +9256,7 @@
9248
9256
  "type":"structure",
9249
9257
  "required":["ClientVpnEndpointId"],
9250
9258
  "members":{
9251
- "ClientVpnEndpointId":{"shape":"String"},
9259
+ "ClientVpnEndpointId":{"shape":"ClientVpnEndpointId"},
9252
9260
  "Filters":{
9253
9261
  "shape":"FilterList",
9254
9262
  "locationName":"Filter"
@@ -9280,7 +9288,7 @@
9280
9288
  "type":"structure",
9281
9289
  "members":{
9282
9290
  "ClientVpnEndpointIds":{
9283
- "shape":"ValueStringList",
9291
+ "shape":"ClientVpnEndpointIdList",
9284
9292
  "locationName":"ClientVpnEndpointId"
9285
9293
  },
9286
9294
  "MaxResults":{"shape":"DescribeClientVpnEndpointMaxResults"},
@@ -9314,7 +9322,7 @@
9314
9322
  "type":"structure",
9315
9323
  "required":["ClientVpnEndpointId"],
9316
9324
  "members":{
9317
- "ClientVpnEndpointId":{"shape":"String"},
9325
+ "ClientVpnEndpointId":{"shape":"ClientVpnEndpointId"},
9318
9326
  "Filters":{
9319
9327
  "shape":"FilterList",
9320
9328
  "locationName":"Filter"
@@ -9346,7 +9354,7 @@
9346
9354
  "type":"structure",
9347
9355
  "required":["ClientVpnEndpointId"],
9348
9356
  "members":{
9349
- "ClientVpnEndpointId":{"shape":"String"},
9357
+ "ClientVpnEndpointId":{"shape":"ClientVpnEndpointId"},
9350
9358
  "AssociationIds":{"shape":"ValueStringList"},
9351
9359
  "MaxResults":{"shape":"DescribeClientVpnTargetNetworksMaxResults"},
9352
9360
  "NextToken":{"shape":"NextToken"},
@@ -9871,7 +9879,7 @@
9871
9879
  "DryRun":{"shape":"Boolean"},
9872
9880
  "Filter":{"shape":"FilterList"},
9873
9881
  "FlowLogIds":{
9874
- "shape":"ValueStringList",
9882
+ "shape":"FlowLogIdList",
9875
9883
  "locationName":"FlowLogId"
9876
9884
  },
9877
9885
  "MaxResults":{"shape":"Integer"},
@@ -9899,7 +9907,7 @@
9899
9907
  ],
9900
9908
  "members":{
9901
9909
  "DryRun":{"shape":"Boolean"},
9902
- "FpgaImageId":{"shape":"String"},
9910
+ "FpgaImageId":{"shape":"FpgaImageId"},
9903
9911
  "Attribute":{"shape":"FpgaImageAttributeName"}
9904
9912
  }
9905
9913
  },
@@ -9958,7 +9966,7 @@
9958
9966
  "MaxResults":{"shape":"DescribeHostReservationsMaxResults"},
9959
9967
  "MinDuration":{"shape":"Integer"},
9960
9968
  "NextToken":{"shape":"String"},
9961
- "OfferingId":{"shape":"String"}
9969
+ "OfferingId":{"shape":"OfferingId"}
9962
9970
  }
9963
9971
  },
9964
9972
  "DescribeHostReservationOfferingsResult":{
@@ -10114,7 +10122,7 @@
10114
10122
  ],
10115
10123
  "members":{
10116
10124
  "Attribute":{"shape":"ImageAttributeName"},
10117
- "ImageId":{"shape":"String"},
10125
+ "ImageId":{"shape":"ImageId"},
10118
10126
  "DryRun":{
10119
10127
  "shape":"Boolean",
10120
10128
  "locationName":"dryRun"
@@ -10187,7 +10195,7 @@
10187
10195
  "DryRun":{"shape":"Boolean"},
10188
10196
  "Filters":{"shape":"FilterList"},
10189
10197
  "ImportTaskIds":{
10190
- "shape":"ImportTaskIdList",
10198
+ "shape":"ImportSnapshotTaskIdList",
10191
10199
  "locationName":"ImportTaskId"
10192
10200
  },
10193
10201
  "MaxResults":{"shape":"Integer"},
@@ -10223,7 +10231,7 @@
10223
10231
  "locationName":"dryRun"
10224
10232
  },
10225
10233
  "InstanceId":{
10226
- "shape":"String",
10234
+ "shape":"InstanceId",
10227
10235
  "locationName":"instanceId"
10228
10236
  }
10229
10237
  }
@@ -10408,7 +10416,7 @@
10408
10416
  "locationName":"dryRun"
10409
10417
  },
10410
10418
  "InternetGatewayIds":{
10411
- "shape":"ValueStringList",
10419
+ "shape":"InternetGatewayIdList",
10412
10420
  "locationName":"internetGatewayId"
10413
10421
  },
10414
10422
  "NextToken":{"shape":"String"},
@@ -10432,7 +10440,7 @@
10432
10440
  "type":"structure",
10433
10441
  "members":{
10434
10442
  "PoolIds":{
10435
- "shape":"ValueStringList",
10443
+ "shape":"Ipv6PoolIdList",
10436
10444
  "locationName":"PoolId"
10437
10445
  },
10438
10446
  "NextToken":{"shape":"NextToken"},
@@ -10491,7 +10499,7 @@
10491
10499
  "type":"structure",
10492
10500
  "members":{
10493
10501
  "DryRun":{"shape":"Boolean"},
10494
- "LaunchTemplateId":{"shape":"String"},
10502
+ "LaunchTemplateId":{"shape":"LaunchTemplateId"},
10495
10503
  "LaunchTemplateName":{"shape":"LaunchTemplateName"},
10496
10504
  "Versions":{
10497
10505
  "shape":"VersionStringList",
@@ -10530,7 +10538,7 @@
10530
10538
  "members":{
10531
10539
  "DryRun":{"shape":"Boolean"},
10532
10540
  "LaunchTemplateIds":{
10533
- "shape":"ValueStringList",
10541
+ "shape":"LaunchTemplateIdStringList",
10534
10542
  "locationName":"LaunchTemplateId"
10535
10543
  },
10536
10544
  "LaunchTemplateNames":{
@@ -10786,7 +10794,7 @@
10786
10794
  "Filter":{"shape":"FilterList"},
10787
10795
  "MaxResults":{"shape":"DescribeNatGatewaysMaxResults"},
10788
10796
  "NatGatewayIds":{
10789
- "shape":"ValueStringList",
10797
+ "shape":"NatGatewayIdStringList",
10790
10798
  "locationName":"NatGatewayId"
10791
10799
  },
10792
10800
  "NextToken":{"shape":"String"}
@@ -10822,7 +10830,7 @@
10822
10830
  "locationName":"dryRun"
10823
10831
  },
10824
10832
  "NetworkAclIds":{
10825
- "shape":"ValueStringList",
10833
+ "shape":"NetworkAclIdStringList",
10826
10834
  "locationName":"NetworkAclId"
10827
10835
  },
10828
10836
  "NextToken":{"shape":"String"},
@@ -10855,7 +10863,7 @@
10855
10863
  "locationName":"dryRun"
10856
10864
  },
10857
10865
  "NetworkInterfaceId":{
10858
- "shape":"String",
10866
+ "shape":"NetworkInterfaceId",
10859
10867
  "locationName":"networkInterfaceId"
10860
10868
  }
10861
10869
  }
@@ -10996,7 +11004,7 @@
10996
11004
  "MaxResults":{"shape":"Integer"},
10997
11005
  "NextToken":{"shape":"String"},
10998
11006
  "PrefixListIds":{
10999
- "shape":"ValueStringList",
11007
+ "shape":"PrefixListResourceIdStringList",
11000
11008
  "locationName":"PrefixListId"
11001
11009
  }
11002
11010
  }
@@ -11048,7 +11056,7 @@
11048
11056
  "type":"structure",
11049
11057
  "members":{
11050
11058
  "PoolIds":{
11051
- "shape":"ValueStringList",
11059
+ "shape":"PublicIpv4PoolIdStringList",
11052
11060
  "locationName":"PoolId"
11053
11061
  },
11054
11062
  "NextToken":{"shape":"NextToken"},
@@ -11107,11 +11115,11 @@
11107
11115
  "locationName":"Filter"
11108
11116
  },
11109
11117
  "ReservedInstancesId":{
11110
- "shape":"String",
11118
+ "shape":"ReservationId",
11111
11119
  "locationName":"reservedInstancesId"
11112
11120
  },
11113
11121
  "ReservedInstancesListingId":{
11114
- "shape":"String",
11122
+ "shape":"ReservedInstancesListingId",
11115
11123
  "locationName":"reservedInstancesListingId"
11116
11124
  }
11117
11125
  }
@@ -11257,7 +11265,7 @@
11257
11265
  "locationName":"dryRun"
11258
11266
  },
11259
11267
  "RouteTableIds":{
11260
- "shape":"ValueStringList",
11268
+ "shape":"RouteTableIdStringList",
11261
11269
  "locationName":"RouteTableId"
11262
11270
  },
11263
11271
  "NextToken":{"shape":"String"},
@@ -11411,7 +11419,7 @@
11411
11419
  ],
11412
11420
  "members":{
11413
11421
  "Attribute":{"shape":"SnapshotAttributeName"},
11414
- "SnapshotId":{"shape":"String"},
11422
+ "SnapshotId":{"shape":"SnapshotId"},
11415
11423
  "DryRun":{
11416
11424
  "shape":"Boolean",
11417
11425
  "locationName":"dryRun"
@@ -11515,7 +11523,7 @@
11515
11523
  "locationName":"nextToken"
11516
11524
  },
11517
11525
  "SpotFleetRequestId":{
11518
- "shape":"String",
11526
+ "shape":"SpotFleetRequestId",
11519
11527
  "locationName":"spotFleetRequestId"
11520
11528
  }
11521
11529
  }
@@ -11566,7 +11574,7 @@
11566
11574
  "locationName":"nextToken"
11567
11575
  },
11568
11576
  "SpotFleetRequestId":{
11569
- "shape":"String",
11577
+ "shape":"SpotFleetRequestId",
11570
11578
  "locationName":"spotFleetRequestId"
11571
11579
  },
11572
11580
  "StartTime":{
@@ -11616,7 +11624,7 @@
11616
11624
  "locationName":"nextToken"
11617
11625
  },
11618
11626
  "SpotFleetRequestIds":{
11619
- "shape":"ValueStringList",
11627
+ "shape":"SpotFleetRequestIdList",
11620
11628
  "locationName":"spotFleetRequestId"
11621
11629
  }
11622
11630
  }
@@ -11828,7 +11836,7 @@
11828
11836
  "type":"structure",
11829
11837
  "members":{
11830
11838
  "TrafficMirrorFilterIds":{
11831
- "shape":"ValueStringList",
11839
+ "shape":"TrafficMirrorFilterIdList",
11832
11840
  "locationName":"TrafficMirrorFilterId"
11833
11841
  },
11834
11842
  "DryRun":{"shape":"Boolean"},
@@ -11857,7 +11865,7 @@
11857
11865
  "type":"structure",
11858
11866
  "members":{
11859
11867
  "TrafficMirrorSessionIds":{
11860
- "shape":"ValueStringList",
11868
+ "shape":"TrafficMirrorSessionIdList",
11861
11869
  "locationName":"TrafficMirrorSessionId"
11862
11870
  },
11863
11871
  "DryRun":{"shape":"Boolean"},
@@ -11886,7 +11894,7 @@
11886
11894
  "type":"structure",
11887
11895
  "members":{
11888
11896
  "TrafficMirrorTargetIds":{
11889
- "shape":"ValueStringList",
11897
+ "shape":"TrafficMirrorTargetIdList",
11890
11898
  "locationName":"TrafficMirrorTargetId"
11891
11899
  },
11892
11900
  "DryRun":{"shape":"Boolean"},
@@ -12297,7 +12305,7 @@
12297
12305
  "type":"structure",
12298
12306
  "members":{
12299
12307
  "DryRun":{"shape":"Boolean"},
12300
- "ConnectionNotificationId":{"shape":"String"},
12308
+ "ConnectionNotificationId":{"shape":"ConnectionNotificationId"},
12301
12309
  "Filters":{
12302
12310
  "shape":"FilterList",
12303
12311
  "locationName":"Filter"
@@ -12349,7 +12357,7 @@
12349
12357
  "members":{
12350
12358
  "DryRun":{"shape":"Boolean"},
12351
12359
  "ServiceIds":{
12352
- "shape":"ValueStringList",
12360
+ "shape":"VpcEndpointServiceIdList",
12353
12361
  "locationName":"ServiceId"
12354
12362
  },
12355
12363
  "Filters":{
@@ -12378,7 +12386,7 @@
12378
12386
  "required":["ServiceId"],
12379
12387
  "members":{
12380
12388
  "DryRun":{"shape":"Boolean"},
12381
- "ServiceId":{"shape":"String"},
12389
+ "ServiceId":{"shape":"VpcEndpointServiceId"},
12382
12390
  "Filters":{
12383
12391
  "shape":"FilterList",
12384
12392
  "locationName":"Filter"
@@ -12438,7 +12446,7 @@
12438
12446
  "members":{
12439
12447
  "DryRun":{"shape":"Boolean"},
12440
12448
  "VpcEndpointIds":{
12441
- "shape":"ValueStringList",
12449
+ "shape":"VpcEndpointIdList",
12442
12450
  "locationName":"VpcEndpointId"
12443
12451
  },
12444
12452
  "Filters":{
@@ -12479,7 +12487,7 @@
12479
12487
  "locationName":"dryRun"
12480
12488
  },
12481
12489
  "VpcPeeringConnectionIds":{
12482
- "shape":"ValueStringList",
12490
+ "shape":"VpcPeeringConnectionIdList",
12483
12491
  "locationName":"VpcPeeringConnectionId"
12484
12492
  },
12485
12493
  "NextToken":{"shape":"String"},
@@ -12745,7 +12753,7 @@
12745
12753
  "DhcpOptionsIdStringList":{
12746
12754
  "type":"list",
12747
12755
  "member":{
12748
- "shape":"String",
12756
+ "shape":"DhcpOptionsId",
12749
12757
  "locationName":"DhcpOptionsId"
12750
12758
  }
12751
12759
  },
@@ -12933,8 +12941,8 @@
12933
12941
  "TransitGatewayAttachmentId"
12934
12942
  ],
12935
12943
  "members":{
12936
- "TransitGatewayRouteTableId":{"shape":"String"},
12937
- "TransitGatewayAttachmentId":{"shape":"String"},
12944
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
12945
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
12938
12946
  "DryRun":{"shape":"Boolean"}
12939
12947
  }
12940
12948
  },
@@ -12955,7 +12963,8 @@
12955
12963
  ],
12956
12964
  "members":{
12957
12965
  "GatewayId":{"shape":"VpnGatewayId"},
12958
- "RouteTableId":{"shape":"RouteTableId"}
12966
+ "RouteTableId":{"shape":"RouteTableId"},
12967
+ "DryRun":{"shape":"Boolean"}
12959
12968
  }
12960
12969
  },
12961
12970
  "DisableVpcClassicLinkDnsSupportRequest":{
@@ -13036,7 +13045,7 @@
13036
13045
  "type":"structure",
13037
13046
  "required":["AssociationId"],
13038
13047
  "members":{
13039
- "AssociationId":{"shape":"String"}
13048
+ "AssociationId":{"shape":"IamInstanceProfileAssociationId"}
13040
13049
  }
13041
13050
  },
13042
13051
  "DisassociateIamInstanceProfileResult":{
@@ -13088,8 +13097,8 @@
13088
13097
  "DisassociateTransitGatewayMulticastDomainRequest":{
13089
13098
  "type":"structure",
13090
13099
  "members":{
13091
- "TransitGatewayMulticastDomainId":{"shape":"String"},
13092
- "TransitGatewayAttachmentId":{"shape":"String"},
13100
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
13101
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
13093
13102
  "SubnetIds":{"shape":"ValueStringList"},
13094
13103
  "DryRun":{"shape":"Boolean"}
13095
13104
  }
@@ -13110,8 +13119,8 @@
13110
13119
  "TransitGatewayAttachmentId"
13111
13120
  ],
13112
13121
  "members":{
13113
- "TransitGatewayRouteTableId":{"shape":"String"},
13114
- "TransitGatewayAttachmentId":{"shape":"String"},
13122
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
13123
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
13115
13124
  "DryRun":{"shape":"Boolean"}
13116
13125
  }
13117
13126
  },
@@ -13471,10 +13480,11 @@
13471
13480
  }
13472
13481
  }
13473
13482
  },
13483
+ "ElasticGpuId":{"type":"string"},
13474
13484
  "ElasticGpuIdSet":{
13475
13485
  "type":"list",
13476
13486
  "member":{
13477
- "shape":"String",
13487
+ "shape":"ElasticGpuId",
13478
13488
  "locationName":"item"
13479
13489
  }
13480
13490
  },
@@ -13784,8 +13794,8 @@
13784
13794
  "TransitGatewayAttachmentId"
13785
13795
  ],
13786
13796
  "members":{
13787
- "TransitGatewayRouteTableId":{"shape":"String"},
13788
- "TransitGatewayAttachmentId":{"shape":"String"},
13797
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
13798
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
13789
13799
  "DryRun":{"shape":"Boolean"}
13790
13800
  }
13791
13801
  },
@@ -13806,7 +13816,8 @@
13806
13816
  ],
13807
13817
  "members":{
13808
13818
  "GatewayId":{"shape":"VpnGatewayId"},
13809
- "RouteTableId":{"shape":"RouteTableId"}
13819
+ "RouteTableId":{"shape":"RouteTableId"},
13820
+ "DryRun":{"shape":"Boolean"}
13810
13821
  }
13811
13822
  },
13812
13823
  "EnableVolumeIORequest":{
@@ -14065,10 +14076,11 @@
14065
14076
  }
14066
14077
  }
14067
14078
  },
14079
+ "ExportImageTaskId":{"type":"string"},
14068
14080
  "ExportImageTaskIdList":{
14069
14081
  "type":"list",
14070
14082
  "member":{
14071
- "shape":"String",
14083
+ "shape":"ExportImageTaskId",
14072
14084
  "locationName":"ExportImageTaskId"
14073
14085
  }
14074
14086
  },
@@ -14206,7 +14218,7 @@
14206
14218
  "S3Bucket"
14207
14219
  ],
14208
14220
  "members":{
14209
- "TransitGatewayRouteTableId":{"shape":"String"},
14221
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
14210
14222
  "Filters":{
14211
14223
  "shape":"FilterList",
14212
14224
  "locationName":"Filter"
@@ -14477,7 +14489,7 @@
14477
14489
  "members":{
14478
14490
  "InstanceType":{"shape":"InstanceType"},
14479
14491
  "MaxPrice":{"shape":"String"},
14480
- "SubnetId":{"shape":"String"},
14492
+ "SubnetId":{"shape":"SubnetId"},
14481
14493
  "AvailabilityZone":{"shape":"String"},
14482
14494
  "WeightedCapacity":{"shape":"Double"},
14483
14495
  "Priority":{"shape":"Double"},
@@ -14504,7 +14516,7 @@
14504
14516
  "FleetLaunchTemplateSpecificationRequest":{
14505
14517
  "type":"structure",
14506
14518
  "members":{
14507
- "LaunchTemplateId":{"shape":"String"},
14519
+ "LaunchTemplateId":{"shape":"LaunchTemplateId"},
14508
14520
  "LaunchTemplateName":{"shape":"LaunchTemplateName"},
14509
14521
  "Version":{"shape":"String"}
14510
14522
  }
@@ -14601,6 +14613,21 @@
14601
14613
  }
14602
14614
  }
14603
14615
  },
14616
+ "FlowLogIdList":{
14617
+ "type":"list",
14618
+ "member":{
14619
+ "shape":"VpcFlowLogId",
14620
+ "locationName":"item"
14621
+ }
14622
+ },
14623
+ "FlowLogResourceId":{"type":"string"},
14624
+ "FlowLogResourceIds":{
14625
+ "type":"list",
14626
+ "member":{
14627
+ "shape":"FlowLogResourceId",
14628
+ "locationName":"item"
14629
+ }
14630
+ },
14604
14631
  "FlowLogSet":{
14605
14632
  "type":"list",
14606
14633
  "member":{
@@ -14760,7 +14787,7 @@
14760
14787
  "FpgaImageIdList":{
14761
14788
  "type":"list",
14762
14789
  "member":{
14763
- "shape":"String",
14790
+ "shape":"FpgaImageId",
14764
14791
  "locationName":"item"
14765
14792
  }
14766
14793
  },
@@ -14815,7 +14842,7 @@
14815
14842
  "type":"structure",
14816
14843
  "required":["PoolId"],
14817
14844
  "members":{
14818
- "PoolId":{"shape":"String"},
14845
+ "PoolId":{"shape":"Ipv6PoolEc2Id"},
14819
14846
  "NextToken":{"shape":"NextToken"},
14820
14847
  "MaxResults":{"shape":"Ipv6PoolMaxResults"},
14821
14848
  "DryRun":{"shape":"Boolean"}
@@ -14886,7 +14913,7 @@
14886
14913
  "type":"structure",
14887
14914
  "required":["PoolId"],
14888
14915
  "members":{
14889
- "PoolId":{"shape":"String"},
14916
+ "PoolId":{"shape":"CoipPoolId"},
14890
14917
  "Filters":{
14891
14918
  "shape":"FilterList",
14892
14919
  "locationName":"Filter"
@@ -15148,7 +15175,7 @@
15148
15175
  "type":"structure",
15149
15176
  "required":["TransitGatewayAttachmentId"],
15150
15177
  "members":{
15151
- "TransitGatewayAttachmentId":{"shape":"String"},
15178
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
15152
15179
  "Filters":{
15153
15180
  "shape":"FilterList",
15154
15181
  "locationName":"Filter"
@@ -15174,7 +15201,7 @@
15174
15201
  "GetTransitGatewayMulticastDomainAssociationsRequest":{
15175
15202
  "type":"structure",
15176
15203
  "members":{
15177
- "TransitGatewayMulticastDomainId":{"shape":"String"},
15204
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
15178
15205
  "Filters":{
15179
15206
  "shape":"FilterList",
15180
15207
  "locationName":"Filter"
@@ -15201,7 +15228,7 @@
15201
15228
  "type":"structure",
15202
15229
  "required":["TransitGatewayRouteTableId"],
15203
15230
  "members":{
15204
- "TransitGatewayRouteTableId":{"shape":"String"},
15231
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
15205
15232
  "Filters":{
15206
15233
  "shape":"FilterList",
15207
15234
  "locationName":"Filter"
@@ -15228,7 +15255,7 @@
15228
15255
  "type":"structure",
15229
15256
  "required":["TransitGatewayRouteTableId"],
15230
15257
  "members":{
15231
- "TransitGatewayRouteTableId":{"shape":"String"},
15258
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
15232
15259
  "Filters":{
15233
15260
  "shape":"FilterList",
15234
15261
  "locationName":"Filter"
@@ -15342,14 +15369,14 @@
15342
15369
  "GroupIds":{
15343
15370
  "type":"list",
15344
15371
  "member":{
15345
- "shape":"String",
15372
+ "shape":"SecurityGroupId",
15346
15373
  "locationName":"item"
15347
15374
  }
15348
15375
  },
15349
15376
  "GroupNameStringList":{
15350
15377
  "type":"list",
15351
15378
  "member":{
15352
- "shape":"String",
15379
+ "shape":"SecurityGroupName",
15353
15380
  "locationName":"GroupName"
15354
15381
  }
15355
15382
  },
@@ -15654,10 +15681,11 @@
15654
15681
  }
15655
15682
  }
15656
15683
  },
15684
+ "HostReservationId":{"type":"string"},
15657
15685
  "HostReservationIdSet":{
15658
15686
  "type":"list",
15659
15687
  "member":{
15660
- "shape":"String",
15688
+ "shape":"HostReservationId",
15661
15689
  "locationName":"item"
15662
15690
  }
15663
15691
  },
@@ -15756,6 +15784,7 @@
15756
15784
  }
15757
15785
  }
15758
15786
  },
15787
+ "IamInstanceProfileAssociationId":{"type":"string"},
15759
15788
  "IamInstanceProfileAssociationSet":{
15760
15789
  "type":"list",
15761
15790
  "member":{
@@ -15986,7 +16015,7 @@
15986
16015
  "Description":{"shape":"String"},
15987
16016
  "DeviceName":{"shape":"String"},
15988
16017
  "Format":{"shape":"String"},
15989
- "SnapshotId":{"shape":"String"},
16018
+ "SnapshotId":{"shape":"SnapshotId"},
15990
16019
  "Url":{"shape":"String"},
15991
16020
  "UserBucket":{"shape":"UserBucket"}
15992
16021
  }
@@ -16002,7 +16031,7 @@
16002
16031
  "ImageIdStringList":{
16003
16032
  "type":"list",
16004
16033
  "member":{
16005
- "shape":"String",
16034
+ "shape":"ImageId",
16006
16035
  "locationName":"ImageId"
16007
16036
  }
16008
16037
  },
@@ -16230,6 +16259,7 @@
16230
16259
  }
16231
16260
  }
16232
16261
  },
16262
+ "ImportImageTaskId":{"type":"string"},
16233
16263
  "ImportImageTaskList":{
16234
16264
  "type":"list",
16235
16265
  "member":{
@@ -16394,7 +16424,7 @@
16394
16424
  "locationName":"dryRun"
16395
16425
  },
16396
16426
  "KeyName":{
16397
- "shape":"KeyPairName",
16427
+ "shape":"String",
16398
16428
  "locationName":"keyName"
16399
16429
  },
16400
16430
  "PublicKeyMaterial":{
@@ -16467,6 +16497,14 @@
16467
16497
  }
16468
16498
  }
16469
16499
  },
16500
+ "ImportSnapshotTaskId":{"type":"string"},
16501
+ "ImportSnapshotTaskIdList":{
16502
+ "type":"list",
16503
+ "member":{
16504
+ "shape":"ImportSnapshotTaskId",
16505
+ "locationName":"ImportTaskId"
16506
+ }
16507
+ },
16470
16508
  "ImportSnapshotTaskList":{
16471
16509
  "type":"list",
16472
16510
  "member":{
@@ -16478,7 +16516,7 @@
16478
16516
  "ImportTaskIdList":{
16479
16517
  "type":"list",
16480
16518
  "member":{
16481
- "shape":"String",
16519
+ "shape":"ImportImageTaskId",
16482
16520
  "locationName":"ImportTaskId"
16483
16521
  }
16484
16522
  },
@@ -16972,7 +17010,7 @@
16972
17010
  "InstanceCreditSpecificationRequest":{
16973
17011
  "type":"structure",
16974
17012
  "members":{
16975
- "InstanceId":{"shape":"String"},
17013
+ "InstanceId":{"shape":"InstanceId"},
16976
17014
  "CpuCredits":{"shape":"String"}
16977
17015
  }
16978
17016
  },
@@ -17021,7 +17059,7 @@
17021
17059
  "InstanceIdStringList":{
17022
17060
  "type":"list",
17023
17061
  "member":{
17024
- "shape":"String",
17062
+ "shape":"InstanceId",
17025
17063
  "locationName":"InstanceId"
17026
17064
  }
17027
17065
  },
@@ -17379,7 +17417,7 @@
17379
17417
  "InstanceSpecification":{
17380
17418
  "type":"structure",
17381
17419
  "members":{
17382
- "InstanceId":{"shape":"String"},
17420
+ "InstanceId":{"shape":"InstanceId"},
17383
17421
  "ExcludeBootVolume":{"shape":"Boolean"}
17384
17422
  }
17385
17423
  },
@@ -18039,6 +18077,13 @@
18039
18077
  }
18040
18078
  },
18041
18079
  "InternetGatewayId":{"type":"string"},
18080
+ "InternetGatewayIdList":{
18081
+ "type":"list",
18082
+ "member":{
18083
+ "shape":"InternetGatewayId",
18084
+ "locationName":"item"
18085
+ }
18086
+ },
18042
18087
  "InternetGatewayList":{
18043
18088
  "type":"list",
18044
18089
  "member":{
@@ -18113,6 +18158,7 @@
18113
18158
  "locationName":"item"
18114
18159
  }
18115
18160
  },
18161
+ "Ipv4PoolEc2Id":{"type":"string"},
18116
18162
  "Ipv6Address":{"type":"string"},
18117
18163
  "Ipv6AddressList":{
18118
18164
  "type":"list",
@@ -18179,6 +18225,14 @@
18179
18225
  }
18180
18226
  }
18181
18227
  },
18228
+ "Ipv6PoolEc2Id":{"type":"string"},
18229
+ "Ipv6PoolIdList":{
18230
+ "type":"list",
18231
+ "member":{
18232
+ "shape":"Ipv6PoolEc2Id",
18233
+ "locationName":"item"
18234
+ }
18235
+ },
18182
18236
  "Ipv6PoolMaxResults":{
18183
18237
  "type":"integer",
18184
18238
  "max":1000,
@@ -18222,7 +18276,7 @@
18222
18276
  "KeyNameStringList":{
18223
18277
  "type":"list",
18224
18278
  "member":{
18225
- "shape":"String",
18279
+ "shape":"KeyPairName",
18226
18280
  "locationName":"KeyName"
18227
18281
  }
18228
18282
  },
@@ -18247,10 +18301,11 @@
18247
18301
  }
18248
18302
  }
18249
18303
  },
18304
+ "KeyPairId":{"type":"string"},
18250
18305
  "KeyPairIdStringList":{
18251
18306
  "type":"list",
18252
18307
  "member":{
18253
- "shape":"String",
18308
+ "shape":"KeyPairId",
18254
18309
  "locationName":"KeyPairId"
18255
18310
  }
18256
18311
  },
@@ -18562,11 +18617,11 @@
18562
18617
  "locationName":"iops"
18563
18618
  },
18564
18619
  "KmsKeyId":{
18565
- "shape":"String",
18620
+ "shape":"KmsKeyId",
18566
18621
  "locationName":"kmsKeyId"
18567
18622
  },
18568
18623
  "SnapshotId":{
18569
- "shape":"String",
18624
+ "shape":"SnapshotId",
18570
18625
  "locationName":"snapshotId"
18571
18626
  },
18572
18627
  "VolumeSize":{
@@ -18586,7 +18641,7 @@
18586
18641
  "DeleteOnTermination":{"shape":"Boolean"},
18587
18642
  "Iops":{"shape":"Integer"},
18588
18643
  "KmsKeyId":{"shape":"String"},
18589
- "SnapshotId":{"shape":"String"},
18644
+ "SnapshotId":{"shape":"SnapshotId"},
18590
18645
  "VolumeSize":{"shape":"Integer"},
18591
18646
  "VolumeType":{"shape":"VolumeType"}
18592
18647
  }
@@ -18684,6 +18739,13 @@
18684
18739
  }
18685
18740
  },
18686
18741
  "LaunchTemplateId":{"type":"string"},
18742
+ "LaunchTemplateIdStringList":{
18743
+ "type":"list",
18744
+ "member":{
18745
+ "shape":"LaunchTemplateId",
18746
+ "locationName":"item"
18747
+ }
18748
+ },
18687
18749
  "LaunchTemplateInstanceMarketOptions":{
18688
18750
  "type":"structure",
18689
18751
  "members":{
@@ -18783,7 +18845,7 @@
18783
18845
  "locationName":"ipv6AddressesSet"
18784
18846
  },
18785
18847
  "NetworkInterfaceId":{
18786
- "shape":"String",
18848
+ "shape":"NetworkInterfaceId",
18787
18849
  "locationName":"networkInterfaceId"
18788
18850
  },
18789
18851
  "PrivateIpAddress":{
@@ -18799,7 +18861,7 @@
18799
18861
  "locationName":"secondaryPrivateIpAddressCount"
18800
18862
  },
18801
18863
  "SubnetId":{
18802
- "shape":"String",
18864
+ "shape":"SubnetId",
18803
18865
  "locationName":"subnetId"
18804
18866
  }
18805
18867
  }
@@ -18825,11 +18887,11 @@
18825
18887
  "InterfaceType":{"shape":"String"},
18826
18888
  "Ipv6AddressCount":{"shape":"Integer"},
18827
18889
  "Ipv6Addresses":{"shape":"InstanceIpv6AddressListRequest"},
18828
- "NetworkInterfaceId":{"shape":"String"},
18890
+ "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
18829
18891
  "PrivateIpAddress":{"shape":"String"},
18830
18892
  "PrivateIpAddresses":{"shape":"PrivateIpAddressSpecificationList"},
18831
18893
  "SecondaryPrivateIpAddressCount":{"shape":"Integer"},
18832
- "SubnetId":{"shape":"String"}
18894
+ "SubnetId":{"shape":"SubnetId"}
18833
18895
  }
18834
18896
  },
18835
18897
  "LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList":{
@@ -18959,8 +19021,8 @@
18959
19021
  "members":{
18960
19022
  "AvailabilityZone":{"shape":"String"},
18961
19023
  "Affinity":{"shape":"String"},
18962
- "GroupName":{"shape":"String"},
18963
- "HostId":{"shape":"String"},
19024
+ "GroupName":{"shape":"PlacementGroupName"},
19025
+ "HostId":{"shape":"DedicatedHostId"},
18964
19026
  "Tenancy":{"shape":"Tenancy"},
18965
19027
  "SpreadDomain":{"shape":"String"},
18966
19028
  "HostResourceGroupArn":{"shape":"String"},
@@ -18977,7 +19039,7 @@
18977
19039
  "LaunchTemplateSpecification":{
18978
19040
  "type":"structure",
18979
19041
  "members":{
18980
- "LaunchTemplateId":{"shape":"String"},
19042
+ "LaunchTemplateId":{"shape":"LaunchTemplateId"},
18981
19043
  "LaunchTemplateName":{"shape":"String"},
18982
19044
  "Version":{"shape":"String"}
18983
19045
  }
@@ -19218,7 +19280,7 @@
19218
19280
  "type":"structure",
19219
19281
  "members":{
19220
19282
  "LocalGatewayId":{
19221
- "shape":"String",
19283
+ "shape":"LocalGatewayId",
19222
19284
  "locationName":"localGatewayId"
19223
19285
  },
19224
19286
  "OutpostArn":{
@@ -19239,10 +19301,11 @@
19239
19301
  }
19240
19302
  }
19241
19303
  },
19304
+ "LocalGatewayId":{"type":"string"},
19242
19305
  "LocalGatewayIdSet":{
19243
19306
  "type":"list",
19244
19307
  "member":{
19245
- "shape":"String",
19308
+ "shape":"LocalGatewayId",
19246
19309
  "locationName":"item"
19247
19310
  }
19248
19311
  },
@@ -19259,7 +19322,7 @@
19259
19322
  "locationName":"destinationCidrBlock"
19260
19323
  },
19261
19324
  "LocalGatewayVirtualInterfaceGroupId":{
19262
- "shape":"String",
19325
+ "shape":"LocalGatewayVirtualInterfaceGroupId",
19263
19326
  "locationName":"localGatewayVirtualInterfaceGroupId"
19264
19327
  },
19265
19328
  "Type":{
@@ -19271,7 +19334,7 @@
19271
19334
  "locationName":"state"
19272
19335
  },
19273
19336
  "LocalGatewayRouteTableId":{
19274
- "shape":"String",
19337
+ "shape":"LocalGatewayRoutetableId",
19275
19338
  "locationName":"localGatewayRouteTableId"
19276
19339
  }
19277
19340
  }
@@ -19301,7 +19364,7 @@
19301
19364
  "locationName":"localGatewayRouteTableId"
19302
19365
  },
19303
19366
  "LocalGatewayId":{
19304
- "shape":"String",
19367
+ "shape":"LocalGatewayId",
19305
19368
  "locationName":"localGatewayId"
19306
19369
  },
19307
19370
  "OutpostArn":{
@@ -19321,7 +19384,7 @@
19321
19384
  "LocalGatewayRouteTableIdSet":{
19322
19385
  "type":"list",
19323
19386
  "member":{
19324
- "shape":"String",
19387
+ "shape":"LocalGatewayRoutetableId",
19325
19388
  "locationName":"item"
19326
19389
  }
19327
19390
  },
@@ -19336,11 +19399,11 @@
19336
19399
  "type":"structure",
19337
19400
  "members":{
19338
19401
  "LocalGatewayRouteTableVirtualInterfaceGroupAssociationId":{
19339
- "shape":"String",
19402
+ "shape":"LocalGatewayRouteTableVirtualInterfaceGroupAssociationId",
19340
19403
  "locationName":"localGatewayRouteTableVirtualInterfaceGroupAssociationId"
19341
19404
  },
19342
19405
  "LocalGatewayVirtualInterfaceGroupId":{
19343
- "shape":"String",
19406
+ "shape":"LocalGatewayVirtualInterfaceGroupId",
19344
19407
  "locationName":"localGatewayVirtualInterfaceGroupId"
19345
19408
  },
19346
19409
  "LocalGatewayId":{
@@ -19348,7 +19411,7 @@
19348
19411
  "locationName":"localGatewayId"
19349
19412
  },
19350
19413
  "LocalGatewayRouteTableId":{
19351
- "shape":"String",
19414
+ "shape":"LocalGatewayId",
19352
19415
  "locationName":"localGatewayRouteTableId"
19353
19416
  },
19354
19417
  "State":{
@@ -19361,10 +19424,11 @@
19361
19424
  }
19362
19425
  }
19363
19426
  },
19427
+ "LocalGatewayRouteTableVirtualInterfaceGroupAssociationId":{"type":"string"},
19364
19428
  "LocalGatewayRouteTableVirtualInterfaceGroupAssociationIdSet":{
19365
19429
  "type":"list",
19366
19430
  "member":{
19367
- "shape":"String",
19431
+ "shape":"LocalGatewayRouteTableVirtualInterfaceGroupAssociationId",
19368
19432
  "locationName":"item"
19369
19433
  }
19370
19434
  },
@@ -19379,7 +19443,7 @@
19379
19443
  "type":"structure",
19380
19444
  "members":{
19381
19445
  "LocalGatewayRouteTableVpcAssociationId":{
19382
- "shape":"String",
19446
+ "shape":"LocalGatewayRouteTableVpcAssociationId",
19383
19447
  "locationName":"localGatewayRouteTableVpcAssociationId"
19384
19448
  },
19385
19449
  "LocalGatewayRouteTableId":{
@@ -19404,10 +19468,11 @@
19404
19468
  }
19405
19469
  }
19406
19470
  },
19471
+ "LocalGatewayRouteTableVpcAssociationId":{"type":"string"},
19407
19472
  "LocalGatewayRouteTableVpcAssociationIdSet":{
19408
19473
  "type":"list",
19409
19474
  "member":{
19410
- "shape":"String",
19475
+ "shape":"LocalGatewayRouteTableVpcAssociationId",
19411
19476
  "locationName":"item"
19412
19477
  }
19413
19478
  },
@@ -19425,6 +19490,7 @@
19425
19490
  "propagated"
19426
19491
  ]
19427
19492
  },
19493
+ "LocalGatewayRoutetableId":{"type":"string"},
19428
19494
  "LocalGatewaySet":{
19429
19495
  "type":"list",
19430
19496
  "member":{
@@ -19436,7 +19502,7 @@
19436
19502
  "type":"structure",
19437
19503
  "members":{
19438
19504
  "LocalGatewayVirtualInterfaceId":{
19439
- "shape":"String",
19505
+ "shape":"LocalGatewayVirtualInterfaceId",
19440
19506
  "locationName":"localGatewayVirtualInterfaceId"
19441
19507
  },
19442
19508
  "LocalGatewayId":{
@@ -19473,7 +19539,7 @@
19473
19539
  "type":"structure",
19474
19540
  "members":{
19475
19541
  "LocalGatewayVirtualInterfaceGroupId":{
19476
- "shape":"String",
19542
+ "shape":"LocalGatewayVirtualInterfaceGroupId",
19477
19543
  "locationName":"localGatewayVirtualInterfaceGroupId"
19478
19544
  },
19479
19545
  "LocalGatewayVirtualInterfaceIds":{
@@ -19490,10 +19556,11 @@
19490
19556
  }
19491
19557
  }
19492
19558
  },
19559
+ "LocalGatewayVirtualInterfaceGroupId":{"type":"string"},
19493
19560
  "LocalGatewayVirtualInterfaceGroupIdSet":{
19494
19561
  "type":"list",
19495
19562
  "member":{
19496
- "shape":"String",
19563
+ "shape":"LocalGatewayVirtualInterfaceGroupId",
19497
19564
  "locationName":"item"
19498
19565
  }
19499
19566
  },
@@ -19504,10 +19571,11 @@
19504
19571
  "locationName":"item"
19505
19572
  }
19506
19573
  },
19574
+ "LocalGatewayVirtualInterfaceId":{"type":"string"},
19507
19575
  "LocalGatewayVirtualInterfaceIdSet":{
19508
19576
  "type":"list",
19509
19577
  "member":{
19510
- "shape":"String",
19578
+ "shape":"LocalGatewayVirtualInterfaceId",
19511
19579
  "locationName":"item"
19512
19580
  }
19513
19581
  },
@@ -19929,7 +19997,7 @@
19929
19997
  "type":"structure",
19930
19998
  "required":["InstanceId"],
19931
19999
  "members":{
19932
- "InstanceId":{"shape":"String"},
20000
+ "InstanceId":{"shape":"InstanceId"},
19933
20001
  "HttpTokens":{"shape":"HttpTokensState"},
19934
20002
  "HttpPutResponseHopLimit":{"shape":"Integer"},
19935
20003
  "HttpEndpoint":{"shape":"InstanceMetadataEndpointState"},
@@ -20213,9 +20281,9 @@
20213
20281
  "type":"structure",
20214
20282
  "required":["TransitGatewayAttachmentId"],
20215
20283
  "members":{
20216
- "TransitGatewayAttachmentId":{"shape":"String"},
20217
- "AddSubnetIds":{"shape":"ValueStringList"},
20218
- "RemoveSubnetIds":{"shape":"ValueStringList"},
20284
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
20285
+ "AddSubnetIds":{"shape":"TransitGatewaySubnetIdList"},
20286
+ "RemoveSubnetIds":{"shape":"TransitGatewaySubnetIdList"},
20219
20287
  "Options":{"shape":"ModifyTransitGatewayVpcAttachmentRequestOptions"},
20220
20288
  "DryRun":{"shape":"Boolean"}
20221
20289
  }
@@ -20308,27 +20376,27 @@
20308
20376
  "ResetPolicy":{"shape":"Boolean"},
20309
20377
  "PolicyDocument":{"shape":"String"},
20310
20378
  "AddRouteTableIds":{
20311
- "shape":"ValueStringList",
20379
+ "shape":"VpcEndpointRouteTableIdList",
20312
20380
  "locationName":"AddRouteTableId"
20313
20381
  },
20314
20382
  "RemoveRouteTableIds":{
20315
- "shape":"ValueStringList",
20383
+ "shape":"VpcEndpointRouteTableIdList",
20316
20384
  "locationName":"RemoveRouteTableId"
20317
20385
  },
20318
20386
  "AddSubnetIds":{
20319
- "shape":"ValueStringList",
20387
+ "shape":"VpcEndpointSubnetIdList",
20320
20388
  "locationName":"AddSubnetId"
20321
20389
  },
20322
20390
  "RemoveSubnetIds":{
20323
- "shape":"ValueStringList",
20391
+ "shape":"VpcEndpointSubnetIdList",
20324
20392
  "locationName":"RemoveSubnetId"
20325
20393
  },
20326
20394
  "AddSecurityGroupIds":{
20327
- "shape":"ValueStringList",
20395
+ "shape":"VpcEndpointSecurityGroupIdList",
20328
20396
  "locationName":"AddSecurityGroupId"
20329
20397
  },
20330
20398
  "RemoveSecurityGroupIds":{
20331
- "shape":"ValueStringList",
20399
+ "shape":"VpcEndpointSecurityGroupIdList",
20332
20400
  "locationName":"RemoveSecurityGroupId"
20333
20401
  },
20334
20402
  "PrivateDnsEnabled":{"shape":"Boolean"}
@@ -20348,7 +20416,7 @@
20348
20416
  "required":["ServiceId"],
20349
20417
  "members":{
20350
20418
  "DryRun":{"shape":"Boolean"},
20351
- "ServiceId":{"shape":"ServiceId"},
20419
+ "ServiceId":{"shape":"VpcEndpointServiceId"},
20352
20420
  "PrivateDnsName":{"shape":"String"},
20353
20421
  "RemovePrivateDnsName":{"shape":"Boolean"},
20354
20422
  "AcceptanceRequired":{"shape":"Boolean"},
@@ -20376,7 +20444,7 @@
20376
20444
  "required":["ServiceId"],
20377
20445
  "members":{
20378
20446
  "DryRun":{"shape":"Boolean"},
20379
- "ServiceId":{"shape":"String"},
20447
+ "ServiceId":{"shape":"VpcEndpointServiceId"},
20380
20448
  "AddAllowedPrincipals":{"shape":"ValueStringList"},
20381
20449
  "RemoveAllowedPrincipals":{"shape":"ValueStringList"}
20382
20450
  }
@@ -20719,6 +20787,13 @@
20719
20787
  }
20720
20788
  },
20721
20789
  "NatGatewayId":{"type":"string"},
20790
+ "NatGatewayIdStringList":{
20791
+ "type":"list",
20792
+ "member":{
20793
+ "shape":"NatGatewayId",
20794
+ "locationName":"item"
20795
+ }
20796
+ },
20722
20797
  "NatGatewayList":{
20723
20798
  "type":"list",
20724
20799
  "member":{
@@ -20839,6 +20914,13 @@
20839
20914
  }
20840
20915
  },
20841
20916
  "NetworkAclId":{"type":"string"},
20917
+ "NetworkAclIdStringList":{
20918
+ "type":"list",
20919
+ "member":{
20920
+ "shape":"NetworkAclId",
20921
+ "locationName":"item"
20922
+ }
20923
+ },
20842
20924
  "NetworkAclList":{
20843
20925
  "type":"list",
20844
20926
  "member":{
@@ -21026,7 +21108,7 @@
21026
21108
  "type":"structure",
21027
21109
  "members":{
21028
21110
  "AttachmentId":{
21029
- "shape":"String",
21111
+ "shape":"NetworkInterfaceAttachmentId",
21030
21112
  "locationName":"attachmentId"
21031
21113
  },
21032
21114
  "DeleteOnTermination":{
@@ -21053,7 +21135,7 @@
21053
21135
  "NetworkInterfaceIdList":{
21054
21136
  "type":"list",
21055
21137
  "member":{
21056
- "shape":"String",
21138
+ "shape":"NetworkInterfaceId",
21057
21139
  "locationName":"item"
21058
21140
  }
21059
21141
  },
@@ -21109,9 +21191,10 @@
21109
21191
  }
21110
21192
  }
21111
21193
  },
21194
+ "NetworkInterfacePermissionId":{"type":"string"},
21112
21195
  "NetworkInterfacePermissionIdList":{
21113
21196
  "type":"list",
21114
- "member":{"shape":"String"}
21197
+ "member":{"shape":"NetworkInterfacePermissionId"}
21115
21198
  },
21116
21199
  "NetworkInterfacePermissionList":{
21117
21200
  "type":"list",
@@ -21620,10 +21703,11 @@
21620
21703
  }
21621
21704
  }
21622
21705
  },
21706
+ "PlacementGroupId":{"type":"string"},
21623
21707
  "PlacementGroupIdStringList":{
21624
21708
  "type":"list",
21625
21709
  "member":{
21626
- "shape":"String",
21710
+ "shape":"PlacementGroupId",
21627
21711
  "locationName":"GroupId"
21628
21712
  }
21629
21713
  },
@@ -21670,7 +21754,7 @@
21670
21754
  },
21671
21755
  "PlacementGroupStringList":{
21672
21756
  "type":"list",
21673
- "member":{"shape":"String"}
21757
+ "member":{"shape":"PlacementGroupName"}
21674
21758
  },
21675
21759
  "PlacementResponse":{
21676
21760
  "type":"structure",
@@ -21771,6 +21855,14 @@
21771
21855
  "locationName":"item"
21772
21856
  }
21773
21857
  },
21858
+ "PrefixListResourceId":{"type":"string"},
21859
+ "PrefixListResourceIdStringList":{
21860
+ "type":"list",
21861
+ "member":{
21862
+ "shape":"PrefixListResourceId",
21863
+ "locationName":"item"
21864
+ }
21865
+ },
21774
21866
  "PrefixListSet":{
21775
21867
  "type":"list",
21776
21868
  "member":{
@@ -22085,6 +22177,13 @@
22085
22177
  }
22086
22178
  }
22087
22179
  },
22180
+ "PublicIpv4PoolIdStringList":{
22181
+ "type":"list",
22182
+ "member":{
22183
+ "shape":"Ipv4PoolEc2Id",
22184
+ "locationName":"item"
22185
+ }
22186
+ },
22088
22187
  "PublicIpv4PoolRange":{
22089
22188
  "type":"structure",
22090
22189
  "members":{
@@ -22223,7 +22322,7 @@
22223
22322
  ],
22224
22323
  "members":{
22225
22324
  "InstanceCount":{"shape":"Integer"},
22226
- "ReservedInstancesOfferingId":{"shape":"String"},
22325
+ "ReservedInstancesOfferingId":{"shape":"ReservedInstancesOfferingId"},
22227
22326
  "DryRun":{
22228
22327
  "shape":"Boolean",
22229
22328
  "locationName":"dryRun"
@@ -22435,9 +22534,9 @@
22435
22534
  "RegisterTransitGatewayMulticastGroupMembersRequest":{
22436
22535
  "type":"structure",
22437
22536
  "members":{
22438
- "TransitGatewayMulticastDomainId":{"shape":"String"},
22537
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
22439
22538
  "GroupIpAddress":{"shape":"String"},
22440
- "NetworkInterfaceIds":{"shape":"ValueStringList"},
22539
+ "NetworkInterfaceIds":{"shape":"TransitGatewayNetworkInterfaceIdList"},
22441
22540
  "DryRun":{"shape":"Boolean"}
22442
22541
  }
22443
22542
  },
@@ -22453,9 +22552,9 @@
22453
22552
  "RegisterTransitGatewayMulticastGroupSourcesRequest":{
22454
22553
  "type":"structure",
22455
22554
  "members":{
22456
- "TransitGatewayMulticastDomainId":{"shape":"String"},
22555
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
22457
22556
  "GroupIpAddress":{"shape":"String"},
22458
- "NetworkInterfaceIds":{"shape":"ValueStringList"},
22557
+ "NetworkInterfaceIds":{"shape":"TransitGatewayNetworkInterfaceIdList"},
22459
22558
  "DryRun":{"shape":"Boolean"}
22460
22559
  }
22461
22560
  },
@@ -22472,7 +22571,7 @@
22472
22571
  "type":"structure",
22473
22572
  "required":["TransitGatewayAttachmentId"],
22474
22573
  "members":{
22475
- "TransitGatewayAttachmentId":{"shape":"String"},
22574
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
22476
22575
  "DryRun":{"shape":"Boolean"}
22477
22576
  }
22478
22577
  },
@@ -22489,7 +22588,7 @@
22489
22588
  "type":"structure",
22490
22589
  "required":["TransitGatewayAttachmentId"],
22491
22590
  "members":{
22492
- "TransitGatewayAttachmentId":{"shape":"String"},
22591
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
22493
22592
  "DryRun":{"shape":"Boolean"}
22494
22593
  }
22495
22594
  },
@@ -22510,9 +22609,9 @@
22510
22609
  ],
22511
22610
  "members":{
22512
22611
  "DryRun":{"shape":"Boolean"},
22513
- "ServiceId":{"shape":"ServiceId"},
22612
+ "ServiceId":{"shape":"VpcEndpointServiceId"},
22514
22613
  "VpcEndpointIds":{
22515
- "shape":"ValueStringList",
22614
+ "shape":"VpcEndpointIdList",
22516
22615
  "locationName":"VpcEndpointId"
22517
22616
  }
22518
22617
  }
@@ -22592,7 +22691,7 @@
22592
22691
  ],
22593
22692
  "members":{
22594
22693
  "IamInstanceProfile":{"shape":"IamInstanceProfileSpecification"},
22595
- "AssociationId":{"shape":"String"}
22694
+ "AssociationId":{"shape":"IamInstanceProfileAssociationId"}
22596
22695
  }
22597
22696
  },
22598
22697
  "ReplaceIamInstanceProfileAssociationResult":{
@@ -22707,7 +22806,7 @@
22707
22806
  "locationName":"egressOnlyInternetGatewayId"
22708
22807
  },
22709
22808
  "GatewayId":{
22710
- "shape":"RouteTableGatewayId",
22809
+ "shape":"RouteGatewayId",
22711
22810
  "locationName":"gatewayId"
22712
22811
  },
22713
22812
  "InstanceId":{
@@ -22720,7 +22819,7 @@
22720
22819
  "locationName":"natGatewayId"
22721
22820
  },
22722
22821
  "TransitGatewayId":{"shape":"TransitGatewayId"},
22723
- "LocalGatewayId":{"shape":"String"},
22822
+ "LocalGatewayId":{"shape":"LocalGatewayId"},
22724
22823
  "NetworkInterfaceId":{
22725
22824
  "shape":"NetworkInterfaceId",
22726
22825
  "locationName":"networkInterfaceId"
@@ -22777,8 +22876,8 @@
22777
22876
  ],
22778
22877
  "members":{
22779
22878
  "DestinationCidrBlock":{"shape":"String"},
22780
- "TransitGatewayRouteTableId":{"shape":"String"},
22781
- "TransitGatewayAttachmentId":{"shape":"String"},
22879
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
22880
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
22782
22881
  "Blackhole":{"shape":"Boolean"},
22783
22882
  "DryRun":{"shape":"Boolean"}
22784
22883
  }
@@ -22854,7 +22953,7 @@
22854
22953
  "RequestHostIdList":{
22855
22954
  "type":"list",
22856
22955
  "member":{
22857
- "shape":"String",
22956
+ "shape":"DedicatedHostId",
22858
22957
  "locationName":"item"
22859
22958
  }
22860
22959
  },
@@ -22874,7 +22973,7 @@
22874
22973
  "RequestLaunchTemplateData":{
22875
22974
  "type":"structure",
22876
22975
  "members":{
22877
- "KernelId":{"shape":"String"},
22976
+ "KernelId":{"shape":"KernelId"},
22878
22977
  "EbsOptimized":{"shape":"Boolean"},
22879
22978
  "IamInstanceProfile":{"shape":"LaunchTemplateIamInstanceProfileSpecificationRequest"},
22880
22979
  "BlockDeviceMappings":{
@@ -22885,12 +22984,12 @@
22885
22984
  "shape":"LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList",
22886
22985
  "locationName":"NetworkInterface"
22887
22986
  },
22888
- "ImageId":{"shape":"String"},
22987
+ "ImageId":{"shape":"ImageId"},
22889
22988
  "InstanceType":{"shape":"InstanceType"},
22890
- "KeyName":{"shape":"String"},
22989
+ "KeyName":{"shape":"KeyPairName"},
22891
22990
  "Monitoring":{"shape":"LaunchTemplatesMonitoringRequest"},
22892
22991
  "Placement":{"shape":"LaunchTemplatePlacementRequest"},
22893
- "RamDiskId":{"shape":"String"},
22992
+ "RamDiskId":{"shape":"RamdiskId"},
22894
22993
  "DisableApiTermination":{"shape":"Boolean"},
22895
22994
  "InstanceInitiatedShutdownBehavior":{"shape":"ShutdownBehavior"},
22896
22995
  "UserData":{"shape":"String"},
@@ -23009,11 +23108,11 @@
23009
23108
  "type":"structure",
23010
23109
  "members":{
23011
23110
  "SecurityGroupIds":{
23012
- "shape":"ValueStringList",
23111
+ "shape":"RequestSpotLaunchSpecificationSecurityGroupIdList",
23013
23112
  "locationName":"SecurityGroupId"
23014
23113
  },
23015
23114
  "SecurityGroups":{
23016
- "shape":"ValueStringList",
23115
+ "shape":"RequestSpotLaunchSpecificationSecurityGroupList",
23017
23116
  "locationName":"SecurityGroup"
23018
23117
  },
23019
23118
  "AddressingType":{
@@ -23033,7 +23132,7 @@
23033
23132
  "locationName":"iamInstanceProfile"
23034
23133
  },
23035
23134
  "ImageId":{
23036
- "shape":"String",
23135
+ "shape":"ImageId",
23037
23136
  "locationName":"imageId"
23038
23137
  },
23039
23138
  "InstanceType":{
@@ -23041,11 +23140,11 @@
23041
23140
  "locationName":"instanceType"
23042
23141
  },
23043
23142
  "KernelId":{
23044
- "shape":"String",
23143
+ "shape":"KernelId",
23045
23144
  "locationName":"kernelId"
23046
23145
  },
23047
23146
  "KeyName":{
23048
- "shape":"String",
23147
+ "shape":"KeyPairName",
23049
23148
  "locationName":"keyName"
23050
23149
  },
23051
23150
  "Monitoring":{
@@ -23061,11 +23160,11 @@
23061
23160
  "locationName":"placement"
23062
23161
  },
23063
23162
  "RamdiskId":{
23064
- "shape":"String",
23163
+ "shape":"RamdiskId",
23065
23164
  "locationName":"ramdiskId"
23066
23165
  },
23067
23166
  "SubnetId":{
23068
- "shape":"String",
23167
+ "shape":"SubnetId",
23069
23168
  "locationName":"subnetId"
23070
23169
  },
23071
23170
  "UserData":{
@@ -23074,6 +23173,20 @@
23074
23173
  }
23075
23174
  }
23076
23175
  },
23176
+ "RequestSpotLaunchSpecificationSecurityGroupIdList":{
23177
+ "type":"list",
23178
+ "member":{
23179
+ "shape":"SecurityGroupId",
23180
+ "locationName":"item"
23181
+ }
23182
+ },
23183
+ "RequestSpotLaunchSpecificationSecurityGroupList":{
23184
+ "type":"list",
23185
+ "member":{
23186
+ "shape":"SecurityGroupName",
23187
+ "locationName":"item"
23188
+ }
23189
+ },
23077
23190
  "Reservation":{
23078
23191
  "type":"structure",
23079
23192
  "members":{
@@ -23099,6 +23212,7 @@
23099
23212
  }
23100
23213
  }
23101
23214
  },
23215
+ "ReservationId":{"type":"string"},
23102
23216
  "ReservationList":{
23103
23217
  "type":"list",
23104
23218
  "member":{
@@ -23135,7 +23249,7 @@
23135
23249
  "ReservedInstanceIdSet":{
23136
23250
  "type":"list",
23137
23251
  "member":{
23138
- "shape":"String",
23252
+ "shape":"ReservationId",
23139
23253
  "locationName":"ReservedInstanceId"
23140
23254
  }
23141
23255
  },
@@ -23304,7 +23418,7 @@
23304
23418
  "ReservedInstancesIdStringList":{
23305
23419
  "type":"list",
23306
23420
  "member":{
23307
- "shape":"String",
23421
+ "shape":"ReservationId",
23308
23422
  "locationName":"ReservedInstancesId"
23309
23423
  }
23310
23424
  },
@@ -23409,10 +23523,11 @@
23409
23523
  }
23410
23524
  }
23411
23525
  },
23526
+ "ReservedInstancesModificationId":{"type":"string"},
23412
23527
  "ReservedInstancesModificationIdStringList":{
23413
23528
  "type":"list",
23414
23529
  "member":{
23415
- "shape":"String",
23530
+ "shape":"ReservedInstancesModificationId",
23416
23531
  "locationName":"ReservedInstancesModificationId"
23417
23532
  }
23418
23533
  },
@@ -23508,9 +23623,10 @@
23508
23623
  }
23509
23624
  }
23510
23625
  },
23626
+ "ReservedInstancesOfferingId":{"type":"string"},
23511
23627
  "ReservedInstancesOfferingIdStringList":{
23512
23628
  "type":"list",
23513
- "member":{"shape":"String"}
23629
+ "member":{"shape":"ReservedInstancesOfferingId"}
23514
23630
  },
23515
23631
  "ReservedInstancesOfferingList":{
23516
23632
  "type":"list",
@@ -23638,7 +23754,7 @@
23638
23754
  },
23639
23755
  "ResourceIdList":{
23640
23756
  "type":"list",
23641
- "member":{"shape":"String"}
23757
+ "member":{"shape":"TaggableResourceId"}
23642
23758
  },
23643
23759
  "ResourceList":{
23644
23760
  "type":"list",
@@ -23887,7 +24003,7 @@
23887
24003
  "locationName":"dryRun"
23888
24004
  },
23889
24005
  "GroupId":{
23890
- "shape":"String",
24006
+ "shape":"SecurityGroupId",
23891
24007
  "locationName":"groupId"
23892
24008
  },
23893
24009
  "IpPermissions":{
@@ -23925,8 +24041,8 @@
23925
24041
  "members":{
23926
24042
  "CidrIp":{"shape":"String"},
23927
24043
  "FromPort":{"shape":"Integer"},
23928
- "GroupId":{"shape":"String"},
23929
- "GroupName":{"shape":"String"},
24044
+ "GroupId":{"shape":"SecurityGroupId"},
24045
+ "GroupName":{"shape":"SecurityGroupName"},
23930
24046
  "IpPermissions":{"shape":"IpPermissionList"},
23931
24047
  "IpProtocol":{"shape":"String"},
23932
24048
  "SourceSecurityGroupName":{"shape":"String"},
@@ -24013,6 +24129,7 @@
24013
24129
  }
24014
24130
  }
24015
24131
  },
24132
+ "RouteGatewayId":{"type":"string"},
24016
24133
  "RouteList":{
24017
24134
  "type":"list",
24018
24135
  "member":{
@@ -24128,8 +24245,14 @@
24128
24245
  "failed"
24129
24246
  ]
24130
24247
  },
24131
- "RouteTableGatewayId":{"type":"string"},
24132
24248
  "RouteTableId":{"type":"string"},
24249
+ "RouteTableIdStringList":{
24250
+ "type":"list",
24251
+ "member":{
24252
+ "shape":"RouteTableId",
24253
+ "locationName":"item"
24254
+ }
24255
+ },
24133
24256
  "RouteTableList":{
24134
24257
  "type":"list",
24135
24258
  "member":{
@@ -24173,7 +24296,7 @@
24173
24296
  "locationName":"Ipv6Address"
24174
24297
  },
24175
24298
  "KernelId":{"shape":"String"},
24176
- "KeyName":{"shape":"String"},
24299
+ "KeyName":{"shape":"KeyPairName"},
24177
24300
  "MaxCount":{"shape":"Integer"},
24178
24301
  "MinCount":{"shape":"Integer"},
24179
24302
  "Monitoring":{"shape":"RunInstancesMonitoringEnabled"},
@@ -24428,7 +24551,7 @@
24428
24551
  "ScheduledInstanceIdRequestSet":{
24429
24552
  "type":"list",
24430
24553
  "member":{
24431
- "shape":"String",
24554
+ "shape":"ScheduledInstanceId",
24432
24555
  "locationName":"ScheduledInstanceId"
24433
24556
  }
24434
24557
  },
@@ -24499,7 +24622,7 @@
24499
24622
  "DeleteOnTermination":{"shape":"Boolean"},
24500
24623
  "Encrypted":{"shape":"Boolean"},
24501
24624
  "Iops":{"shape":"Integer"},
24502
- "SnapshotId":{"shape":"String"},
24625
+ "SnapshotId":{"shape":"SnapshotId"},
24503
24626
  "VolumeSize":{"shape":"Integer"},
24504
24627
  "VolumeType":{"shape":"String"}
24505
24628
  }
@@ -24534,22 +24657,22 @@
24534
24657
  },
24535
24658
  "EbsOptimized":{"shape":"Boolean"},
24536
24659
  "IamInstanceProfile":{"shape":"ScheduledInstancesIamInstanceProfile"},
24537
- "ImageId":{"shape":"String"},
24660
+ "ImageId":{"shape":"ImageId"},
24538
24661
  "InstanceType":{"shape":"String"},
24539
- "KernelId":{"shape":"String"},
24540
- "KeyName":{"shape":"String"},
24662
+ "KernelId":{"shape":"KernelId"},
24663
+ "KeyName":{"shape":"KeyPairName"},
24541
24664
  "Monitoring":{"shape":"ScheduledInstancesMonitoring"},
24542
24665
  "NetworkInterfaces":{
24543
24666
  "shape":"ScheduledInstancesNetworkInterfaceSet",
24544
24667
  "locationName":"NetworkInterface"
24545
24668
  },
24546
24669
  "Placement":{"shape":"ScheduledInstancesPlacement"},
24547
- "RamdiskId":{"shape":"String"},
24670
+ "RamdiskId":{"shape":"RamdiskId"},
24548
24671
  "SecurityGroupIds":{
24549
24672
  "shape":"ScheduledInstancesSecurityGroupIdSet",
24550
24673
  "locationName":"SecurityGroupId"
24551
24674
  },
24552
- "SubnetId":{"shape":"String"},
24675
+ "SubnetId":{"shape":"SubnetId"},
24553
24676
  "UserData":{"shape":"String"}
24554
24677
  }
24555
24678
  },
@@ -24575,14 +24698,14 @@
24575
24698
  "shape":"ScheduledInstancesIpv6AddressList",
24576
24699
  "locationName":"Ipv6Address"
24577
24700
  },
24578
- "NetworkInterfaceId":{"shape":"String"},
24701
+ "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
24579
24702
  "PrivateIpAddress":{"shape":"String"},
24580
24703
  "PrivateIpAddressConfigs":{
24581
24704
  "shape":"PrivateIpAddressConfigSet",
24582
24705
  "locationName":"PrivateIpAddressConfig"
24583
24706
  },
24584
24707
  "SecondaryPrivateIpAddressCount":{"shape":"Integer"},
24585
- "SubnetId":{"shape":"String"}
24708
+ "SubnetId":{"shape":"SubnetId"}
24586
24709
  }
24587
24710
  },
24588
24711
  "ScheduledInstancesNetworkInterfaceSet":{
@@ -24596,7 +24719,7 @@
24596
24719
  "type":"structure",
24597
24720
  "members":{
24598
24721
  "AvailabilityZone":{"shape":"String"},
24599
- "GroupName":{"shape":"String"}
24722
+ "GroupName":{"shape":"PlacementGroupName"}
24600
24723
  }
24601
24724
  },
24602
24725
  "ScheduledInstancesPrivateIpAddressConfig":{
@@ -24609,7 +24732,7 @@
24609
24732
  "ScheduledInstancesSecurityGroupIdSet":{
24610
24733
  "type":"list",
24611
24734
  "member":{
24612
- "shape":"String",
24735
+ "shape":"SecurityGroupId",
24613
24736
  "locationName":"SecurityGroupId"
24614
24737
  }
24615
24738
  },
@@ -24620,7 +24743,7 @@
24620
24743
  "Filters"
24621
24744
  ],
24622
24745
  "members":{
24623
- "LocalGatewayRouteTableId":{"shape":"String"},
24746
+ "LocalGatewayRouteTableId":{"shape":"LocalGatewayRoutetableId"},
24624
24747
  "Filters":{
24625
24748
  "shape":"FilterList",
24626
24749
  "locationName":"Filter"
@@ -24646,7 +24769,7 @@
24646
24769
  "SearchTransitGatewayMulticastGroupsRequest":{
24647
24770
  "type":"structure",
24648
24771
  "members":{
24649
- "TransitGatewayMulticastDomainId":{"shape":"String"},
24772
+ "TransitGatewayMulticastDomainId":{"shape":"TransitGatewayMulticastDomainId"},
24650
24773
  "Filters":{
24651
24774
  "shape":"FilterList",
24652
24775
  "locationName":"Filter"
@@ -24676,7 +24799,7 @@
24676
24799
  "Filters"
24677
24800
  ],
24678
24801
  "members":{
24679
- "TransitGatewayRouteTableId":{"shape":"String"},
24802
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
24680
24803
  "Filters":{
24681
24804
  "shape":"FilterList",
24682
24805
  "locationName":"Filter"
@@ -24735,10 +24858,11 @@
24735
24858
  }
24736
24859
  }
24737
24860
  },
24861
+ "SecurityGroupId":{"type":"string"},
24738
24862
  "SecurityGroupIdStringList":{
24739
24863
  "type":"list",
24740
24864
  "member":{
24741
- "shape":"String",
24865
+ "shape":"SecurityGroupId",
24742
24866
  "locationName":"SecurityGroupId"
24743
24867
  }
24744
24868
  },
@@ -24762,6 +24886,7 @@
24762
24886
  "locationName":"item"
24763
24887
  }
24764
24888
  },
24889
+ "SecurityGroupName":{"type":"string"},
24765
24890
  "SecurityGroupReference":{
24766
24891
  "type":"structure",
24767
24892
  "members":{
@@ -24789,7 +24914,7 @@
24789
24914
  "SecurityGroupStringList":{
24790
24915
  "type":"list",
24791
24916
  "member":{
24792
- "shape":"String",
24917
+ "shape":"SecurityGroupName",
24793
24918
  "locationName":"SecurityGroup"
24794
24919
  }
24795
24920
  },
@@ -24925,7 +25050,6 @@
24925
25050
  "locationName":"item"
24926
25051
  }
24927
25052
  },
24928
- "ServiceId":{"type":"string"},
24929
25053
  "ServiceState":{
24930
25054
  "type":"string",
24931
25055
  "enum":[
@@ -25117,7 +25241,7 @@
25117
25241
  "SnapshotIdStringList":{
25118
25242
  "type":"list",
25119
25243
  "member":{
25120
- "shape":"String",
25244
+ "shape":"SnapshotId",
25121
25245
  "locationName":"SnapshotId"
25122
25246
  }
25123
25247
  },
@@ -25494,6 +25618,13 @@
25494
25618
  }
25495
25619
  },
25496
25620
  "SpotFleetRequestId":{"type":"string"},
25621
+ "SpotFleetRequestIdList":{
25622
+ "type":"list",
25623
+ "member":{
25624
+ "shape":"SpotFleetRequestId",
25625
+ "locationName":"item"
25626
+ }
25627
+ },
25497
25628
  "SpotFleetTagSpecification":{
25498
25629
  "type":"structure",
25499
25630
  "members":{
@@ -25546,7 +25677,7 @@
25546
25677
  "locationName":"fault"
25547
25678
  },
25548
25679
  "InstanceId":{
25549
- "shape":"String",
25680
+ "shape":"InstanceId",
25550
25681
  "locationName":"instanceId"
25551
25682
  },
25552
25683
  "LaunchGroup":{
@@ -25603,10 +25734,11 @@
25603
25734
  }
25604
25735
  }
25605
25736
  },
25737
+ "SpotInstanceRequestId":{"type":"string"},
25606
25738
  "SpotInstanceRequestIdList":{
25607
25739
  "type":"list",
25608
25740
  "member":{
25609
- "shape":"String",
25741
+ "shape":"SpotInstanceRequestId",
25610
25742
  "locationName":"SpotInstanceRequestId"
25611
25743
  }
25612
25744
  },
@@ -25872,7 +26004,7 @@
25872
26004
  "required":["ServiceId"],
25873
26005
  "members":{
25874
26006
  "DryRun":{"shape":"Boolean"},
25875
- "ServiceId":{"shape":"ServiceId"}
26007
+ "ServiceId":{"shape":"VpcEndpointServiceId"}
25876
26008
  }
25877
26009
  },
25878
26010
  "StartVpcEndpointServicePrivateDnsVerificationResult":{
@@ -26087,7 +26219,7 @@
26087
26219
  "SubnetIdStringList":{
26088
26220
  "type":"list",
26089
26221
  "member":{
26090
- "shape":"String",
26222
+ "shape":"SubnetId",
26091
26223
  "locationName":"SubnetId"
26092
26224
  }
26093
26225
  },
@@ -26239,6 +26371,7 @@
26239
26371
  "locationName":"item"
26240
26372
  }
26241
26373
  },
26374
+ "TaggableResourceId":{"type":"string"},
26242
26375
  "TargetCapacitySpecification":{
26243
26376
  "type":"structure",
26244
26377
  "members":{
@@ -26288,7 +26421,7 @@
26288
26421
  "required":["OfferingId"],
26289
26422
  "members":{
26290
26423
  "InstanceCount":{"shape":"Integer"},
26291
- "OfferingId":{"shape":"String"}
26424
+ "OfferingId":{"shape":"ReservedInstancesOfferingId"}
26292
26425
  }
26293
26426
  },
26294
26427
  "TargetConfigurationRequestSet":{
@@ -26515,6 +26648,13 @@
26515
26648
  }
26516
26649
  },
26517
26650
  "TrafficMirrorFilterId":{"type":"string"},
26651
+ "TrafficMirrorFilterIdList":{
26652
+ "type":"list",
26653
+ "member":{
26654
+ "shape":"TrafficMirrorFilterId",
26655
+ "locationName":"item"
26656
+ }
26657
+ },
26518
26658
  "TrafficMirrorFilterRule":{
26519
26659
  "type":"structure",
26520
26660
  "members":{
@@ -26688,6 +26828,13 @@
26688
26828
  "member":{"shape":"TrafficMirrorSessionField"}
26689
26829
  },
26690
26830
  "TrafficMirrorSessionId":{"type":"string"},
26831
+ "TrafficMirrorSessionIdList":{
26832
+ "type":"list",
26833
+ "member":{
26834
+ "shape":"TrafficMirrorSessionId",
26835
+ "locationName":"item"
26836
+ }
26837
+ },
26691
26838
  "TrafficMirrorSessionSet":{
26692
26839
  "type":"list",
26693
26840
  "member":{
@@ -26729,6 +26876,13 @@
26729
26876
  }
26730
26877
  },
26731
26878
  "TrafficMirrorTargetId":{"type":"string"},
26879
+ "TrafficMirrorTargetIdList":{
26880
+ "type":"list",
26881
+ "member":{
26882
+ "shape":"TrafficMirrorTargetId",
26883
+ "locationName":"item"
26884
+ }
26885
+ },
26732
26886
  "TrafficMirrorTargetSet":{
26733
26887
  "type":"list",
26734
26888
  "member":{
@@ -26797,11 +26951,11 @@
26797
26951
  "type":"structure",
26798
26952
  "members":{
26799
26953
  "TransitGatewayRouteTableId":{
26800
- "shape":"String",
26954
+ "shape":"TransitGatewayRouteTableId",
26801
26955
  "locationName":"transitGatewayRouteTableId"
26802
26956
  },
26803
26957
  "TransitGatewayAttachmentId":{
26804
- "shape":"String",
26958
+ "shape":"TransitGatewayAttachmentId",
26805
26959
  "locationName":"transitGatewayAttachmentId"
26806
26960
  },
26807
26961
  "ResourceId":{
@@ -26885,9 +27039,10 @@
26885
27039
  }
26886
27040
  }
26887
27041
  },
27042
+ "TransitGatewayAttachmentId":{"type":"string"},
26888
27043
  "TransitGatewayAttachmentIdStringList":{
26889
27044
  "type":"list",
26890
- "member":{"shape":"String"}
27045
+ "member":{"shape":"TransitGatewayAttachmentId"}
26891
27046
  },
26892
27047
  "TransitGatewayAttachmentList":{
26893
27048
  "type":"list",
@@ -26946,7 +27101,7 @@
26946
27101
  "TransitGatewayIdStringList":{
26947
27102
  "type":"list",
26948
27103
  "member":{
26949
- "shape":"String",
27104
+ "shape":"TransitGatewayId",
26950
27105
  "locationName":"item"
26951
27106
  }
26952
27107
  },
@@ -27083,6 +27238,7 @@
27083
27238
  }
27084
27239
  }
27085
27240
  },
27241
+ "TransitGatewayMulticastDomainId":{"type":"string"},
27086
27242
  "TransitGatewayMulticastDomainIdStringList":{
27087
27243
  "type":"list",
27088
27244
  "member":{
@@ -27192,6 +27348,13 @@
27192
27348
  }
27193
27349
  }
27194
27350
  },
27351
+ "TransitGatewayNetworkInterfaceIdList":{
27352
+ "type":"list",
27353
+ "member":{
27354
+ "shape":"NetworkInterfaceId",
27355
+ "locationName":"item"
27356
+ }
27357
+ },
27195
27358
  "TransitGatewayOptions":{
27196
27359
  "type":"structure",
27197
27360
  "members":{
@@ -27277,7 +27440,7 @@
27277
27440
  "type":"structure",
27278
27441
  "members":{
27279
27442
  "TransitGatewayAttachmentId":{
27280
- "shape":"String",
27443
+ "shape":"TransitGatewayAttachmentId",
27281
27444
  "locationName":"transitGatewayAttachmentId"
27282
27445
  },
27283
27446
  "ResourceId":{
@@ -27442,6 +27605,7 @@
27442
27605
  "locationName":"item"
27443
27606
  }
27444
27607
  },
27608
+ "TransitGatewayRouteTableId":{"type":"string"},
27445
27609
  "TransitGatewayRouteTableIdStringList":{
27446
27610
  "type":"list",
27447
27611
  "member":{
@@ -27510,6 +27674,13 @@
27510
27674
  "deleted"
27511
27675
  ]
27512
27676
  },
27677
+ "TransitGatewaySubnetIdList":{
27678
+ "type":"list",
27679
+ "member":{
27680
+ "shape":"SubnetId",
27681
+ "locationName":"item"
27682
+ }
27683
+ },
27513
27684
  "TransitGatewayVpcAttachment":{
27514
27685
  "type":"structure",
27515
27686
  "members":{
@@ -27819,8 +27990,8 @@
27819
27990
  "required":["IpPermissions"],
27820
27991
  "members":{
27821
27992
  "DryRun":{"shape":"Boolean"},
27822
- "GroupId":{"shape":"String"},
27823
- "GroupName":{"shape":"String"},
27993
+ "GroupId":{"shape":"SecurityGroupId"},
27994
+ "GroupName":{"shape":"SecurityGroupName"},
27824
27995
  "IpPermissions":{"shape":"IpPermissionList"}
27825
27996
  }
27826
27997
  },
@@ -27838,8 +28009,8 @@
27838
28009
  "required":["IpPermissions"],
27839
28010
  "members":{
27840
28011
  "DryRun":{"shape":"Boolean"},
27841
- "GroupId":{"shape":"String"},
27842
- "GroupName":{"shape":"String"},
28012
+ "GroupId":{"shape":"SecurityGroupId"},
28013
+ "GroupName":{"shape":"SecurityGroupName"},
27843
28014
  "IpPermissions":{"shape":"IpPermissionList"}
27844
28015
  }
27845
28016
  },
@@ -28590,7 +28761,7 @@
28590
28761
  "VpcClassicLinkIdList":{
28591
28762
  "type":"list",
28592
28763
  "member":{
28593
- "shape":"String",
28764
+ "shape":"VpcId",
28594
28765
  "locationName":"VpcId"
28595
28766
  }
28596
28767
  },
@@ -28715,6 +28886,35 @@
28715
28886
  }
28716
28887
  },
28717
28888
  "VpcEndpointId":{"type":"string"},
28889
+ "VpcEndpointIdList":{
28890
+ "type":"list",
28891
+ "member":{
28892
+ "shape":"VpcEndpointId",
28893
+ "locationName":"item"
28894
+ }
28895
+ },
28896
+ "VpcEndpointRouteTableIdList":{
28897
+ "type":"list",
28898
+ "member":{
28899
+ "shape":"RouteTableId",
28900
+ "locationName":"item"
28901
+ }
28902
+ },
28903
+ "VpcEndpointSecurityGroupIdList":{
28904
+ "type":"list",
28905
+ "member":{
28906
+ "shape":"SecurityGroupId",
28907
+ "locationName":"item"
28908
+ }
28909
+ },
28910
+ "VpcEndpointServiceId":{"type":"string"},
28911
+ "VpcEndpointServiceIdList":{
28912
+ "type":"list",
28913
+ "member":{
28914
+ "shape":"VpcEndpointServiceId",
28915
+ "locationName":"item"
28916
+ }
28917
+ },
28718
28918
  "VpcEndpointSet":{
28719
28919
  "type":"list",
28720
28920
  "member":{
@@ -28722,6 +28922,13 @@
28722
28922
  "locationName":"item"
28723
28923
  }
28724
28924
  },
28925
+ "VpcEndpointSubnetIdList":{
28926
+ "type":"list",
28927
+ "member":{
28928
+ "shape":"SubnetId",
28929
+ "locationName":"item"
28930
+ }
28931
+ },
28725
28932
  "VpcEndpointType":{
28726
28933
  "type":"string",
28727
28934
  "enum":[
@@ -28729,11 +28936,12 @@
28729
28936
  "Gateway"
28730
28937
  ]
28731
28938
  },
28939
+ "VpcFlowLogId":{"type":"string"},
28732
28940
  "VpcId":{"type":"string"},
28733
28941
  "VpcIdStringList":{
28734
28942
  "type":"list",
28735
28943
  "member":{
28736
- "shape":"String",
28944
+ "shape":"VpcId",
28737
28945
  "locationName":"VpcId"
28738
28946
  }
28739
28947
  },
@@ -28752,13 +28960,13 @@
28752
28960
  "shape":"VpcCidrBlockState",
28753
28961
  "locationName":"ipv6CidrBlockState"
28754
28962
  },
28755
- "Ipv6Pool":{
28756
- "shape":"String",
28757
- "locationName":"ipv6Pool"
28758
- },
28759
28963
  "NetworkBorderGroup":{
28760
28964
  "shape":"String",
28761
28965
  "locationName":"networkBorderGroup"
28966
+ },
28967
+ "Ipv6Pool":{
28968
+ "shape":"String",
28969
+ "locationName":"ipv6Pool"
28762
28970
  }
28763
28971
  }
28764
28972
  },
@@ -28806,6 +29014,13 @@
28806
29014
  }
28807
29015
  },
28808
29016
  "VpcPeeringConnectionId":{"type":"string"},
29017
+ "VpcPeeringConnectionIdList":{
29018
+ "type":"list",
29019
+ "member":{
29020
+ "shape":"VpcPeeringConnectionId",
29021
+ "locationName":"item"
29022
+ }
29023
+ },
28809
29024
  "VpcPeeringConnectionList":{
28810
29025
  "type":"list",
28811
29026
  "member":{
@@ -28958,7 +29173,7 @@
28958
29173
  "VpnConnectionIdStringList":{
28959
29174
  "type":"list",
28960
29175
  "member":{
28961
- "shape":"String",
29176
+ "shape":"VpnConnectionId",
28962
29177
  "locationName":"VpnConnectionId"
28963
29178
  }
28964
29179
  },
@@ -29041,7 +29256,7 @@
29041
29256
  "VpnGatewayIdStringList":{
29042
29257
  "type":"list",
29043
29258
  "member":{
29044
- "shape":"String",
29259
+ "shape":"VpnGatewayId",
29045
29260
  "locationName":"VpnGatewayId"
29046
29261
  }
29047
29262
  },