aws-sdk-ec2 1.585.0 → 1.587.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 493c6eeca3b7380c4d1c7167a7cf7454aa9035820017cb6d1d427585e7de9229
4
- data.tar.gz: 9c5b663bffb083e1c792e8b328aca1564b15b18f670ca950a10973c2510f773a
3
+ metadata.gz: b930ad78fe7d33169b8fc03e15476fbb93bf68027a1fd1ed9f08b3e7e64e9f72
4
+ data.tar.gz: d1b4182679e76fe86e07953b9b36d242698d8d06ad8bffb0b28d55ebe40d63e9
5
5
  SHA512:
6
- metadata.gz: a35d8f58317898f7951c1458e2e639109de294c5f46282564ace95b25356ce4a4ffd605d2536bafc853ff8883858612747b77a77173afddee4a7d087a5c6d2c0
7
- data.tar.gz: 7a1b9241eb1199be601835911b329e14761e14b59c7f770b5fa80c48ed1efd92918857af21e2f4378d84417783a2ee42e21fee72f2aee9fdc488aa08da833336
6
+ metadata.gz: 1aa8612d8d5deaecae407ba35c6f57ebfc7323e0ff5c2156fc563e3f7646d0801b203342186b06ee9522d9e32a5bf475337877d08921e3da0073aa11111fc35d
7
+ data.tar.gz: b41694668eeac103070aa45e0c1844bc4758180bb39aff054dfbfc31d6c6ea921f34a3ebdd8c95a93309b6bd15b7fb7f75c36b27d6213bb224a385b7af0eba0a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.587.0 (2025-12-22)
5
+ ------------------
6
+
7
+ * Feature - Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use.
8
+
9
+ 1.586.0 (2025-12-18)
10
+ ------------------
11
+
12
+ * Feature - This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs.
13
+
4
14
  1.585.0 (2025-12-15)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.585.0
1
+ 1.587.0
@@ -7758,6 +7758,7 @@ module Aws::EC2
7758
7758
  # require_encryption_in_transit: false,
7759
7759
  # },
7760
7760
  # image_id: "String",
7761
+ # availability_zone_id: "AvailabilityZoneId",
7761
7762
  # },
7762
7763
  # ],
7763
7764
  # },
@@ -7859,6 +7860,7 @@ module Aws::EC2
7859
7860
  # resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
7860
7861
  # resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
7861
7862
  # resp.errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
7863
+ # resp.errors[0].launch_template_and_overrides.overrides.availability_zone_id #=> String
7862
7864
  # resp.errors[0].lifecycle #=> String, one of "spot", "on-demand"
7863
7865
  # resp.errors[0].error_code #=> String
7864
7866
  # resp.errors[0].error_message #=> String
@@ -7930,6 +7932,7 @@ module Aws::EC2
7930
7932
  # resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
7931
7933
  # resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
7932
7934
  # resp.instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
7935
+ # resp.instances[0].launch_template_and_overrides.overrides.availability_zone_id #=> String
7933
7936
  # resp.instances[0].lifecycle #=> String, one of "spot", "on-demand"
7934
7937
  # resp.instances[0].instance_ids #=> Array
7935
7938
  # resp.instances[0].instance_ids[0] #=> String
@@ -13174,6 +13177,9 @@ module Aws::EC2
13174
13177
  #
13175
13178
  # * Rack – No usage restrictions.
13176
13179
  #
13180
+ # @option params [String] :linked_group_id
13181
+ # Reserved for future use.
13182
+ #
13177
13183
  # @option params [Boolean] :dry_run
13178
13184
  # Checks whether you have the required permissions for the operation,
13179
13185
  # without actually making the request, and provides an error response.
@@ -13223,6 +13229,7 @@ module Aws::EC2
13223
13229
  # },
13224
13230
  # ],
13225
13231
  # spread_level: "host", # accepts host, rack
13232
+ # linked_group_id: "PlacementGroupId",
13226
13233
  # dry_run: false,
13227
13234
  # group_name: "String",
13228
13235
  # strategy: "cluster", # accepts cluster, spread, partition
@@ -13240,6 +13247,7 @@ module Aws::EC2
13240
13247
  # resp.placement_group.tags[0].value #=> String
13241
13248
  # resp.placement_group.group_arn #=> String
