aws-sdk-ec2 1.171.0 → 1.172.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +512 -32
- data/lib/aws-sdk-ec2/client_api.rb +213 -0
- data/lib/aws-sdk-ec2/network_acl.rb +3 -1
- data/lib/aws-sdk-ec2/resource.rb +10 -9
- data/lib/aws-sdk-ec2/route.rb +6 -0
- data/lib/aws-sdk-ec2/route_table.rb +6 -1
- data/lib/aws-sdk-ec2/subnet.rb +0 -3
- data/lib/aws-sdk-ec2/types.rb +655 -18
- data/lib/aws-sdk-ec2/vpc.rb +7 -8
- metadata +2 -2
@@ -32,6 +32,8 @@ module Aws::EC2
|
|
32
32
|
ActiveInstance = Shapes::StructureShape.new(name: 'ActiveInstance')
|
33
33
|
ActiveInstanceSet = Shapes::ListShape.new(name: 'ActiveInstanceSet')
|
34
34
|
ActivityStatus = Shapes::StringShape.new(name: 'ActivityStatus')
|
35
|
+
AddPrefixListEntries = Shapes::ListShape.new(name: 'AddPrefixListEntries')
|
36
|
+
AddPrefixListEntry = Shapes::StructureShape.new(name: 'AddPrefixListEntry')
|
35
37
|
Address = Shapes::StructureShape.new(name: 'Address')
|
36
38
|
AddressList = Shapes::ListShape.new(name: 'AddressList')
|
37
39
|
AdvertiseByoipCidrRequest = Shapes::StructureShape.new(name: 'AdvertiseByoipCidrRequest')
|
@@ -282,6 +284,8 @@ module Aws::EC2
|
|
282
284
|
CreateLocalGatewayRouteResult = Shapes::StructureShape.new(name: 'CreateLocalGatewayRouteResult')
|
283
285
|
CreateLocalGatewayRouteTableVpcAssociationRequest = Shapes::StructureShape.new(name: 'CreateLocalGatewayRouteTableVpcAssociationRequest')
|
284
286
|
CreateLocalGatewayRouteTableVpcAssociationResult = Shapes::StructureShape.new(name: 'CreateLocalGatewayRouteTableVpcAssociationResult')
|
287
|
+
CreateManagedPrefixListRequest = Shapes::StructureShape.new(name: 'CreateManagedPrefixListRequest')
|
288
|
+
CreateManagedPrefixListResult = Shapes::StructureShape.new(name: 'CreateManagedPrefixListResult')
|
285
289
|
CreateNatGatewayRequest = Shapes::StructureShape.new(name: 'CreateNatGatewayRequest')
|
286
290
|
CreateNatGatewayResult = Shapes::StructureShape.new(name: 'CreateNatGatewayResult')
|
287
291
|
CreateNetworkAclEntryRequest = Shapes::StructureShape.new(name: 'CreateNetworkAclEntryRequest')
|
@@ -401,6 +405,8 @@ module Aws::EC2
|
|
401
405
|
DeleteLocalGatewayRouteResult = Shapes::StructureShape.new(name: 'DeleteLocalGatewayRouteResult')
|
402
406
|
DeleteLocalGatewayRouteTableVpcAssociationRequest = Shapes::StructureShape.new(name: 'DeleteLocalGatewayRouteTableVpcAssociationRequest')
|
403
407
|
DeleteLocalGatewayRouteTableVpcAssociationResult = Shapes::StructureShape.new(name: 'DeleteLocalGatewayRouteTableVpcAssociationResult')
|
408
|
+
DeleteManagedPrefixListRequest = Shapes::StructureShape.new(name: 'DeleteManagedPrefixListRequest')
|
409
|
+
DeleteManagedPrefixListResult = Shapes::StructureShape.new(name: 'DeleteManagedPrefixListResult')
|
404
410
|
DeleteNatGatewayRequest = Shapes::StructureShape.new(name: 'DeleteNatGatewayRequest')
|
405
411
|
DeleteNatGatewayResult = Shapes::StructureShape.new(name: 'DeleteNatGatewayResult')
|
406
412
|
DeleteNetworkAclEntryRequest = Shapes::StructureShape.new(name: 'DeleteNetworkAclEntryRequest')
|
@@ -600,6 +606,8 @@ module Aws::EC2
|
|
600
606
|
DescribeLocalGatewayVirtualInterfacesResult = Shapes::StructureShape.new(name: 'DescribeLocalGatewayVirtualInterfacesResult')
|
601
607
|
DescribeLocalGatewaysRequest = Shapes::StructureShape.new(name: 'DescribeLocalGatewaysRequest')
|
602
608
|
DescribeLocalGatewaysResult = Shapes::StructureShape.new(name: 'DescribeLocalGatewaysResult')
|
609
|
+
DescribeManagedPrefixListsRequest = Shapes::StructureShape.new(name: 'DescribeManagedPrefixListsRequest')
|
610
|
+
DescribeManagedPrefixListsResult = Shapes::StructureShape.new(name: 'DescribeManagedPrefixListsResult')
|
603
611
|
DescribeMovingAddressesMaxResults = Shapes::IntegerShape.new(name: 'DescribeMovingAddressesMaxResults')
|
604
612
|
DescribeMovingAddressesRequest = Shapes::StructureShape.new(name: 'DescribeMovingAddressesRequest')
|
605
613
|
DescribeMovingAddressesResult = Shapes::StructureShape.new(name: 'DescribeMovingAddressesResult')
|
@@ -956,6 +964,11 @@ module Aws::EC2
|
|
956
964
|
GetHostReservationPurchasePreviewResult = Shapes::StructureShape.new(name: 'GetHostReservationPurchasePreviewResult')
|
957
965
|
GetLaunchTemplateDataRequest = Shapes::StructureShape.new(name: 'GetLaunchTemplateDataRequest')
|
958
966
|
GetLaunchTemplateDataResult = Shapes::StructureShape.new(name: 'GetLaunchTemplateDataResult')
|
967
|
+
GetManagedPrefixListAssociationsMaxResults = Shapes::IntegerShape.new(name: 'GetManagedPrefixListAssociationsMaxResults')
|
968
|
+
GetManagedPrefixListAssociationsRequest = Shapes::StructureShape.new(name: 'GetManagedPrefixListAssociationsRequest')
|
969
|
+
GetManagedPrefixListAssociationsResult = Shapes::StructureShape.new(name: 'GetManagedPrefixListAssociationsResult')
|
970
|
+
GetManagedPrefixListEntriesRequest = Shapes::StructureShape.new(name: 'GetManagedPrefixListEntriesRequest')
|
971
|
+
GetManagedPrefixListEntriesResult = Shapes::StructureShape.new(name: 'GetManagedPrefixListEntriesResult')
|
959
972
|
GetPasswordDataRequest = Shapes::StructureShape.new(name: 'GetPasswordDataRequest')
|
960
973
|
GetPasswordDataResult = Shapes::StructureShape.new(name: 'GetPasswordDataResult')
|
961
974
|
GetReservedInstancesExchangeQuoteRequest = Shapes::StructureShape.new(name: 'GetReservedInstancesExchangeQuoteRequest')
|
@@ -1282,6 +1295,8 @@ module Aws::EC2
|
|
1282
1295
|
LocationType = Shapes::StringShape.new(name: 'LocationType')
|
1283
1296
|
LogDestinationType = Shapes::StringShape.new(name: 'LogDestinationType')
|
1284
1297
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
1298
|
+
ManagedPrefixList = Shapes::StructureShape.new(name: 'ManagedPrefixList')
|
1299
|
+
ManagedPrefixListSet = Shapes::ListShape.new(name: 'ManagedPrefixListSet')
|
1285
1300
|
MarketType = Shapes::StringShape.new(name: 'MarketType')
|
1286
1301
|
MaxIpv4AddrPerInterface = Shapes::IntegerShape.new(name: 'MaxIpv4AddrPerInterface')
|
1287
1302
|
MaxIpv6AddrPerInterface = Shapes::IntegerShape.new(name: 'MaxIpv6AddrPerInterface')
|
@@ -1327,6 +1342,8 @@ module Aws::EC2
|
|
1327
1342
|
ModifyInstancePlacementResult = Shapes::StructureShape.new(name: 'ModifyInstancePlacementResult')
|
1328
1343
|
ModifyLaunchTemplateRequest = Shapes::StructureShape.new(name: 'ModifyLaunchTemplateRequest')
|
1329
1344
|
ModifyLaunchTemplateResult = Shapes::StructureShape.new(name: 'ModifyLaunchTemplateResult')
|
1345
|
+
ModifyManagedPrefixListRequest = Shapes::StructureShape.new(name: 'ModifyManagedPrefixListRequest')
|
1346
|
+
ModifyManagedPrefixListResult = Shapes::StructureShape.new(name: 'ModifyManagedPrefixListResult')
|
1330
1347
|
ModifyNetworkInterfaceAttributeRequest = Shapes::StructureShape.new(name: 'ModifyNetworkInterfaceAttributeRequest')
|
1331
1348
|
ModifyReservedInstancesRequest = Shapes::StructureShape.new(name: 'ModifyReservedInstancesRequest')
|
1332
1349
|
ModifyReservedInstancesResult = Shapes::StructureShape.new(name: 'ModifyReservedInstancesResult')
|
@@ -1479,12 +1496,18 @@ module Aws::EC2
|
|
1479
1496
|
PoolMaxResults = Shapes::IntegerShape.new(name: 'PoolMaxResults')
|
1480
1497
|
PortRange = Shapes::StructureShape.new(name: 'PortRange')
|
1481
1498
|
PrefixList = Shapes::StructureShape.new(name: 'PrefixList')
|
1499
|
+
PrefixListAssociation = Shapes::StructureShape.new(name: 'PrefixListAssociation')
|
1500
|
+
PrefixListAssociationSet = Shapes::ListShape.new(name: 'PrefixListAssociationSet')
|
1501
|
+
PrefixListEntry = Shapes::StructureShape.new(name: 'PrefixListEntry')
|
1502
|
+
PrefixListEntrySet = Shapes::ListShape.new(name: 'PrefixListEntrySet')
|
1482
1503
|
PrefixListId = Shapes::StructureShape.new(name: 'PrefixListId')
|
1483
1504
|
PrefixListIdList = Shapes::ListShape.new(name: 'PrefixListIdList')
|
1484
1505
|
PrefixListIdSet = Shapes::ListShape.new(name: 'PrefixListIdSet')
|
1506
|
+
PrefixListMaxResults = Shapes::IntegerShape.new(name: 'PrefixListMaxResults')
|
1485
1507
|
PrefixListResourceId = Shapes::StringShape.new(name: 'PrefixListResourceId')
|
1486
1508
|
PrefixListResourceIdStringList = Shapes::ListShape.new(name: 'PrefixListResourceIdStringList')
|
1487
1509
|
PrefixListSet = Shapes::ListShape.new(name: 'PrefixListSet')
|
1510
|
+
PrefixListState = Shapes::StringShape.new(name: 'PrefixListState')
|
1488
1511
|
PriceSchedule = Shapes::StructureShape.new(name: 'PriceSchedule')
|
1489
1512
|
PriceScheduleList = Shapes::ListShape.new(name: 'PriceScheduleList')
|
1490
1513
|
PriceScheduleSpecification = Shapes::StructureShape.new(name: 'PriceScheduleSpecification')
|
@@ -1558,6 +1581,8 @@ module Aws::EC2
|
|
1558
1581
|
ReleaseAddressRequest = Shapes::StructureShape.new(name: 'ReleaseAddressRequest')
|
1559
1582
|
ReleaseHostsRequest = Shapes::StructureShape.new(name: 'ReleaseHostsRequest')
|
1560
1583
|
ReleaseHostsResult = Shapes::StructureShape.new(name: 'ReleaseHostsResult')
|
1584
|
+
RemovePrefixListEntries = Shapes::ListShape.new(name: 'RemovePrefixListEntries')
|
1585
|
+
RemovePrefixListEntry = Shapes::StructureShape.new(name: 'RemovePrefixListEntry')
|
1561
1586
|
ReplaceIamInstanceProfileAssociationRequest = Shapes::StructureShape.new(name: 'ReplaceIamInstanceProfileAssociationRequest')
|
1562
1587
|
ReplaceIamInstanceProfileAssociationResult = Shapes::StructureShape.new(name: 'ReplaceIamInstanceProfileAssociationResult')
|
1563
1588
|
ReplaceNetworkAclAssociationRequest = Shapes::StructureShape.new(name: 'ReplaceNetworkAclAssociationRequest')
|
@@ -1622,6 +1647,7 @@ module Aws::EC2
|
|
1622
1647
|
ResetInstanceAttributeRequest = Shapes::StructureShape.new(name: 'ResetInstanceAttributeRequest')
|
1623
1648
|
ResetNetworkInterfaceAttributeRequest = Shapes::StructureShape.new(name: 'ResetNetworkInterfaceAttributeRequest')
|
1624
1649
|
ResetSnapshotAttributeRequest = Shapes::StructureShape.new(name: 'ResetSnapshotAttributeRequest')
|
1650
|
+
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
1625
1651
|
ResourceIdList = Shapes::ListShape.new(name: 'ResourceIdList')
|
1626
1652
|
ResourceList = Shapes::ListShape.new(name: 'ResourceList')
|
1627
1653
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
@@ -1632,6 +1658,8 @@ module Aws::EC2
|
|
1632
1658
|
RestorableByStringList = Shapes::ListShape.new(name: 'RestorableByStringList')
|
1633
1659
|
RestoreAddressToClassicRequest = Shapes::StructureShape.new(name: 'RestoreAddressToClassicRequest')
|
1634
1660
|
RestoreAddressToClassicResult = Shapes::StructureShape.new(name: 'RestoreAddressToClassicResult')
|
1661
|
+
RestoreManagedPrefixListVersionRequest = Shapes::StructureShape.new(name: 'RestoreManagedPrefixListVersionRequest')
|
1662
|
+
RestoreManagedPrefixListVersionResult = Shapes::StructureShape.new(name: 'RestoreManagedPrefixListVersionResult')
|
1635
1663
|
RevokeClientVpnIngressRequest = Shapes::StructureShape.new(name: 'RevokeClientVpnIngressRequest')
|
1636
1664
|
RevokeClientVpnIngressResult = Shapes::StructureShape.new(name: 'RevokeClientVpnIngressResult')
|
1637
1665
|
RevokeSecurityGroupEgressRequest = Shapes::StructureShape.new(name: 'RevokeSecurityGroupEgressRequest')
|
@@ -2089,6 +2117,12 @@ module Aws::EC2
|
|
2089
2117
|
|
2090
2118
|
ActiveInstanceSet.member = Shapes::ShapeRef.new(shape: ActiveInstance, location_name: "item")
|
2091
2119
|
|
2120
|
+
AddPrefixListEntries.member = Shapes::ShapeRef.new(shape: AddPrefixListEntry)
|
2121
|
+
|
2122
|
+
AddPrefixListEntry.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
2123
|
+
AddPrefixListEntry.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
2124
|
+
AddPrefixListEntry.struct_class = Types::AddPrefixListEntry
|
2125
|
+
|
2092
2126
|
Address.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
|
2093
2127
|
Address.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
|
2094
2128
|
Address.add_member(:allocation_id, Shapes::ShapeRef.new(shape: String, location_name: "allocationId"))
|
@@ -3038,6 +3072,18 @@ module Aws::EC2
|
|
3038
3072
|
CreateLocalGatewayRouteTableVpcAssociationResult.add_member(:local_gateway_route_table_vpc_association, Shapes::ShapeRef.new(shape: LocalGatewayRouteTableVpcAssociation, location_name: "localGatewayRouteTableVpcAssociation"))
|
3039
3073
|
CreateLocalGatewayRouteTableVpcAssociationResult.struct_class = Types::CreateLocalGatewayRouteTableVpcAssociationResult
|
3040
3074
|
|
3075
|
+
CreateManagedPrefixListRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3076
|
+
CreateManagedPrefixListRequest.add_member(:prefix_list_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "PrefixListName"))
|
3077
|
+
CreateManagedPrefixListRequest.add_member(:entries, Shapes::ShapeRef.new(shape: AddPrefixListEntries, location_name: "Entry"))
|
3078
|
+
CreateManagedPrefixListRequest.add_member(:max_entries, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MaxEntries"))
|
3079
|
+
CreateManagedPrefixListRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
3080
|
+
CreateManagedPrefixListRequest.add_member(:address_family, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AddressFamily"))
|
3081
|
+
CreateManagedPrefixListRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
3082
|
+
CreateManagedPrefixListRequest.struct_class = Types::CreateManagedPrefixListRequest
|
3083
|
+
|
3084
|
+
CreateManagedPrefixListResult.add_member(:prefix_list, Shapes::ShapeRef.new(shape: ManagedPrefixList, location_name: "prefixList"))
|
3085
|
+
CreateManagedPrefixListResult.struct_class = Types::CreateManagedPrefixListResult
|
3086
|
+
|
3041
3087
|
CreateNatGatewayRequest.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, required: true, location_name: "AllocationId"))
|
3042
3088
|
CreateNatGatewayRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
3043
3089
|
CreateNatGatewayRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -3114,6 +3160,7 @@ module Aws::EC2
|
|
3114
3160
|
|
3115
3161
|
CreateRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidrBlock"))
|
3116
3162
|
CreateRouteRequest.add_member(:destination_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationIpv6CidrBlock"))
|
3163
|
+
CreateRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
|
3117
3164
|
CreateRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3118
3165
|
CreateRouteRequest.add_member(:egress_only_internet_gateway_id, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "egressOnlyInternetGatewayId"))
|
3119
3166
|
CreateRouteRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: RouteGatewayId, location_name: "gatewayId"))
|
@@ -3561,6 +3608,13 @@ module Aws::EC2
|
|
3561
3608
|
DeleteLocalGatewayRouteTableVpcAssociationResult.add_member(:local_gateway_route_table_vpc_association, Shapes::ShapeRef.new(shape: LocalGatewayRouteTableVpcAssociation, location_name: "localGatewayRouteTableVpcAssociation"))
|
3562
3609
|
DeleteLocalGatewayRouteTableVpcAssociationResult.struct_class = Types::DeleteLocalGatewayRouteTableVpcAssociationResult
|
3563
3610
|
|
3611
|
+
DeleteManagedPrefixListRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3612
|
+
DeleteManagedPrefixListRequest.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, required: true, location_name: "PrefixListId"))
|
3613
|
+
DeleteManagedPrefixListRequest.struct_class = Types::DeleteManagedPrefixListRequest
|
3614
|
+
|
3615
|
+
DeleteManagedPrefixListResult.add_member(:prefix_list, Shapes::ShapeRef.new(shape: ManagedPrefixList, location_name: "prefixList"))
|
3616
|
+
DeleteManagedPrefixListResult.struct_class = Types::DeleteManagedPrefixListResult
|
3617
|
+
|
3564
3618
|
DeleteNatGatewayRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3565
3619
|
DeleteNatGatewayRequest.add_member(:nat_gateway_id, Shapes::ShapeRef.new(shape: NatGatewayId, required: true, location_name: "NatGatewayId"))
|
3566
3620
|
DeleteNatGatewayRequest.struct_class = Types::DeleteNatGatewayRequest
|
@@ -3610,6 +3664,7 @@ module Aws::EC2
|
|
3610
3664
|
|
3611
3665
|
DeleteRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidrBlock"))
|
3612
3666
|
DeleteRouteRequest.add_member(:destination_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationIpv6CidrBlock"))
|
3667
|
+
DeleteRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
|
3613
3668
|
DeleteRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3614
3669
|
DeleteRouteRequest.add_member(:route_table_id, Shapes::ShapeRef.new(shape: RouteTableId, required: true, location_name: "routeTableId"))
|
3615
3670
|
DeleteRouteRequest.struct_class = Types::DeleteRouteRequest
|
@@ -4400,6 +4455,17 @@ module Aws::EC2
|
|
4400
4455
|
DescribeLocalGatewaysResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
4401
4456
|
DescribeLocalGatewaysResult.struct_class = Types::DescribeLocalGatewaysResult
|
4402
4457
|
|
4458
|
+
DescribeManagedPrefixListsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4459
|
+
DescribeManagedPrefixListsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
4460
|
+
DescribeManagedPrefixListsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PrefixListMaxResults, location_name: "MaxResults"))
|
4461
|
+
DescribeManagedPrefixListsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4462
|
+
DescribeManagedPrefixListsRequest.add_member(:prefix_list_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "PrefixListId"))
|
4463
|
+
DescribeManagedPrefixListsRequest.struct_class = Types::DescribeManagedPrefixListsRequest
|
4464
|
+
|
4465
|
+
DescribeManagedPrefixListsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
4466
|
+
DescribeManagedPrefixListsResult.add_member(:prefix_lists, Shapes::ShapeRef.new(shape: ManagedPrefixListSet, location_name: "prefixListSet"))
|
4467
|
+
DescribeManagedPrefixListsResult.struct_class = Types::DescribeManagedPrefixListsResult
|
4468
|
+
|
4403
4469
|
DescribeMovingAddressesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filter"))
|
4404
4470
|
DescribeMovingAddressesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
4405
4471
|
DescribeMovingAddressesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeMovingAddressesMaxResults, location_name: "maxResults"))
|
@@ -5756,6 +5822,27 @@ module Aws::EC2
|
|
5756
5822
|
GetLaunchTemplateDataResult.add_member(:launch_template_data, Shapes::ShapeRef.new(shape: ResponseLaunchTemplateData, location_name: "launchTemplateData"))
|
5757
5823
|
GetLaunchTemplateDataResult.struct_class = Types::GetLaunchTemplateDataResult
|
5758
5824
|
|
5825
|
+
GetManagedPrefixListAssociationsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5826
|
+
GetManagedPrefixListAssociationsRequest.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, required: true, location_name: "PrefixListId"))
|
5827
|
+
GetManagedPrefixListAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: GetManagedPrefixListAssociationsMaxResults, location_name: "MaxResults"))
|
5828
|
+
GetManagedPrefixListAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5829
|
+
GetManagedPrefixListAssociationsRequest.struct_class = Types::GetManagedPrefixListAssociationsRequest
|
5830
|
+
|
5831
|
+
GetManagedPrefixListAssociationsResult.add_member(:prefix_list_associations, Shapes::ShapeRef.new(shape: PrefixListAssociationSet, location_name: "prefixListAssociationSet"))
|
5832
|
+
GetManagedPrefixListAssociationsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
5833
|
+
GetManagedPrefixListAssociationsResult.struct_class = Types::GetManagedPrefixListAssociationsResult
|
5834
|
+
|
5835
|
+
GetManagedPrefixListEntriesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
5836
|
+
GetManagedPrefixListEntriesRequest.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, required: true, location_name: "PrefixListId"))
|
5837
|
+
GetManagedPrefixListEntriesRequest.add_member(:target_version, Shapes::ShapeRef.new(shape: Long, location_name: "TargetVersion"))
|
5838
|
+
GetManagedPrefixListEntriesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PrefixListMaxResults, location_name: "MaxResults"))
|
5839
|
+
GetManagedPrefixListEntriesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
5840
|
+
GetManagedPrefixListEntriesRequest.struct_class = Types::GetManagedPrefixListEntriesRequest
|
5841
|
+
|
5842
|
+
GetManagedPrefixListEntriesResult.add_member(:entries, Shapes::ShapeRef.new(shape: PrefixListEntrySet, location_name: "entrySet"))
|
5843
|
+
GetManagedPrefixListEntriesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
5844
|
+
GetManagedPrefixListEntriesResult.struct_class = Types::GetManagedPrefixListEntriesResult
|
5845
|
+
|
5759
5846
|
GetPasswordDataRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
5760
5847
|
GetPasswordDataRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
5761
5848
|
GetPasswordDataRequest.struct_class = Types::GetPasswordDataRequest
|
@@ -6982,6 +7069,20 @@ module Aws::EC2
|
|
6982
7069
|
|
6983
7070
|
LocalGatewayVirtualInterfaceSet.member = Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterface, location_name: "item")
|
6984
7071
|
|
7072
|
+
ManagedPrefixList.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "prefixListId"))
|
7073
|
+
ManagedPrefixList.add_member(:address_family, Shapes::ShapeRef.new(shape: String, location_name: "addressFamily"))
|
7074
|
+
ManagedPrefixList.add_member(:state, Shapes::ShapeRef.new(shape: PrefixListState, location_name: "state"))
|
7075
|
+
ManagedPrefixList.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
|
7076
|
+
ManagedPrefixList.add_member(:prefix_list_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "prefixListArn"))
|
7077
|
+
ManagedPrefixList.add_member(:prefix_list_name, Shapes::ShapeRef.new(shape: String, location_name: "prefixListName"))
|
7078
|
+
ManagedPrefixList.add_member(:max_entries, Shapes::ShapeRef.new(shape: Integer, location_name: "maxEntries"))
|
7079
|
+
ManagedPrefixList.add_member(:version, Shapes::ShapeRef.new(shape: Long, location_name: "version"))
|
7080
|
+
ManagedPrefixList.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
7081
|
+
ManagedPrefixList.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
7082
|
+
ManagedPrefixList.struct_class = Types::ManagedPrefixList
|
7083
|
+
|
7084
|
+
ManagedPrefixListSet.member = Shapes::ShapeRef.new(shape: ManagedPrefixList, location_name: "item")
|
7085
|
+
|
6985
7086
|
MemoryInfo.add_member(:size_in_mi_b, Shapes::ShapeRef.new(shape: MemorySize, location_name: "sizeInMiB"))
|
6986
7087
|
MemoryInfo.struct_class = Types::MemoryInfo
|
6987
7088
|
|
@@ -7166,6 +7267,17 @@ module Aws::EC2
|
|
7166
7267
|
ModifyLaunchTemplateResult.add_member(:launch_template, Shapes::ShapeRef.new(shape: LaunchTemplate, location_name: "launchTemplate"))
|
7167
7268
|
ModifyLaunchTemplateResult.struct_class = Types::ModifyLaunchTemplateResult
|
7168
7269
|
|
7270
|
+
ModifyManagedPrefixListRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7271
|
+
ModifyManagedPrefixListRequest.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, required: true, location_name: "PrefixListId"))
|
7272
|
+
ModifyManagedPrefixListRequest.add_member(:current_version, Shapes::ShapeRef.new(shape: Long, location_name: "CurrentVersion"))
|
7273
|
+
ModifyManagedPrefixListRequest.add_member(:prefix_list_name, Shapes::ShapeRef.new(shape: String, location_name: "PrefixListName"))
|
7274
|
+
ModifyManagedPrefixListRequest.add_member(:add_entries, Shapes::ShapeRef.new(shape: AddPrefixListEntries, location_name: "AddEntry"))
|
7275
|
+
ModifyManagedPrefixListRequest.add_member(:remove_entries, Shapes::ShapeRef.new(shape: RemovePrefixListEntries, location_name: "RemoveEntry"))
|
7276
|
+
ModifyManagedPrefixListRequest.struct_class = Types::ModifyManagedPrefixListRequest
|
7277
|
+
|
7278
|
+
ModifyManagedPrefixListResult.add_member(:prefix_list, Shapes::ShapeRef.new(shape: ManagedPrefixList, location_name: "prefixList"))
|
7279
|
+
ModifyManagedPrefixListResult.struct_class = Types::ModifyManagedPrefixListResult
|
7280
|
+
|
7169
7281
|
ModifyNetworkInterfaceAttributeRequest.add_member(:attachment, Shapes::ShapeRef.new(shape: NetworkInterfaceAttachmentChanges, location_name: "attachment"))
|
7170
7282
|
ModifyNetworkInterfaceAttributeRequest.add_member(:description, Shapes::ShapeRef.new(shape: AttributeValue, location_name: "description"))
|
7171
7283
|
ModifyNetworkInterfaceAttributeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
@@ -7714,6 +7826,18 @@ module Aws::EC2
|
|
7714
7826
|
PrefixList.add_member(:prefix_list_name, Shapes::ShapeRef.new(shape: String, location_name: "prefixListName"))
|
7715
7827
|
PrefixList.struct_class = Types::PrefixList
|
7716
7828
|
|
7829
|
+
PrefixListAssociation.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
|
7830
|
+
PrefixListAssociation.add_member(:resource_owner, Shapes::ShapeRef.new(shape: String, location_name: "resourceOwner"))
|
7831
|
+
PrefixListAssociation.struct_class = Types::PrefixListAssociation
|
7832
|
+
|
7833
|
+
PrefixListAssociationSet.member = Shapes::ShapeRef.new(shape: PrefixListAssociation, location_name: "item")
|
7834
|
+
|
7835
|
+
PrefixListEntry.add_member(:cidr, Shapes::ShapeRef.new(shape: String, location_name: "cidr"))
|
7836
|
+
PrefixListEntry.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
7837
|
+
PrefixListEntry.struct_class = Types::PrefixListEntry
|
7838
|
+
|
7839
|
+
PrefixListEntrySet.member = Shapes::ShapeRef.new(shape: PrefixListEntry, location_name: "item")
|
7840
|
+
|
7717
7841
|
PrefixListId.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
7718
7842
|
PrefixListId.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: String, location_name: "prefixListId"))
|
7719
7843
|
PrefixListId.struct_class = Types::PrefixListId
|
@@ -7992,6 +8116,11 @@ module Aws::EC2
|
|
7992
8116
|
ReleaseHostsResult.add_member(:unsuccessful, Shapes::ShapeRef.new(shape: UnsuccessfulItemList, location_name: "unsuccessful"))
|
7993
8117
|
ReleaseHostsResult.struct_class = Types::ReleaseHostsResult
|
7994
8118
|
|
8119
|
+
RemovePrefixListEntries.member = Shapes::ShapeRef.new(shape: RemovePrefixListEntry)
|
8120
|
+
|
8121
|
+
RemovePrefixListEntry.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
8122
|
+
RemovePrefixListEntry.struct_class = Types::RemovePrefixListEntry
|
8123
|
+
|
7995
8124
|
ReplaceIamInstanceProfileAssociationRequest.add_member(:iam_instance_profile, Shapes::ShapeRef.new(shape: IamInstanceProfileSpecification, required: true, location_name: "IamInstanceProfile"))
|
7996
8125
|
ReplaceIamInstanceProfileAssociationRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: IamInstanceProfileAssociationId, required: true, location_name: "AssociationId"))
|
7997
8126
|
ReplaceIamInstanceProfileAssociationRequest.struct_class = Types::ReplaceIamInstanceProfileAssociationRequest
|
@@ -8021,6 +8150,7 @@ module Aws::EC2
|
|
8021
8150
|
|
8022
8151
|
ReplaceRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationCidrBlock"))
|
8023
8152
|
ReplaceRouteRequest.add_member(:destination_ipv_6_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "destinationIpv6CidrBlock"))
|
8153
|
+
ReplaceRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
|
8024
8154
|
ReplaceRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
8025
8155
|
ReplaceRouteRequest.add_member(:egress_only_internet_gateway_id, Shapes::ShapeRef.new(shape: EgressOnlyInternetGatewayId, location_name: "egressOnlyInternetGatewayId"))
|
8026
8156
|
ReplaceRouteRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: RouteGatewayId, location_name: "gatewayId"))
|
@@ -8346,6 +8476,15 @@ module Aws::EC2
|
|
8346
8476
|
RestoreAddressToClassicResult.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "status"))
|
8347
8477
|
RestoreAddressToClassicResult.struct_class = Types::RestoreAddressToClassicResult
|
8348
8478
|
|
8479
|
+
RestoreManagedPrefixListVersionRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
8480
|
+
RestoreManagedPrefixListVersionRequest.add_member(:prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, required: true, location_name: "PrefixListId"))
|
8481
|
+
RestoreManagedPrefixListVersionRequest.add_member(:previous_version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "PreviousVersion"))
|
8482
|
+
RestoreManagedPrefixListVersionRequest.add_member(:current_version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "CurrentVersion"))
|
8483
|
+
RestoreManagedPrefixListVersionRequest.struct_class = Types::RestoreManagedPrefixListVersionRequest
|
8484
|
+
|
8485
|
+
RestoreManagedPrefixListVersionResult.add_member(:prefix_list, Shapes::ShapeRef.new(shape: ManagedPrefixList, location_name: "prefixList"))
|
8486
|
+
RestoreManagedPrefixListVersionResult.struct_class = Types::RestoreManagedPrefixListVersionResult
|
8487
|
+
|
8349
8488
|
RevokeClientVpnIngressRequest.add_member(:client_vpn_endpoint_id, Shapes::ShapeRef.new(shape: ClientVpnEndpointId, required: true, location_name: "ClientVpnEndpointId"))
|
8350
8489
|
RevokeClientVpnIngressRequest.add_member(:target_network_cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetNetworkCidr"))
|
8351
8490
|
RevokeClientVpnIngressRequest.add_member(:access_group_id, Shapes::ShapeRef.new(shape: String, location_name: "AccessGroupId"))
|
@@ -10338,6 +10477,14 @@ module Aws::EC2
|
|
10338
10477
|
o.output = Shapes::ShapeRef.new(shape: CreateLocalGatewayRouteTableVpcAssociationResult)
|
10339
10478
|
end)
|
10340
10479
|
|
10480
|
+
api.add_operation(:create_managed_prefix_list, Seahorse::Model::Operation.new.tap do |o|
|
10481
|
+
o.name = "CreateManagedPrefixList"
|
10482
|
+
o.http_method = "POST"
|
10483
|
+
o.http_request_uri = "/"
|
10484
|
+
o.input = Shapes::ShapeRef.new(shape: CreateManagedPrefixListRequest)
|
10485
|
+
o.output = Shapes::ShapeRef.new(shape: CreateManagedPrefixListResult)
|
10486
|
+
end)
|
10487
|
+
|
10341
10488
|
api.add_operation(:create_nat_gateway, Seahorse::Model::Operation.new.tap do |o|
|
10342
10489
|
o.name = "CreateNatGateway"
|
10343
10490
|
o.http_method = "POST"
|
@@ -10722,6 +10869,14 @@ module Aws::EC2
|
|
10722
10869
|
o.output = Shapes::ShapeRef.new(shape: DeleteLocalGatewayRouteTableVpcAssociationResult)
|
10723
10870
|
end)
|
10724
10871
|
|
10872
|
+
api.add_operation(:delete_managed_prefix_list, Seahorse::Model::Operation.new.tap do |o|
|
10873
|
+
o.name = "DeleteManagedPrefixList"
|
10874
|
+
o.http_method = "POST"
|
10875
|
+
o.http_request_uri = "/"
|
10876
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteManagedPrefixListRequest)
|
10877
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteManagedPrefixListResult)
|
10878
|
+
end)
|
10879
|
+
|
10725
10880
|
api.add_operation(:delete_nat_gateway, Seahorse::Model::Operation.new.tap do |o|
|
10726
10881
|
o.name = "DeleteNatGateway"
|
10727
10882
|
o.http_method = "POST"
|
@@ -11696,6 +11851,20 @@ module Aws::EC2
|
|
11696
11851
|
)
|
11697
11852
|
end)
|
11698
11853
|
|
11854
|
+
api.add_operation(:describe_managed_prefix_lists, Seahorse::Model::Operation.new.tap do |o|
|
11855
|
+
o.name = "DescribeManagedPrefixLists"
|
11856
|
+
o.http_method = "POST"
|
11857
|
+
o.http_request_uri = "/"
|
11858
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeManagedPrefixListsRequest)
|
11859
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeManagedPrefixListsResult)
|
11860
|
+
o[:pager] = Aws::Pager.new(
|
11861
|
+
limit_key: "max_results",
|
11862
|
+
tokens: {
|
11863
|
+
"next_token" => "next_token"
|
11864
|
+
}
|
11865
|
+
)
|
11866
|
+
end)
|
11867
|
+
|
11699
11868
|
api.add_operation(:describe_moving_addresses, Seahorse::Model::Operation.new.tap do |o|
|
11700
11869
|
o.name = "DescribeMovingAddresses"
|
11701
11870
|
o.http_method = "POST"
|
@@ -12723,6 +12892,34 @@ module Aws::EC2
|
|
12723
12892
|
o.output = Shapes::ShapeRef.new(shape: GetLaunchTemplateDataResult)
|
12724
12893
|
end)
|
12725
12894
|
|
12895
|
+
api.add_operation(:get_managed_prefix_list_associations, Seahorse::Model::Operation.new.tap do |o|
|
12896
|
+
o.name = "GetManagedPrefixListAssociations"
|
12897
|
+
o.http_method = "POST"
|
12898
|
+
o.http_request_uri = "/"
|
12899
|
+
o.input = Shapes::ShapeRef.new(shape: GetManagedPrefixListAssociationsRequest)
|
12900
|
+
o.output = Shapes::ShapeRef.new(shape: GetManagedPrefixListAssociationsResult)
|
12901
|
+
o[:pager] = Aws::Pager.new(
|
12902
|
+
limit_key: "max_results",
|
12903
|
+
tokens: {
|
12904
|
+
"next_token" => "next_token"
|
12905
|
+
}
|
12906
|
+
)
|
12907
|
+
end)
|
12908
|
+
|
12909
|
+
api.add_operation(:get_managed_prefix_list_entries, Seahorse::Model::Operation.new.tap do |o|
|
12910
|
+
o.name = "GetManagedPrefixListEntries"
|
12911
|
+
o.http_method = "POST"
|
12912
|
+
o.http_request_uri = "/"
|
12913
|
+
o.input = Shapes::ShapeRef.new(shape: GetManagedPrefixListEntriesRequest)
|
12914
|
+
o.output = Shapes::ShapeRef.new(shape: GetManagedPrefixListEntriesResult)
|
12915
|
+
o[:pager] = Aws::Pager.new(
|
12916
|
+
limit_key: "max_results",
|
12917
|
+
tokens: {
|
12918
|
+
"next_token" => "next_token"
|
12919
|
+
}
|
12920
|
+
)
|
12921
|
+
end)
|
12922
|
+
|
12726
12923
|
api.add_operation(:get_password_data, Seahorse::Model::Operation.new.tap do |o|
|
12727
12924
|
o.name = "GetPasswordData"
|
12728
12925
|
o.http_method = "POST"
|
@@ -12987,6 +13184,14 @@ module Aws::EC2
|
|
12987
13184
|
o.output = Shapes::ShapeRef.new(shape: ModifyLaunchTemplateResult)
|
12988
13185
|
end)
|
12989
13186
|
|
13187
|
+
api.add_operation(:modify_managed_prefix_list, Seahorse::Model::Operation.new.tap do |o|
|
13188
|
+
o.name = "ModifyManagedPrefixList"
|
13189
|
+
o.http_method = "POST"
|
13190
|
+
o.http_request_uri = "/"
|
13191
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyManagedPrefixListRequest)
|
13192
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyManagedPrefixListResult)
|
13193
|
+
end)
|
13194
|
+
|
12990
13195
|
api.add_operation(:modify_network_interface_attribute, Seahorse::Model::Operation.new.tap do |o|
|
12991
13196
|
o.name = "ModifyNetworkInterfaceAttribute"
|
12992
13197
|
o.http_method = "POST"
|
@@ -13419,6 +13624,14 @@ module Aws::EC2
|
|
13419
13624
|
o.output = Shapes::ShapeRef.new(shape: RestoreAddressToClassicResult)
|
13420
13625
|
end)
|
13421
13626
|
|
13627
|
+
api.add_operation(:restore_managed_prefix_list_version, Seahorse::Model::Operation.new.tap do |o|
|
13628
|
+
o.name = "RestoreManagedPrefixListVersion"
|
13629
|
+
o.http_method = "POST"
|
13630
|
+
o.http_request_uri = "/"
|
13631
|
+
o.input = Shapes::ShapeRef.new(shape: RestoreManagedPrefixListVersionRequest)
|
13632
|
+
o.output = Shapes::ShapeRef.new(shape: RestoreManagedPrefixListVersionResult)
|
13633
|
+
end)
|
13634
|
+
|
13422
13635
|
api.add_operation(:revoke_client_vpn_ingress, Seahorse::Model::Operation.new.tap do |o|
|
13423
13636
|
o.name = "RevokeClientVpnIngress"
|
13424
13637
|
o.http_method = "POST"
|
@@ -227,7 +227,9 @@ module Aws::EC2
|
|
227
227
|
# @param [Hash] options ({})
|
228
228
|
# @option options [String] :cidr_block
|
229
229
|
# The IPv4 network range to allow or deny, in CIDR notation (for example
|
230
|
-
# `172.16.0.0/24`).
|
230
|
+
# `172.16.0.0/24`). We modify the specified CIDR block to its canonical
|
231
|
+
# form; for example, if you specify `100.68.0.18/18`, we modify it to
|
232
|
+
# `100.68.0.0/18`.
|
231
233
|
# @option options [Boolean] :dry_run
|
232
234
|
# Checks whether you have the required permissions for the action,
|
233
235
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -921,7 +921,9 @@ module Aws::EC2
|
|
921
921
|
# The AZ ID or the Local Zone ID of the subnet.
|
922
922
|
# @option options [required, String] :cidr_block
|
923
923
|
# The IPv4 network range for the subnet, in CIDR notation. For example,
|
924
|
-
# `10.0.0.0/24`.
|
924
|
+
# `10.0.0.0/24`. We modify the specified CIDR block to its canonical
|
925
|
+
# form; for example, if you specify `100.68.0.18/18`, we modify it to
|
926
|
+
# `100.68.0.0/18`.
|
925
927
|
# @option options [String] :ipv_6_cidr_block
|
926
928
|
# The IPv6 network range for the subnet, in CIDR notation. The subnet
|
927
929
|
# size must use a /64 prefix length.
|
@@ -1161,7 +1163,9 @@ module Aws::EC2
|
|
1161
1163
|
# @param [Hash] options ({})
|
1162
1164
|
# @option options [required, String] :cidr_block
|
1163
1165
|
# The IPv4 network range for the VPC, in CIDR notation. For example,
|
1164
|
-
# `10.0.0.0/16`.
|
1166
|
+
# `10.0.0.0/16`. We modify the specified CIDR block to its canonical
|
1167
|
+
# form; for example, if you specify `100.68.0.18/18`, we modify it to
|
1168
|
+
# `100.68.0.0/18`.
|
1165
1169
|
# @option options [Boolean] :amazon_provided_ipv_6_cidr_block
|
1166
1170
|
# Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
|
1167
1171
|
# for the VPC. You cannot specify the range of IP addresses, or the size
|
@@ -2422,9 +2426,6 @@ module Aws::EC2
|
|
2422
2426
|
# * `attachment.instance-owner-id` - The owner ID of the instance to
|
2423
2427
|
# which the network interface is attached.
|
2424
2428
|
#
|
2425
|
-
# * `attachment.nat-gateway-id` - The ID of the NAT gateway to which the
|
2426
|
-
# network interface is attached.
|
2427
|
-
#
|
2428
2429
|
# * `attachment.status` - The status of the attachment (`attaching` \|
|
2429
2430
|
# `attached` \| `detaching` \| `detached`).
|
2430
2431
|
#
|
@@ -2761,8 +2762,8 @@ module Aws::EC2
|
|
2761
2762
|
# * `egress.ip-permission.ipv6-cidr` - An IPv6 CIDR block for an
|
2762
2763
|
# outbound security group rule.
|
2763
2764
|
#
|
2764
|
-
# * `egress.ip-permission.prefix-list-id` - The ID
|
2765
|
-
#
|
2765
|
+
# * `egress.ip-permission.prefix-list-id` - The ID of a prefix list to
|
2766
|
+
# which a security group rule allows outbound access.
|
2766
2767
|
#
|
2767
2768
|
# * `egress.ip-permission.protocol` - The IP protocol for an outbound
|
2768
2769
|
# security group rule (`tcp` \| `udp` \| `icmp` or a protocol number).
|
@@ -2792,8 +2793,8 @@ module Aws::EC2
|
|
2792
2793
|
# * `ip-permission.ipv6-cidr` - An IPv6 CIDR block for an inbound
|
2793
2794
|
# security group rule.
|
2794
2795
|
#
|
2795
|
-
# * `ip-permission.prefix-list-id` - The ID
|
2796
|
-
#
|
2796
|
+
# * `ip-permission.prefix-list-id` - The ID of a prefix list from which
|
2797
|
+
# a security group rule allows inbound access.
|
2797
2798
|
#
|
2798
2799
|
# * `ip-permission.protocol` - The IP protocol for an inbound security
|
2799
2800
|
# group rule (`tcp` \| `udp` \| `icmp` or a protocol number).
|