13242
13249
  # resp.placement_group.spread_level #=> String, one of "host", "rack"
13250
+ # resp.placement_group.linked_group_id #=> String
13243
13251
  #
13244
13252
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup AWS API Documentation
13245
13253
  #
@@ -27670,6 +27678,7 @@ module Aws::EC2
27670
27678
  # resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.volume_size #=> Integer
27671
27679
  # resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
27672
27680
  # resp.fleets[0].launch_template_configs[0].overrides[0].block_device_mappings[0].no_device #=> String
27681
+ # resp.fleets[0].launch_template_configs[0].overrides[0].availability_zone_id #=> String
27673
27682
  # resp.fleets[0].target_capacity_specification.total_target_capacity #=> Integer
27674
27683
  # resp.fleets[0].target_capacity_specification.on_demand_target_capacity #=> Integer
27675
27684
  # resp.fleets[0].target_capacity_specification.spot_target_capacity #=> Integer
@@ -27766,6 +27775,7 @@ module Aws::EC2
27766
27775
  # resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
27767
27776
  # resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
27768
27777
  # resp.fleets[0].errors[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
27778
+ # resp.fleets[0].errors[0].launch_template_and_overrides.overrides.availability_zone_id #=> String
27769
27779
  # resp.fleets[0].errors[0].lifecycle #=> String, one of "spot", "on-demand"
27770
27780
  # resp.fleets[0].errors[0].error_code #=> String
27771
27781
  # resp.fleets[0].errors[0].error_message #=> String
@@ -27837,6 +27847,7 @@ module Aws::EC2
27837
27847
  # resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_size #=> Integer
27838
27848
  # resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1", "gp3"
27839
27849
  # resp.fleets[0].instances[0].launch_template_and_overrides.overrides.block_device_mappings[0].no_device #=> String
27850
+ # resp.fleets[0].instances[0].launch_template_and_overrides.overrides.availability_zone_id #=> String
27840
27851
  # resp.fleets[0].instances[0].lifecycle #=> String, one of "spot", "on-demand"
27841
27852
  # resp.fleets[0].instances[0].instance_ids #=> Array
27842
27853
  # resp.fleets[0].instances[0].instance_ids[0] #=> String
@@ -31788,7 +31799,7 @@ module Aws::EC2
31788
31799
  #
31789
31800
  # * `requester-id` - The ID of the entity that launched the instance on
31790
31801
  # your behalf (for example, Amazon Web Services Management Console,
31791
- # Amazon EC2 Auto Scaling, and so on).
31802
+ # Auto Scaling, and so on).
31792
31803
  #
31793
31804
  # * `reservation-id` - The ID of the instance's reservation. A
31794
31805
  # reservation ID is created any time you launch an instance. A
@@ -36982,6 +36993,7 @@ module Aws::EC2
36982
36993
  # resp.placement_groups[0].tags[0].value #=> String
36983
36994
  # resp.placement_groups[0].group_arn #=> String
36984
36995
  # resp.placement_groups[0].spread_level #=> String, one of "host", "rack"
36996
+ # resp.placement_groups[0].linked_group_id #=> String
36985
36997
  #
36986
36998
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
36987
36999
  #
@@ -40168,6 +40180,7 @@ module Aws::EC2
40168
40180
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone #=> String
40169
40181
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.group_name #=> String
40170
40182
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
40183
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].placement.availability_zone_id #=> String
40171
40184
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].ramdisk_id #=> String
40172
40185
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].spot_price #=> String
40173
40186
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_specifications[0].subnet_id #=> String
@@ -40280,6 +40293,7 @@ module Aws::EC2
40280
40293
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.baseline_performance_factors.cpu.references #=> Array
40281
40294
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.baseline_performance_factors.cpu.references[0].instance_family #=> String
40282
40295
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].instance_requirements.require_encryption_in_transit #=> Boolean
40296
+ # resp.spot_fleet_request_configs[0].spot_fleet_request_config.launch_template_configs[0].overrides[0].availability_zone_id #=> String
40283
40297
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.spot_price #=> String
40284
40298
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.target_capacity #=> Integer
40285
40299
  # resp.spot_fleet_request_configs[0].spot_fleet_request_config.on_demand_target_capacity #=> Integer
@@ -40638,6 +40652,7 @@ module Aws::EC2
40638
40652
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
40639
40653
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
40640
40654
  # resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
40655
+ # resp.spot_instance_requests[0].launch_specification.placement.availability_zone_id #=> String
40641
40656
  # resp.spot_instance_requests[0].launch_specification.ramdisk_id #=> String
40642
40657
  # resp.spot_instance_requests[0].launch_specification.subnet_id #=> String
40643
40658
  # resp.spot_instance_requests[0].launch_specification.security_groups #=> Array
@@ -56820,6 +56835,7 @@ module Aws::EC2
56820
56835
  # require_encryption_in_transit: false,
56821
56836
  # },
56822
56837
  # image_id: "String",
56838
+ # availability_zone_id: "AvailabilityZoneId",
56823
56839
  # },
56824
56840
  # ],
56825
56841
  # },
@@ -60323,6 +60339,7 @@ module Aws::EC2
60323
60339
  # },
60324
60340
  # require_encryption_in_transit: false,
60325
60341
  # },
60342
+ # availability_zone_id: "AvailabilityZoneId",
60326
60343
  # },
60327
60344
  # ],
60328
60345
  # },
@@ -66352,6 +66369,7 @@ module Aws::EC2
66352
66369
  # availability_zone: "String",
66353
66370
  # group_name: "PlacementGroupName",
66354
66371
  # tenancy: "default", # accepts default, dedicated, host
66372
+ # availability_zone_id: "String",
66355
66373
  # },
66356
66374
  # ramdisk_id: "String",
66357
66375
  # spot_price: "String",
@@ -66518,6 +66536,7 @@ module Aws::EC2
66518
66536
  # },
66519
66537
  # require_encryption_in_transit: false,
66520
66538
  # },
66539
+ # availability_zone_id: "AvailabilityZoneId",
66521
66540
  # },
66522
66541
  # ],
66523
66542
  # },
@@ -66854,6 +66873,7 @@ module Aws::EC2
66854
66873
  # availability_zone: "String",
66855
66874
  # group_name: "PlacementGroupName",
66856
66875
  # tenancy: "default", # accepts default, dedicated, host
66876
+ # availability_zone_id: "String",
66857
66877
  # },
66858
66878
  # ramdisk_id: "RamdiskId",
66859
66879
  # subnet_id: "SubnetId",
@@ -66956,6 +66976,7 @@ module Aws::EC2
66956
66976
  # resp.spot_instance_requests[0].launch_specification.placement.availability_zone #=> String
66957
66977
  # resp.spot_instance_requests[0].launch_specification.placement.group_name #=> String
66958
66978
  # resp.spot_instance_requests[0].launch_specification.placement.tenancy #=> String, one of "default", "dedicated", "host"
66979
+ # resp.spot_instance_requests[0].launch_specification.placement.availability_zone_id #=> String
66959
66980
  # resp.spot_instance_requests[0].launch_specification.ramdisk_id #=> String
66960
66981
  # resp.spot_instance_requests[0].launch_specification.subnet_id #=> String
66961
66982
  # resp.spot_instance_requests[0].launch_specification.security_groups #=> Array
@@ -71672,7 +71693,7 @@ module Aws::EC2
71672
71693
  tracer: tracer
71673
71694
  )
71674
71695
  context[:gem_name] = 'aws-sdk-ec2'
71675
- context[:gem_version] = '1.585.0'
71696
+ context[:gem_version] = '1.587.0'
71676
71697
  Seahorse::Client::Request.new(handlers, context)
71677
71698
  end
71678
71699
 
@@ -6171,6 +6171,7 @@ module Aws::EC2
6171
6171
  CreatePlacementGroupRequest.add_member(:partition_count, Shapes::ShapeRef.new(shape: Integer, location_name: "PartitionCount"))
6172
6172
  CreatePlacementGroupRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
6173
6173
  CreatePlacementGroupRequest.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "SpreadLevel"))
6174
+ CreatePlacementGroupRequest.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "LinkedGroupId"))
6174
6175
  CreatePlacementGroupRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
6175
6176
  CreatePlacementGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
6176
6177
  CreatePlacementGroupRequest.add_member(:strategy, Shapes::ShapeRef.new(shape: PlacementStrategy, location_name: "strategy"))
@@ -10850,6 +10851,7 @@ module Aws::EC2
10850
10851
  FleetLaunchTemplateOverrides.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirements, location_name: "instanceRequirements"))
10851
10852
  FleetLaunchTemplateOverrides.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "imageId"))
10852
10853
  FleetLaunchTemplateOverrides.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: BlockDeviceMappingResponseList, location_name: "blockDeviceMappingSet"))
10854
+ FleetLaunchTemplateOverrides.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
10853
10855
  FleetLaunchTemplateOverrides.struct_class = Types::FleetLaunchTemplateOverrides
10854
10856
 
10855
10857
  FleetLaunchTemplateOverridesList.member = Shapes::ShapeRef.new(shape: FleetLaunchTemplateOverrides, location_name: "item")
@@ -10866,6 +10868,7 @@ module Aws::EC2
10866
10868
  FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
10867
10869
  FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
10868
10870
  FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
10871
+ FleetLaunchTemplateOverridesRequest.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "AvailabilityZoneId"))
10869
10872
  FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
10870
10873
 
10871
10874
  FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
@@ -13572,6 +13575,7 @@ module Aws::EC2
13572
13575
  LaunchTemplateOverrides.add_member(:weighted_capacity, Shapes::ShapeRef.new(shape: Double, location_name: "weightedCapacity"))
13573
13576
  LaunchTemplateOverrides.add_member(:priority, Shapes::ShapeRef.new(shape: Double, location_name: "priority"))
13574
13577
  LaunchTemplateOverrides.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirements, location_name: "instanceRequirements"))
13578
+ LaunchTemplateOverrides.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: AvailabilityZoneId, location_name: "availabilityZoneId"))
13575
13579
  LaunchTemplateOverrides.struct_class = Types::LaunchTemplateOverrides
13576
13580
 
13577
13581
  LaunchTemplateOverridesList.member = Shapes::ShapeRef.new(shape: LaunchTemplateOverrides, location_name: "item")
@@ -15523,6 +15527,7 @@ module Aws::EC2
15523
15527
  PlacementGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
15524
15528
  PlacementGroup.add_member(:group_arn, Shapes::ShapeRef.new(shape: String, location_name: "groupArn"))
15525
15529
  PlacementGroup.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
15530
+ PlacementGroup.add_member(:linked_group_id, Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "linkedGroupId"))
15526
15531
  PlacementGroup.struct_class = Types::PlacementGroup
15527
15532
 
15528
15533
  PlacementGroupIdStringList.member = Shapes::ShapeRef.new(shape: PlacementGroupId, location_name: "GroupId")
@@ -17397,6 +17402,7 @@ module Aws::EC2
17397
17402
  SpotPlacement.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
17398
17403
  SpotPlacement.add_member(:group_name, Shapes::ShapeRef.new(shape: PlacementGroupName, location_name: "groupName"))
17399
17404
  SpotPlacement.add_member(:tenancy, Shapes::ShapeRef.new(shape: Tenancy, location_name: "tenancy"))
17405
+ SpotPlacement.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
17400
17406
  SpotPlacement.struct_class = Types::SpotPlacement
17401
17407
 
17402
17408
  SpotPlacementScore.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "region"))
@@ -79,6 +79,12 @@ module Aws::EC2
79
79
  data[:spread_level]
80
80
  end
81
81
 
82
+ # Reserved for future use.
83
+ # @return [String]
84
+ def linked_group_id
85
+ data[:linked_group_id]
86
+ end
87
+
82
88
  # @!endgroup
83
89
 
84
90
  # @return [Client]
@@ -645,7 +651,7 @@ module Aws::EC2
645
651
  #
646
652
  # * `requester-id` - The ID of the entity that launched the instance on
647
653
  # your behalf (for example, Amazon Web Services Management Console,
648
- # Amazon EC2 Auto Scaling, and so on).
654
+ # Auto Scaling, and so on).
649
655
  #
650
656
  # * `reservation-id` - The ID of the instance's reservation. A
651
657
  # reservation ID is created any time you launch an instance. A
@@ -1104,6 +1104,7 @@ module Aws::EC2
1104
1104
  # },
1105
1105
  # ],
1106
1106
  # spread_level: "host", # accepts host, rack
1107
+ # linked_group_id: "PlacementGroupId",
1107
1108
  # dry_run: false,
1108
1109
  # group_name: "String",
1109
1110
  # strategy: "cluster", # accepts cluster, spread, partition
@@ -1120,6 +1121,8 @@ module Aws::EC2
1120
1121
  # * Host – You can use `host` only with Outpost placement groups.
1121
1122
  #
1122
1123
  # * Rack – No usage restrictions.
1124
+ # @option options [String] :linked_group_id
1125
+ # Reserved for future use.
1123
1126
  # @option options [Boolean] :dry_run
1124
1127
  # Checks whether you have the required permissions for the operation,
1125
1128
  # without actually making the request, and provides an error response.
@@ -2971,7 +2974,7 @@ module Aws::EC2
2971
2974
  #
2972
2975
  # * `requester-id` - The ID of the entity that launched the instance on
2973
2976
  # your behalf (for example, Amazon Web Services Management Console,
2974
- # Amazon EC2 Auto Scaling, and so on).
2977
+ # Auto Scaling, and so on).
2975
2978
  #
2976
2979
  # * `reservation-id` - The ID of the instance's reservation. A
2977
2980
  # reservation ID is created any time you launch an instance. A
@@ -1581,7 +1581,7 @@ module Aws::EC2
1581
1581
  #
1582
1582
  # * `requester-id` - The ID of the entity that launched the instance on
1583
1583
  # your behalf (for example, Amazon Web Services Management Console,
1584
- # Amazon EC2 Auto Scaling, and so on).
1584
+ # Auto Scaling, and so on).
1585
1585
  #
1586
1586
  # * `reservation-id` - The ID of the instance's reservation. A
1587
1587
  # reservation ID is created any time you launch an instance. A
@@ -12990,6 +12990,10 @@ module Aws::EC2
12990
12990
  # * Rack – No usage restrictions.
12991
12991
  # @return [String]
12992
12992
  #
12993
+ # @!attribute [rw] linked_group_id
12994
+ # Reserved for future use.
12995
+ # @return [String]
12996
+ #
12993
12997
  # @!attribute [rw] dry_run
12994
12998
  # Checks whether you have the required permissions for the operation,
12995
12999
  # without actually making the request, and provides an error response.
@@ -13014,6 +13018,7 @@ module Aws::EC2
13014
13018
  :partition_count,
13015
13019
  :tag_specifications,
13016
13020
  :spread_level,
13021
+ :linked_group_id,
13017
13022
  :dry_run,
13018
13023
  :group_name,
13019
13024
  :strategy)
@@ -26480,7 +26485,7 @@ module Aws::EC2
26480
26485
  #
26481
26486
  # * `requester-id` - The ID of the entity that launched the instance
26482
26487
  # on your behalf (for example, Amazon Web Services Management
26483
- # Console, Amazon EC2 Auto Scaling, and so on).
26488
+ # Console, Auto Scaling, and so on).
26484
26489
  #
26485
26490
  # * `reservation-id` - The ID of the instance's reservation. A
26486
26491
  # reservation ID is created any time you launch an instance. A
@@ -41368,7 +41373,11 @@ module Aws::EC2
41368
41373
  # @return [String]
41369
41374
  #
41370
41375
  # @!attribute [rw] availability_zone
41371
- # The Availability Zone in which to launch the instances.
41376
+ # The Availability Zone in which to launch the instances. For example,
41377
+ # `us-east-2a`.
41378
+ #
41379
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
41380
+ # in the request, but not both.
41372
41381
  # @return [String]
41373
41382
  #
41374
41383
  # @!attribute [rw] weighted_capacity
@@ -41483,6 +41492,14 @@ module Aws::EC2
41483
41492
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html
41484
41493
  # @return [Array<Types::BlockDeviceMappingResponse>]
41485
41494
  #
41495
+ # @!attribute [rw] availability_zone_id
41496
+ # The ID of the Availability Zone in which to launch the instances.
41497
+ # For example, `use2-az1`.
41498
+ #
41499
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
41500
+ # in the request, but not both.
41501
+ # @return [String]
41502
+ #
41486
41503
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetLaunchTemplateOverrides AWS API Documentation
41487
41504
  #
41488
41505
  class FleetLaunchTemplateOverrides < Struct.new(
@@ -41495,7 +41512,8 @@ module Aws::EC2
41495
41512
  :placement,
41496
41513
  :instance_requirements,
41497
41514
  :image_id,
41498
- :block_device_mappings)
41515
+ :block_device_mappings,
41516
+ :availability_zone_id)
41499
41517
  SENSITIVE = []
41500
41518
  include Aws::Structure
41501
41519
  end
@@ -41535,7 +41553,11 @@ module Aws::EC2
41535
41553
  # @return [String]
41536
41554
  #
41537
41555
  # @!attribute [rw] availability_zone
41538
- # The Availability Zone in which to launch the instances.
41556
+ # The Availability Zone in which to launch the instances. For example,
41557
+ # `us-east-2a`.
41558
+ #
41559
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
41560
+ # in the request, but not both.
41539
41561
  # @return [String]
41540
41562
  #
41541
41563
  # @!attribute [rw] weighted_capacity
@@ -41650,6 +41672,14 @@ module Aws::EC2
41650
41672
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-launch-template.html#use-an-ssm-parameter-instead-of-an-ami-id
41651
41673
  # @return [String]
41652
41674
  #
41675
+ # @!attribute [rw] availability_zone_id
41676
+ # The ID of the Availability Zone in which to launch the instances.
41677
+ # For example, `use2-az1`.
41678
+ #
41679
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
41680
+ # in the request, but not both.
41681
+ # @return [String]
41682
+ #
41653
41683
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetLaunchTemplateOverridesRequest AWS API Documentation
41654
41684
  #
41655
41685
  class FleetLaunchTemplateOverridesRequest < Struct.new(
@@ -41662,7 +41692,8 @@ module Aws::EC2
41662
41692
  :placement,
41663
41693
  :block_device_mappings,
41664
41694
  :instance_requirements,
41665
- :image_id)
41695
+ :image_id,
41696
+ :availability_zone_id)
41666
41697
  SENSITIVE = []
41667
41698
  include Aws::Structure
41668
41699
  end
@@ -56909,7 +56940,11 @@ module Aws::EC2
56909
56940
  # @return [String]
56910
56941
  #
56911
56942
  # @!attribute [rw] availability_zone
56912
- # The Availability Zone in which to launch the instances.
56943
+ # The Availability Zone in which to launch the instances. For example,
56944
+ # `us-east-2a`.
56945
+ #
56946
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
56947
+ # in the request, but not both.
56913
56948
  # @return [String]
56914
56949
  #
56915
56950
  # @!attribute [rw] weighted_capacity
@@ -56964,6 +56999,14 @@ module Aws::EC2
56964
56999
  # </note>
56965
57000
  # @return [Types::InstanceRequirements]
56966
57001
  #
57002
+ # @!attribute [rw] availability_zone_id
57003
+ # The ID of the Availability Zone in which to launch the instances.
57004
+ # For example, `use2-az1`.
57005
+ #
57006
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
57007
+ # in the request, but not both.
57008
+ # @return [String]
57009
+ #
56967
57010
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateOverrides AWS API Documentation
56968
57011
  #
56969
57012
  class LaunchTemplateOverrides < Struct.new(
@@ -56973,7 +57016,8 @@ module Aws::EC2
56973
57016
  :availability_zone,
56974
57017
  :weighted_capacity,
56975
57018
  :priority,
56976
- :instance_requirements)
57019
+ :instance_requirements,
57020
+ :availability_zone_id)
56977
57021
  SENSITIVE = []
56978
57022
  include Aws::Structure
56979
57023
  end
@@ -67499,6 +67543,10 @@ module Aws::EC2
67499
67543
  # groups can be spread across hosts.
67500
67544
  # @return [String]
67501
67545
  #
67546
+ # @!attribute [rw] linked_group_id
67547
+ # Reserved for future use.
67548
+ # @return [String]
67549
+ #
67502
67550
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PlacementGroup AWS API Documentation
67503
67551
  #
67504
67552
  class PlacementGroup < Struct.new(
@@ -67509,7 +67557,8 @@ module Aws::EC2
67509
67557
  :group_id,
67510
67558
  :tags,
67511
67559
  :group_arn,
67512
- :spread_level)
67560
+ :spread_level,
67561
+ :linked_group_id)
67513
67562
  SENSITIVE = []
67514
67563
  include Aws::Structure
67515
67564
  end
@@ -77747,10 +77796,13 @@ module Aws::EC2
77747
77796
  # Describes Spot Instance placement.
77748
77797
  #
77749
77798
  # @!attribute [rw] availability_zone
77750
- # The Availability Zone.
77799
+ # The Availability Zone. For example, `us-east-2a`.
77751
77800
  #
77752
77801
  # \[Spot Fleet only\] To specify multiple Availability Zones, separate
77753
- # them using commas; for example, "us-west-2a, us-west-2b".
77802
+ # them using commas; for example, "`us-east-2a`, `us-east-2b`".
77803
+ #
77804
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
77805
+ # in the request, but not both.
77754
77806
  # @return [String]
77755
77807
  #
77756
77808
  # @!attribute [rw] group_name
@@ -77763,12 +77815,23 @@ module Aws::EC2
77763
77815
  # hardware. The `host` tenancy is not supported for Spot Instances.
77764
77816
  # @return [String]
77765
77817
  #
77818
+ # @!attribute [rw] availability_zone_id
77819
+ # The ID of the Availability Zone. For example, `use2-az1`.
77820
+ #
77821
+ # \[Spot Fleet only\] To specify multiple Availability Zones, separate
77822
+ # them using commas; for example, "`use2-az1`, `use2-bz1`".
77823
+ #
77824
+ # Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
77825
+ # in the request, but not both.
77826
+ # @return [String]
77827
+ #
77766
77828
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotPlacement AWS API Documentation
77767
77829
  #
77768
77830
  class SpotPlacement < Struct.new(
77769
77831
  :availability_zone,
77770
77832
  :group_name,
77771
- :tenancy)
77833
+ :tenancy,
77834
+ :availability_zone_id)
77772
77835
  SENSITIVE = []
77773
77836
  include Aws::Structure
77774
77837
  end
@@ -1425,7 +1425,7 @@ module Aws::EC2
1425
1425
  #
1426
1426
  # * `requester-id` - The ID of the entity that launched the instance on
1427
1427
  # your behalf (for example, Amazon Web Services Management Console,
1428
- # Amazon EC2 Auto Scaling, and so on).
1428
+ # Auto Scaling, and so on).
1429
1429
  #
1430
1430
  # * `reservation-id` - The ID of the instance's reservation. A
1431
1431
  # reservation ID is created any time you launch an instance. A
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.585.0'
81
+ GEM_VERSION = '1.587.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -1663,7 +1663,8 @@ module Aws
1663
1663
  }?,
1664
1664
  require_encryption_in_transit: bool?
1665
1665
  }?,
1666
- image_id: ::String?
1666
+ image_id: ::String?,
1667
+ availability_zone_id: ::String?
1667
1668
  },
1668
1669
  ]?
1669
1670
  },
@@ -3342,6 +3343,7 @@ module Aws
3342
3343
  },
3343
3344
  ],
3344
3345
  ?spread_level: ("host" | "rack"),
3346
+ ?linked_group_id: ::String,
3345
3347
  ?dry_run: bool,
3346
3348
  ?group_name: ::String,
3347
3349
  ?strategy: ("cluster" | "spread" | "partition")
@@ -12056,7 +12058,8 @@ module Aws
12056
12058
  }?,
12057
12059
  require_encryption_in_transit: bool?
12058
12060
  }?,
12059
- image_id: ::String?
12061
+ image_id: ::String?,
12062
+ availability_zone_id: ::String?
12060
12063
  },
12061
12064
  ]?
12062
12065
  },
@@ -12870,7 +12873,8 @@ module Aws
12870
12873
  }?
12871
12874
  }?,
12872
12875
  require_encryption_in_transit: bool?
12873
- }?
12876
+ }?,
12877
+ availability_zone_id: ::String?
12874
12878
  },
12875
12879
  ]?
12876
12880
  },
@@ -14252,7 +14256,8 @@ module Aws
14252
14256
  placement: {
14253
14257
  availability_zone: ::String?,
14254
14258
  group_name: ::String?,
14255
- tenancy: ("default" | "dedicated" | "host")?
14259
+ tenancy: ("default" | "dedicated" | "host")?,
14260
+ availability_zone_id: ::String?
14256
14261
  }?,
14257
14262
  ramdisk_id: ::String?,
14258
14263
  spot_price: ::String?,
@@ -14418,7 +14423,8 @@ module Aws
14418
14423
  }?
14419
14424
  }?,
14420
14425
  require_encryption_in_transit: bool?
14421
- }?
14426
+ }?,
14427
+ availability_zone_id: ::String?
14422
14428
  },
14423
14429
  ]?
14424
14430
  },
@@ -14568,7 +14574,8 @@ module Aws
14568
14574
  placement: {
14569
14575
  availability_zone: ::String?,
14570
14576
  group_name: ::String?,
14571
- tenancy: ("default" | "dedicated" | "host")?
14577
+ tenancy: ("default" | "dedicated" | "host")?,
14578
+ availability_zone_id: ::String?
14572
14579
  }?,
14573
14580
  ramdisk_id: ::String?,
14574
14581
  subnet_id: ::String?,
@@ -39,6 +39,9 @@ module Aws
39
39
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#spread_level-instance_method
40
40
  def spread_level: () -> ("host" | "rack")
41
41
 
42
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#linked_group_id-instance_method
43
+ def linked_group_id: () -> ::String
44
+
42
45
  def client: () -> Client
43
46
 
44
47
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/PlacementGroup.html#load-instance_method
data/sig/resource.rbs CHANGED
@@ -476,6 +476,7 @@ module Aws
476
476
  },
477
477
  ],
478
478
  ?spread_level: ("host" | "rack"),
479
+ ?linked_group_id: ::String,
479
480
  ?dry_run: bool,
480
481
  ?group_name: ::String,
481
482
  ?strategy: ("cluster" | "spread" | "partition")
data/sig/types.rbs CHANGED
@@ -2788,6 +2788,7 @@ module Aws::EC2
2788
2788
  attr_accessor partition_count: ::Integer
2789
2789
  attr_accessor tag_specifications: ::Array[Types::TagSpecification]
2790
2790
  attr_accessor spread_level: ("host" | "rack")
2791
+ attr_accessor linked_group_id: ::String
2791
2792
  attr_accessor dry_run: bool
2792
2793
  attr_accessor group_name: ::String
2793
2794
  attr_accessor strategy: ("cluster" | "spread" | "partition")
@@ -9105,6 +9106,7 @@ module Aws::EC2
9105
9106
  attr_accessor instance_requirements: Types::InstanceRequirements
9106
9107
  attr_accessor image_id: ::String
9107
9108
  attr_accessor block_device_mappings: ::Array[Types::BlockDeviceMappingResponse]
9109
+ attr_accessor availability_zone_id: ::String
9108
9110
  SENSITIVE: []
9109
9111
  end
9110
9112
 
@@ -9119,6 +9121,7 @@ module Aws::EC2
9119
9121
  attr_accessor block_device_mappings: ::Array[Types::FleetBlockDeviceMappingRequest]
9120
9122
  attr_accessor instance_requirements: Types::InstanceRequirementsRequest
9121
9123
  attr_accessor image_id: ::String
9124
+ attr_accessor availability_zone_id: ::String
9122
9125
  SENSITIVE: []
9123
9126
  end
9124
9127
 
@@ -12213,6 +12216,7 @@ module Aws::EC2
12213
12216
  attr_accessor weighted_capacity: ::Float
12214
12217
  attr_accessor priority: ::Float
12215
12218
  attr_accessor instance_requirements: Types::InstanceRequirements
12219
+ attr_accessor availability_zone_id: ::String
12216
12220
  SENSITIVE: []
12217
12221
  end
12218
12222
 
@@ -14548,6 +14552,7 @@ module Aws::EC2
14548
14552
  attr_accessor tags: ::Array[Types::Tag]
14549
14553
  attr_accessor group_arn: ::String
14550
14554
  attr_accessor spread_level: ("host" | "rack")
14555
+ attr_accessor linked_group_id: ::String
14551
14556
  SENSITIVE: []
14552
14557
  end
14553
14558
 
@@ -16630,6 +16635,7 @@ module Aws::EC2
16630
16635
  attr_accessor availability_zone: ::String
16631
16636
  attr_accessor group_name: ::String
16632
16637
  attr_accessor tenancy: ("default" | "dedicated" | "host")
16638
+ attr_accessor availability_zone_id: ::String
16633
16639
  SENSITIVE: []
16634
16640
  end
16635
16641
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.585.0
4
+ version: 1.587.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services