aws-sdk-ec2 1.264.0 → 1.268.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -430,7 +430,8 @@ module Aws::EC2
430
430
  #
431
431
  # @!attribute [rw] network_border_group
432
432
  # The name of the unique set of Availability Zones, Local Zones, or
433
- # Wavelength Zones from which AWS advertises IP addresses.
433
+ # Wavelength Zones from which Amazon Web Services advertises IP
434
+ # addresses.
434
435
  # @return [String]
435
436
  #
436
437
  # @!attribute [rw] customer_owned_ip
@@ -584,24 +585,20 @@ module Aws::EC2
584
585
  #
585
586
  # @!attribute [rw] network_border_group
586
587
  # A unique set of Availability Zones, Local Zones, or Wavelength Zones
587
- # from which AWS advertises IP addresses. Use this parameter to limit
588
- # the IP address to this location. IP addresses cannot move between
589
- # network border groups.
588
+ # from which Amazon Web Services advertises IP addresses. Use this
589
+ # parameter to limit the IP address to this location. IP addresses
590
+ # cannot move between network border groups.
590
591
  #
591
592
  # Use [DescribeAvailabilityZones][1] to view the network border
592
593
  # groups.
593
594
  #
594
- # <note markdown="1"> You cannot use a network border group with EC2 Classic. If you
595
- # attempt this operation on EC2 classic, you will receive an
596
- # `InvalidParameterCombination` error. For more information, see
597
- # [Error Codes][2].
598
- #
599
- # </note>
595
+ # You cannot use a network border group with EC2 Classic. If you
596
+ # attempt this operation on EC2 Classic, you receive an
597
+ # `InvalidParameterCombination` error.
600
598
  #
601
599
  #
602
600
  #
603
601
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html
604
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html
605
602
  # @return [String]
606
603
  #
607
604
  # @!attribute [rw] customer_owned_ipv_4_pool
@@ -651,7 +648,7 @@ module Aws::EC2
651
648
  #
652
649
  # @!attribute [rw] network_border_group
653
650
  # The set of Availability Zones, Local Zones, or Wavelength Zones from
654
- # which AWS advertises IP addresses.
651
+ # which Amazon Web Services advertises IP addresses.
655
652
  # @return [String]
656
653
  #
657
654
  # @!attribute [rw] domain
@@ -3335,6 +3332,72 @@ module Aws::EC2
3335
3332
  include Aws::Structure
3336
3333
  end
3337
3334
 
3335
+ # Describes a Capacity Reservation Fleet cancellation error.
3336
+ #
3337
+ # @!attribute [rw] code
3338
+ # The error code.
3339
+ # @return [String]
3340
+ #
3341
+ # @!attribute [rw] message
3342
+ # The error message.
3343
+ # @return [String]
3344
+ #
3345
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelCapacityReservationFleetError AWS API Documentation
3346
+ #
3347
+ class CancelCapacityReservationFleetError < Struct.new(
3348
+ :code,
3349
+ :message)
3350
+ SENSITIVE = []
3351
+ include Aws::Structure
3352
+ end
3353
+
3354
+ # @note When making an API call, you may pass CancelCapacityReservationFleetsRequest
3355
+ # data as a hash:
3356
+ #
3357
+ # {
3358
+ # dry_run: false,
3359
+ # capacity_reservation_fleet_ids: ["CapacityReservationFleetId"], # required
3360
+ # }
3361
+ #
3362
+ # @!attribute [rw] dry_run
3363
+ # Checks whether you have the required permissions for the action,
3364
+ # without actually making the request, and provides an error response.
3365
+ # If you have the required permissions, the error response is
3366
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
3367
+ # @return [Boolean]
3368
+ #
3369
+ # @!attribute [rw] capacity_reservation_fleet_ids
3370
+ # The IDs of the Capacity Reservation Fleets to cancel.
3371
+ # @return [Array<String>]
3372
+ #
3373
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelCapacityReservationFleetsRequest AWS API Documentation
3374
+ #
3375
+ class CancelCapacityReservationFleetsRequest < Struct.new(
3376
+ :dry_run,
3377
+ :capacity_reservation_fleet_ids)
3378
+ SENSITIVE = []
3379
+ include Aws::Structure
3380
+ end
3381
+
3382
+ # @!attribute [rw] successful_fleet_cancellations
3383
+ # Information about the Capacity Reservation Fleets that were
3384
+ # successfully cancelled.
3385
+ # @return [Array<Types::CapacityReservationFleetCancellationState>]
3386
+ #
3387
+ # @!attribute [rw] failed_fleet_cancellations
3388
+ # Information about the Capacity Reservation Fleets that could not be
3389
+ # cancelled.
3390
+ # @return [Array<Types::FailedCapacityReservationFleetCancellationResult>]
3391
+ #
3392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CancelCapacityReservationFleetsResult AWS API Documentation
3393
+ #
3394
+ class CancelCapacityReservationFleetsResult < Struct.new(
3395
+ :successful_fleet_cancellations,
3396
+ :failed_fleet_cancellations)
3397
+ SENSITIVE = []
3398
+ include Aws::Structure
3399
+ end
3400
+
3338
3401
  # @note When making an API call, you may pass CancelCapacityReservationRequest
3339
3402
  # data as a hash:
3340
3403
  #
@@ -3849,6 +3912,12 @@ module Aws::EC2
3849
3912
  # Reservation was created.
3850
3913
  # @return [String]
3851
3914
  #
3915
+ # @!attribute [rw] capacity_reservation_fleet_id
3916
+ # The ID of the Capacity Reservation Fleet to which the Capacity
3917
+ # Reservation belongs. Only valid for Capacity Reservations that were
3918
+ # created by a Capacity Reservation Fleet.
3919
+ # @return [String]
3920
+ #
3852
3921
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservation AWS API Documentation
3853
3922
  #
3854
3923
  class CapacityReservation < Struct.new(
@@ -3871,7 +3940,172 @@ module Aws::EC2
3871
3940
  :instance_match_criteria,
3872
3941
  :create_date,
3873
3942
  :tags,
3874
- :outpost_arn)
3943
+ :outpost_arn,
3944
+ :capacity_reservation_fleet_id)
3945
+ SENSITIVE = []
3946
+ include Aws::Structure
3947
+ end
3948
+
3949
+ # Information about a Capacity Reservation Fleet.
3950
+ #
3951
+ # @!attribute [rw] capacity_reservation_fleet_id
3952
+ # The ID of the Capacity Reservation Fleet.
3953
+ # @return [String]
3954
+ #
3955
+ # @!attribute [rw] capacity_reservation_fleet_arn
3956
+ # The ARN of the Capacity Reservation Fleet.
3957
+ # @return [String]
3958
+ #
3959
+ # @!attribute [rw] state
3960
+ # The state of the Capacity Reservation Fleet. Possible states
3961
+ # include:
3962
+ #
3963
+ # * `submitted` - The Capacity Reservation Fleet request has been
3964
+ # submitted and Amazon Elastic Compute Cloud is preparing to create
3965
+ # the Capacity Reservations.
3966
+ #
3967
+ # * `modifying` - The Capacity Reservation Fleet is being modified.
3968
+ # The Fleet remains in this state until the modification is
3969
+ # complete.
3970
+ #
3971
+ # * `active` - The Capacity Reservation Fleet has fulfilled its total
3972
+ # target capacity and it is attempting to maintain this capacity.
3973
+ # The Fleet remains in this state until it is modified or deleted.
3974
+ #
3975
+ # * `partially_fulfilled` - The Capacity Reservation Fleet has
3976
+ # partially fulfilled its total target capacity. There is
3977
+ # insufficient Amazon EC2 to fulfill the total target capacity. The
3978
+ # Fleet is attempting to asynchronously fulfill its total target
3979
+ # capacity.
3980
+ #
3981
+ # * `expiring` - The Capacity Reservation Fleet has reach its end date
3982
+ # and it is in the process of expiring. One or more of its Capacity
3983
+ # reservations might still be active.
3984
+ #
3985
+ # * `expired` - The Capacity Reservation Fleet has reach its end date.
3986
+ # The Fleet and its Capacity Reservations are expired. The Fleet
3987
+ # can't create new Capacity Reservations.
3988
+ #
3989
+ # * `cancelling` - The Capacity Reservation Fleet is in the process of
3990
+ # being cancelled. One or more of its Capacity reservations might
3991
+ # still be active.
3992
+ #
3993
+ # * `cancelled` - The Capacity Reservation Fleet has been manually
3994
+ # cancelled. The Fleet and its Capacity Reservations are cancelled
3995
+ # and the Fleet can't create new Capacity Reservations.
3996
+ #
3997
+ # * `failed` - The Capacity Reservation Fleet failed to reserve
3998
+ # capacity for the specified instance types.
3999
+ # @return [String]
4000
+ #
4001
+ # @!attribute [rw] total_target_capacity
4002
+ # The total number of capacity units for which the Capacity
4003
+ # Reservation Fleet reserves capacity. For more information, see
4004
+ # [Total target capacity][1] in the Amazon EC2 User Guide.
4005
+ #
4006
+ #
4007
+ #
4008
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
4009
+ # @return [Integer]
4010
+ #
4011
+ # @!attribute [rw] total_fulfilled_capacity
4012
+ # The capacity units that have been fulfilled.
4013
+ # @return [Float]
4014
+ #
4015
+ # @!attribute [rw] tenancy
4016
+ # The tenancy of the Capacity Reservation Fleet. Tenancies include:
4017
+ #
4018
+ # * `default` - The Capacity Reservation Fleet is created on hardware
4019
+ # that is shared with other Amazon Web Services accounts.
4020
+ #
4021
+ # * `dedicated` - The Capacity Reservation Fleet is created on
4022
+ # single-tenant hardware that is dedicated to a single Amazon Web
4023
+ # Services account.
4024
+ # @return [String]
4025
+ #
4026
+ # @!attribute [rw] end_date
4027
+ # The date and time at which the Capacity Reservation Fleet expires.
4028
+ # @return [Time]
4029
+ #
4030
+ # @!attribute [rw] create_time
4031
+ # The date and time at which the Capacity Reservation Fleet was
4032
+ # created.
4033
+ # @return [Time]
4034
+ #
4035
+ # @!attribute [rw] instance_match_criteria
4036
+ # Indicates the type of instance launches that the Capacity
4037
+ # Reservation Fleet accepts. All Capacity Reservations in the Fleet
4038
+ # inherit this instance matching criteria.
4039
+ #
4040
+ # Currently, Capacity Reservation Fleets support `open` instance
4041
+ # matching criteria only. This means that instances that have matching
4042
+ # attributes (instance type, platform, and Availability Zone) run in
4043
+ # the Capacity Reservations automatically. Instances do not need to
4044
+ # explicitly target a Capacity Reservation Fleet to use its reserved
4045
+ # capacity.
4046
+ # @return [String]
4047
+ #
4048
+ # @!attribute [rw] allocation_strategy
4049
+ # The strategy used by the Capacity Reservation Fleet to determine
4050
+ # which of the specified instance types to use. For more information,
4051
+ # see For more information, see [ Allocation strategy][1] in the
4052
+ # Amazon EC2 User Guide.
4053
+ #
4054
+ #
4055
+ #
4056
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#allocation-strategy
4057
+ # @return [String]
4058
+ #
4059
+ # @!attribute [rw] instance_type_specifications
4060
+ # Information about the instance types for which to reserve the
4061
+ # capacity.
4062
+ # @return [Array<Types::FleetCapacityReservation>]
4063
+ #
4064
+ # @!attribute [rw] tags
4065
+ # The tags assigned to the Capacity Reservation Fleet.
4066
+ # @return [Array<Types::Tag>]
4067
+ #
4068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationFleet AWS API Documentation
4069
+ #
4070
+ class CapacityReservationFleet < Struct.new(
4071
+ :capacity_reservation_fleet_id,
4072
+ :capacity_reservation_fleet_arn,
4073
+ :state,
4074
+ :total_target_capacity,
4075
+ :total_fulfilled_capacity,
4076
+ :tenancy,
4077
+ :end_date,
4078
+ :create_time,
4079
+ :instance_match_criteria,
4080
+ :allocation_strategy,
4081
+ :instance_type_specifications,
4082
+ :tags)
4083
+ SENSITIVE = []
4084
+ include Aws::Structure
4085
+ end
4086
+
4087
+ # Describes a Capacity Reservation Fleet that was successfully
4088
+ # cancelled.
4089
+ #
4090
+ # @!attribute [rw] current_fleet_state
4091
+ # The current state of the Capacity Reservation Fleet.
4092
+ # @return [String]
4093
+ #
4094
+ # @!attribute [rw] previous_fleet_state
4095
+ # The previous state of the Capacity Reservation Fleet.
4096
+ # @return [String]
4097
+ #
4098
+ # @!attribute [rw] capacity_reservation_fleet_id
4099
+ # The ID of the Capacity Reservation Fleet that was successfully
4100
+ # cancelled.
4101
+ # @return [String]
4102
+ #
4103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationFleetCancellationState AWS API Documentation
4104
+ #
4105
+ class CapacityReservationFleetCancellationState < Struct.new(
4106
+ :current_fleet_state,
4107
+ :previous_fleet_state,
4108
+ :capacity_reservation_fleet_id)
3875
4109
  SENSITIVE = []
3876
4110
  include Aws::Structure
3877
4111
  end
@@ -4925,11 +5159,11 @@ module Aws::EC2
4925
5159
  # @return [String]
4926
5160
  #
4927
5161
  # @!attribute [rw] aws_account_id
4928
- # The AWS account ID.
5162
+ # The Amazon Web Services account ID.
4929
5163
  # @return [String]
4930
5164
  #
4931
5165
  # @!attribute [rw] aws_service
4932
- # The AWS service.
5166
+ # The Amazon Web Services service.
4933
5167
  # @return [String]
4934
5168
  #
4935
5169
  # @!attribute [rw] co_ip
@@ -5230,7 +5464,7 @@ module Aws::EC2
5230
5464
  # @!attribute [rw] client_token
5231
5465
  # Unique, case-sensitive identifier that you provide to ensure the
5232
5466
  # idempotency of the request. For more information, see [Ensuring
5233
- # Idempotency][1].
5467
+ # idempotency][1].
5234
5468
  #
5235
5469
  #
5236
5470
  #
@@ -5622,6 +5856,218 @@ module Aws::EC2
5622
5856
  include Aws::Structure
5623
5857
  end
5624
5858
 
5859
+ # @note When making an API call, you may pass CreateCapacityReservationFleetRequest
5860
+ # data as a hash:
5861
+ #
5862
+ # {
5863
+ # allocation_strategy: "String",
5864
+ # client_token: "String",
5865
+ # instance_type_specifications: [ # required
5866
+ # {
5867
+ # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
5868
+ # instance_platform: "Linux/UNIX", # accepts Linux/UNIX, Red Hat Enterprise Linux, SUSE Linux, Windows, Windows with SQL Server, Windows with SQL Server Enterprise, Windows with SQL Server Standard, Windows with SQL Server Web, Linux with SQL Server Standard, Linux with SQL Server Web, Linux with SQL Server Enterprise
5869
+ # weight: 1.0,
5870
+ # availability_zone: "String",
5871
+ # availability_zone_id: "String",
5872
+ # ebs_optimized: false,
5873
+ # priority: 1,
5874
+ # },
5875
+ # ],
5876
+ # tenancy: "default", # accepts default
5877
+ # total_target_capacity: 1, # required
5878
+ # end_date: Time.now,
5879
+ # instance_match_criteria: "open", # accepts open
5880
+ # tag_specifications: [
5881
+ # {
5882
+ # resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-endpoint, vpc-endpoint-service, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5883
+ # tags: [
5884
+ # {
5885
+ # key: "String",
5886
+ # value: "String",
5887
+ # },
5888
+ # ],
5889
+ # },
5890
+ # ],
5891
+ # dry_run: false,
5892
+ # }
5893
+ #
5894
+ # @!attribute [rw] allocation_strategy
5895
+ # The strategy used by the Capacity Reservation Fleet to determine
5896
+ # which of the specified instance types to use. Currently, only the
5897
+ # `prioritized` allocation strategy is supported. For more
5898
+ # information, see [ Allocation strategy][1] in the Amazon EC2 User
5899
+ # Guide.
5900
+ #
5901
+ # Valid values: `prioritized`
5902
+ #
5903
+ #
5904
+ #
5905
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#allocation-strategy
5906
+ # @return [String]
5907
+ #
5908
+ # @!attribute [rw] client_token
5909
+ # Unique, case-sensitive identifier that you provide to ensure the
5910
+ # idempotency of the request. For more information, see [Ensure
5911
+ # Idempotency][1].
5912
+ #
5913
+ # **A suitable default value is auto-generated.** You should normally
5914
+ # not need to pass this option.
5915
+ #
5916
+ #
5917
+ #
5918
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
5919
+ # @return [String]
5920
+ #
5921
+ # @!attribute [rw] instance_type_specifications
5922
+ # Information about the instance types for which to reserve the
5923
+ # capacity.
5924
+ # @return [Array<Types::ReservationFleetInstanceSpecification>]
5925
+ #
5926
+ # @!attribute [rw] tenancy
5927
+ # Indicates the tenancy of the Capacity Reservation Fleet. All
5928
+ # Capacity Reservations in the Fleet inherit this tenancy. The
5929
+ # Capacity Reservation Fleet can have one of the following tenancy
5930
+ # settings:
5931
+ #
5932
+ # * `default` - The Capacity Reservation Fleet is created on hardware
5933
+ # that is shared with other Amazon Web Services accounts.
5934
+ #
5935
+ # * `dedicated` - The Capacity Reservations are created on
5936
+ # single-tenant hardware that is dedicated to a single Amazon Web
5937
+ # Services account.
5938
+ # @return [String]
5939
+ #
5940
+ # @!attribute [rw] total_target_capacity
5941
+ # The total number of capacity units to be reserved by the Capacity
5942
+ # Reservation Fleet. This value, together with the instance type
5943
+ # weights that you assign to each instance type used by the Fleet
5944
+ # determine the number of instances for which the Fleet reserves
5945
+ # capacity. Both values are based on units that make sense for your
5946
+ # workload. For more information, see [ Total target capacity][1] in
5947
+ # the Amazon EC2 User Guide.
5948
+ #
5949
+ #
5950
+ #
5951
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
5952
+ # @return [Integer]
5953
+ #
5954
+ # @!attribute [rw] end_date
5955
+ # The date and time at which the Capacity Reservation Fleet expires.
5956
+ # When the Capacity Reservation Fleet expires, its state changes to
5957
+ # `expired` and all of the Capacity Reservations in the Fleet expire.
5958
+ #
5959
+ # The Capacity Reservation Fleet expires within an hour after the
5960
+ # specified time. For example, if you specify `5/31/2019`, `13:30:55`,
5961
+ # the Capacity Reservation Fleet is guaranteed to expire between
5962
+ # `13:30:55` and `14:30:55` on `5/31/2019`.
5963
+ # @return [Time]
5964
+ #
5965
+ # @!attribute [rw] instance_match_criteria
5966
+ # Indicates the type of instance launches that the Capacity
5967
+ # Reservation Fleet accepts. All Capacity Reservations in the Fleet
5968
+ # inherit this instance matching criteria.
5969
+ #
5970
+ # Currently, Capacity Reservation Fleets support `open` instance
5971
+ # matching criteria only. This means that instances that have matching
5972
+ # attributes (instance type, platform, and Availability Zone) run in
5973
+ # the Capacity Reservations automatically. Instances do not need to
5974
+ # explicitly target a Capacity Reservation Fleet to use its reserved
5975
+ # capacity.
5976
+ # @return [String]
5977
+ #
5978
+ # @!attribute [rw] tag_specifications
5979
+ # The tags to assign to the Capacity Reservation Fleet. The tags are
5980
+ # automatically assigned to the Capacity Reservations in the Fleet.
5981
+ # @return [Array<Types::TagSpecification>]
5982
+ #
5983
+ # @!attribute [rw] dry_run
5984
+ # Checks whether you have the required permissions for the action,
5985
+ # without actually making the request, and provides an error response.
5986
+ # If you have the required permissions, the error response is
5987
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
5988
+ # @return [Boolean]
5989
+ #
5990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationFleetRequest AWS API Documentation
5991
+ #
5992
+ class CreateCapacityReservationFleetRequest < Struct.new(
5993
+ :allocation_strategy,
5994
+ :client_token,
5995
+ :instance_type_specifications,
5996
+ :tenancy,
5997
+ :total_target_capacity,
5998
+ :end_date,
5999
+ :instance_match_criteria,
6000
+ :tag_specifications,
6001
+ :dry_run)
6002
+ SENSITIVE = []
6003
+ include Aws::Structure
6004
+ end
6005
+
6006
+ # @!attribute [rw] capacity_reservation_fleet_id
6007
+ # The ID of the Capacity Reservation Fleet.
6008
+ # @return [String]
6009
+ #
6010
+ # @!attribute [rw] state
6011
+ # The status of the Capacity Reservation Fleet.
6012
+ # @return [String]
6013
+ #
6014
+ # @!attribute [rw] total_target_capacity
6015
+ # The total number of capacity units for which the Capacity
6016
+ # Reservation Fleet reserves capacity.
6017
+ # @return [Integer]
6018
+ #
6019
+ # @!attribute [rw] total_fulfilled_capacity
6020
+ # The requested capacity units that have been successfully reserved.
6021
+ # @return [Float]
6022
+ #
6023
+ # @!attribute [rw] instance_match_criteria
6024
+ # The instance matching criteria for the Capacity Reservation Fleet.
6025
+ # @return [String]
6026
+ #
6027
+ # @!attribute [rw] allocation_strategy
6028
+ # The allocation strategy used by the Capacity Reservation Fleet.
6029
+ # @return [String]
6030
+ #
6031
+ # @!attribute [rw] create_time
6032
+ # The date and time at which the Capacity Reservation Fleet was
6033
+ # created.
6034
+ # @return [Time]
6035
+ #
6036
+ # @!attribute [rw] end_date
6037
+ # The date and time at which the Capacity Reservation Fleet expires.
6038
+ # @return [Time]
6039
+ #
6040
+ # @!attribute [rw] tenancy
6041
+ # Indicates the tenancy of Capacity Reservation Fleet.
6042
+ # @return [String]
6043
+ #
6044
+ # @!attribute [rw] fleet_capacity_reservations
6045
+ # Information about the individual Capacity Reservations in the
6046
+ # Capacity Reservation Fleet.
6047
+ # @return [Array<Types::FleetCapacityReservation>]
6048
+ #
6049
+ # @!attribute [rw] tags
6050
+ # The tags assigned to the Capacity Reservation Fleet.
6051
+ # @return [Array<Types::Tag>]
6052
+ #
6053
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationFleetResult AWS API Documentation
6054
+ #
6055
+ class CreateCapacityReservationFleetResult < Struct.new(
6056
+ :capacity_reservation_fleet_id,
6057
+ :state,
6058
+ :total_target_capacity,
6059
+ :total_fulfilled_capacity,
6060
+ :instance_match_criteria,
6061
+ :allocation_strategy,
6062
+ :create_time,
6063
+ :end_date,
6064
+ :tenancy,
6065
+ :fleet_capacity_reservations,
6066
+ :tags)
6067
+ SENSITIVE = []
6068
+ include Aws::Structure
6069
+ end
6070
+
5625
6071
  # @note When making an API call, you may pass CreateCapacityReservationRequest
5626
6072
  # data as a hash:
5627
6073
  #
@@ -6632,7 +7078,7 @@ module Aws::EC2
6632
7078
  # placement: {
6633
7079
  # availability_zone: "String",
6634
7080
  # affinity: "String",
6635
- # group_name: "String",
7081
+ # group_name: "PlacementGroupName",
6636
7082
  # partition_number: 1,
6637
7083
  # host_id: "String",
6638
7084
  # tenancy: "default", # accepts default, dedicated, host
@@ -6947,8 +7393,8 @@ module Aws::EC2
6947
7393
  # specify at least one field.
6948
7394
  #
6949
7395
  # Specify the fields using the `$\{field-id\}` format, separated by
6950
- # spaces. For the CLI, use single quotation marks (' ') to surround
6951
- # the parameter value.
7396
+ # spaces. For the CLI, surround this parameter value with single
7397
+ # quotes on Linux or double quotes on Windows.
6952
7398
  #
6953
7399
  #
6954
7400
  #
@@ -8006,8 +8452,8 @@ module Aws::EC2
8006
8452
  # {
8007
8453
  # destination_cidr_block: "String", # required
8008
8454
  # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
8009
- # dry_run: false,
8010
8455
  # local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId", # required
8456
+ # dry_run: false,
8011
8457
  # }
8012
8458
  #
8013
8459
  # @!attribute [rw] destination_cidr_block
@@ -8019,6 +8465,10 @@ module Aws::EC2
8019
8465
  # The ID of the local gateway route table.
8020
8466
  # @return [String]
8021
8467
  #
8468
+ # @!attribute [rw] local_gateway_virtual_interface_group_id
8469
+ # The ID of the virtual interface group.
8470
+ # @return [String]
8471
+ #
8022
8472
  # @!attribute [rw] dry_run
8023
8473
  # Checks whether you have the required permissions for the action,
8024
8474
  # without actually making the request, and provides an error response.
@@ -8026,17 +8476,13 @@ module Aws::EC2
8026
8476
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
8027
8477
  # @return [Boolean]
8028
8478
  #
8029
- # @!attribute [rw] local_gateway_virtual_interface_group_id
8030
- # The ID of the virtual interface group.
8031
- # @return [String]
8032
- #
8033
8479
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteRequest AWS API Documentation
8034
8480
  #
8035
8481
  class CreateLocalGatewayRouteRequest < Struct.new(
8036
8482
  :destination_cidr_block,
8037
8483
  :local_gateway_route_table_id,
8038
- :dry_run,
8039
- :local_gateway_virtual_interface_group_id)
8484
+ :local_gateway_virtual_interface_group_id,
8485
+ :dry_run)
8040
8486
  SENSITIVE = []
8041
8487
  include Aws::Structure
8042
8488
  end
@@ -9820,11 +10266,11 @@ module Aws::EC2
9820
10266
  # ],
9821
10267
  # availability_zone: "String",
9822
10268
  # availability_zone_id: "String",
10269
+ # cidr_block: "String", # required
9823
10270
  # ipv_6_cidr_block: "String",
9824
10271
  # outpost_arn: "String",
9825
10272
  # vpc_id: "VpcId", # required
9826
10273
  # dry_run: false,
9827
- # cidr_block: "String", # required
9828
10274
  # }
9829
10275
  #
9830
10276
  # @!attribute [rw] tag_specifications
@@ -9855,6 +10301,13 @@ module Aws::EC2
9855
10301
  # The AZ ID or the Local Zone ID of the subnet.
9856
10302
  # @return [String]
9857
10303
  #
10304
+ # @!attribute [rw] cidr_block
10305
+ # The IPv4 network range for the subnet, in CIDR notation. For
10306
+ # example, `10.0.0.0/24`. We modify the specified CIDR block to its
10307
+ # canonical form; for example, if you specify `100.68.0.18/18`, we
10308
+ # modify it to `100.68.0.0/18`.
10309
+ # @return [String]
10310
+ #
9858
10311
  # @!attribute [rw] ipv_6_cidr_block
9859
10312
  # The IPv6 network range for the subnet, in CIDR notation. The subnet
9860
10313
  # size must use a /64 prefix length.
@@ -9877,24 +10330,17 @@ module Aws::EC2
9877
10330
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
9878
10331
  # @return [Boolean]
9879
10332
  #
9880
- # @!attribute [rw] cidr_block
9881
- # The IPv4 network range for the subnet, in CIDR notation. For
9882
- # example, `10.0.0.0/24`. We modify the specified CIDR block to its
9883
- # canonical form; for example, if you specify `100.68.0.18/18`, we
9884
- # modify it to `100.68.0.0/18`.
9885
- # @return [String]
9886
- #
9887
10333
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetRequest AWS API Documentation
9888
10334
  #
9889
10335
  class CreateSubnetRequest < Struct.new(
9890
10336
  :tag_specifications,
9891
10337
  :availability_zone,
9892
10338
  :availability_zone_id,
10339
+ :cidr_block,
9893
10340
  :ipv_6_cidr_block,
9894
10341
  :outpost_arn,
9895
10342
  :vpc_id,
9896
- :dry_run,
9897
- :cidr_block)
10343
+ :dry_run)
9898
10344
  SENSITIVE = []
9899
10345
  include Aws::Structure
9900
10346
  end
@@ -9992,8 +10438,8 @@ module Aws::EC2
9992
10438
  #
9993
10439
  # @!attribute [rw] client_token
9994
10440
  # Unique, case-sensitive identifier that you provide to ensure the
9995
- # idempotency of the request. For more information, see [How to Ensure
9996
- # Idempotency][1].
10441
+ # idempotency of the request. For more information, see [How to ensure
10442
+ # idempotency][1].
9997
10443
  #
9998
10444
  # **A suitable default value is auto-generated.** You should normally
9999
10445
  # not need to pass this option.
@@ -10020,8 +10466,8 @@ module Aws::EC2
10020
10466
  #
10021
10467
  # @!attribute [rw] client_token
10022
10468
  # Unique, case-sensitive identifier that you provide to ensure the
10023
- # idempotency of the request. For more information, see [How to Ensure
10024
- # Idempotency][1].
10469
+ # idempotency of the request. For more information, see [How to ensure
10470
+ # idempotency][1].
10025
10471
  #
10026
10472
  #
10027
10473
  #
@@ -10066,7 +10512,7 @@ module Aws::EC2
10066
10512
  # @return [String]
10067
10513
  #
10068
10514
  # @!attribute [rw] traffic_direction
10069
- # The type of traffic (`ingress` \| `egress`).
10515
+ # The type of traffic.
10070
10516
  # @return [String]
10071
10517
  #
10072
10518
  # @!attribute [rw] rule_number
@@ -10076,7 +10522,7 @@ module Aws::EC2
10076
10522
  # @return [Integer]
10077
10523
  #
10078
10524
  # @!attribute [rw] rule_action
10079
- # The action to take (`accept` \| `reject`) on the filtered traffic.
10525
+ # The action to take on the filtered traffic.
10080
10526
  # @return [String]
10081
10527
  #
10082
10528
  # @!attribute [rw] destination_port_range
@@ -10119,8 +10565,8 @@ module Aws::EC2
10119
10565
  #
10120
10566
  # @!attribute [rw] client_token
10121
10567
  # Unique, case-sensitive identifier that you provide to ensure the
10122
- # idempotency of the request. For more information, see [How to Ensure
10123
- # Idempotency][1].
10568
+ # idempotency of the request. For more information, see [How to ensure
10569
+ # idempotency][1].
10124
10570
  #
10125
10571
  # **A suitable default value is auto-generated.** You should normally
10126
10572
  # not need to pass this option.
@@ -10155,8 +10601,8 @@ module Aws::EC2
10155
10601
  #
10156
10602
  # @!attribute [rw] client_token
10157
10603
  # Unique, case-sensitive identifier that you provide to ensure the
10158
- # idempotency of the request. For more information, see [How to Ensure
10159
- # Idempotency][1].
10604
+ # idempotency of the request. For more information, see [How to ensure
10605
+ # idempotency][1].
10160
10606
  #
10161
10607
  #
10162
10608
  #
@@ -10258,8 +10704,8 @@ module Aws::EC2
10258
10704
  #
10259
10705
  # @!attribute [rw] client_token
10260
10706
  # Unique, case-sensitive identifier that you provide to ensure the
10261
- # idempotency of the request. For more information, see [How to Ensure
10262
- # Idempotency][1].
10707
+ # idempotency of the request. For more information, see [How to ensure
10708
+ # idempotency][1].
10263
10709
  #
10264
10710
  # **A suitable default value is auto-generated.** You should normally
10265
10711
  # not need to pass this option.
@@ -10292,8 +10738,8 @@ module Aws::EC2
10292
10738
  #
10293
10739
  # @!attribute [rw] client_token
10294
10740
  # Unique, case-sensitive identifier that you provide to ensure the
10295
- # idempotency of the request. For more information, see [How to Ensure
10296
- # Idempotency][1].
10741
+ # idempotency of the request. For more information, see [How to ensure
10742
+ # idempotency][1].
10297
10743
  #
10298
10744
  #
10299
10745
  #
@@ -10357,8 +10803,8 @@ module Aws::EC2
10357
10803
  #
10358
10804
  # @!attribute [rw] client_token
10359
10805
  # Unique, case-sensitive identifier that you provide to ensure the
10360
- # idempotency of the request. For more information, see [How to Ensure
10361
- # Idempotency][1].
10806
+ # idempotency of the request. For more information, see [How to ensure
10807
+ # idempotency][1].
10362
10808
  #
10363
10809
  # **A suitable default value is auto-generated.** You should normally
10364
10810
  # not need to pass this option.
@@ -10387,8 +10833,8 @@ module Aws::EC2
10387
10833
  #
10388
10834
  # @!attribute [rw] client_token
10389
10835
  # Unique, case-sensitive identifier that you provide to ensure the
10390
- # idempotency of the request. For more information, see [How to Ensure
10391
- # Idempotency][1].
10836
+ # idempotency of the request. For more information, see [How to ensure
10837
+ # idempotency][1].
10392
10838
  #
10393
10839
  #
10394
10840
  #
@@ -11444,8 +11890,8 @@ module Aws::EC2
11444
11890
  #
11445
11891
  # @!attribute [rw] client_token
11446
11892
  # Unique, case-sensitive identifier that you provide to ensure the
11447
- # idempotency of the request. For more information, see [How to Ensure
11448
- # Idempotency][1].
11893
+ # idempotency of the request. For more information, see [How to ensure
11894
+ # idempotency][1].
11449
11895
  #
11450
11896
  #
11451
11897
  #
@@ -11559,8 +12005,8 @@ module Aws::EC2
11559
12005
  #
11560
12006
  # @!attribute [rw] client_token
11561
12007
  # Unique, case-sensitive identifier that you provide to ensure the
11562
- # idempotency of the request. For more information, see [How to Ensure
11563
- # Idempotency][1].
12008
+ # idempotency of the request. For more information, see [How to ensure
12009
+ # idempotency][1].
11564
12010
  #
11565
12011
  #
11566
12012
  #
@@ -11679,8 +12125,8 @@ module Aws::EC2
11679
12125
  #
11680
12126
  # @!attribute [rw] client_token
11681
12127
  # Unique, case-sensitive identifier that you provide to ensure the
11682
- # idempotency of the request. For more information, see [How to Ensure
11683
- # Idempotency][1].
12128
+ # idempotency of the request. For more information, see [How to ensure
12129
+ # idempotency][1].
11684
12130
  #
11685
12131
  #
11686
12132
  #
@@ -15309,6 +15755,91 @@ module Aws::EC2
15309
15755
  include Aws::Structure
15310
15756
  end
15311
15757
 
15758
+ # @note When making an API call, you may pass DescribeCapacityReservationFleetsRequest
15759
+ # data as a hash:
15760
+ #
15761
+ # {
15762
+ # capacity_reservation_fleet_ids: ["CapacityReservationFleetId"],
15763
+ # next_token: "String",
15764
+ # max_results: 1,
15765
+ # filters: [
15766
+ # {
15767
+ # name: "String",
15768
+ # values: ["String"],
15769
+ # },
15770
+ # ],
15771
+ # dry_run: false,
15772
+ # }
15773
+ #
15774
+ # @!attribute [rw] capacity_reservation_fleet_ids
15775
+ # The IDs of the Capacity Reservation Fleets to describe.
15776
+ # @return [Array<String>]
15777
+ #
15778
+ # @!attribute [rw] next_token
15779
+ # The token to use to retrieve the next page of results.
15780
+ # @return [String]
15781
+ #
15782
+ # @!attribute [rw] max_results
15783
+ # The maximum number of results to return for the request in a single
15784
+ # page. The remaining results can be seen by sending another request
15785
+ # with the returned `nextToken` value. This value can be between 5 and
15786
+ # 500. If `maxResults` is given a larger value than 500, you receive
15787
+ # an error.
15788
+ # @return [Integer]
15789
+ #
15790
+ # @!attribute [rw] filters
15791
+ # One or more filters.
15792
+ #
15793
+ # * `state` - The state of the Fleet (`submitted` \| `modifying` \|
15794
+ # `active` \| `partially_fulfilled` \| `expiring` \| `expired` \|
15795
+ # `cancelling` \| `cancelled` \| `failed`).
15796
+ #
15797
+ # * `instance-match-criteria` - The instance matching criteria for the
15798
+ # Fleet. Only `open` is supported.
15799
+ #
15800
+ # * `tenancy` - The tenancy of the Fleet (`default` \| `dedicated`).
15801
+ #
15802
+ # * `allocation-strategy` - The allocation strategy used by the Fleet.
15803
+ # Only `prioritized` is supported.
15804
+ # @return [Array<Types::Filter>]
15805
+ #
15806
+ # @!attribute [rw] dry_run
15807
+ # Checks whether you have the required permissions for the action,
15808
+ # without actually making the request, and provides an error response.
15809
+ # If you have the required permissions, the error response is
15810
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
15811
+ # @return [Boolean]
15812
+ #
15813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationFleetsRequest AWS API Documentation
15814
+ #
15815
+ class DescribeCapacityReservationFleetsRequest < Struct.new(
15816
+ :capacity_reservation_fleet_ids,
15817
+ :next_token,
15818
+ :max_results,
15819
+ :filters,
15820
+ :dry_run)
15821
+ SENSITIVE = []
15822
+ include Aws::Structure
15823
+ end
15824
+
15825
+ # @!attribute [rw] capacity_reservation_fleets
15826
+ # Information about the Capacity Reservation Fleets.
15827
+ # @return [Array<Types::CapacityReservationFleet>]
15828
+ #
15829
+ # @!attribute [rw] next_token
15830
+ # The token to use to retrieve the next page of results. This value is
15831
+ # `null` when there are no more results to return.
15832
+ # @return [String]
15833
+ #
15834
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationFleetsResult AWS API Documentation
15835
+ #
15836
+ class DescribeCapacityReservationFleetsResult < Struct.new(
15837
+ :capacity_reservation_fleets,
15838
+ :next_token)
15839
+ SENSITIVE = []
15840
+ include Aws::Structure
15841
+ end
15842
+
15312
15843
  # @note When making an API call, you may pass DescribeCapacityReservationsRequest
15313
15844
  # data as a hash:
15314
15845
  #
@@ -17302,9 +17833,10 @@ module Aws::EC2
17302
17833
  # @return [Array<String>]
17303
17834
  #
17304
17835
  # @!attribute [rw] owners
17305
- # Filters the AFI by owner. Specify an AWS account ID, `self` (owner
17306
- # is the sender of the request), or an AWS owner alias (valid values
17307
- # are `amazon` \| `aws-marketplace`).
17836
+ # Filters the AFI by owner. Specify an Amazon Web Services account ID,
17837
+ # `self` (owner is the sender of the request), or an Amazon Web
17838
+ # Services owner alias (valid values are `amazon` \|
17839
+ # `aws-marketplace`).
17308
17840
  # @return [Array<String>]
17309
17841
  #
17310
17842
  # @!attribute [rw] filters
@@ -17319,12 +17851,12 @@ module Aws::EC2
17319
17851
  #
17320
17852
  # * `name` - The name of the AFI.
17321
17853
  #
17322
- # * `owner-id` - The AWS account ID of the AFI owner.
17854
+ # * `owner-id` - The Amazon Web Services account ID of the AFI owner.
17323
17855
  #
17324
17856
  # * `product-code` - The product code.
17325
17857
  #
17326
- # * `shell-version` - The version of the AWS Shell that was used to
17327
- # create the bitstream.
17858
+ # * `shell-version` - The version of the Amazon Web Services Shell
17859
+ # that was used to create the bitstream.
17328
17860
  #
17329
17861
  # * `state` - The state of the AFI (`pending` \| `failed` \|
17330
17862
  # `available` \| `unavailable`).
@@ -25502,8 +26034,8 @@ module Aws::EC2
25502
26034
  #
25503
26035
  # * `service-id` - The ID of the service.
25504
26036
  #
25505
- # * `vpc-endpoint-owner` - The AWS account number of the owner of the
25506
- # endpoint.
26037
+ # * `vpc-endpoint-owner` - The ID of the Amazon Web Services account
26038
+ # ID that owns the endpoint.
25507
26039
  #
25508
26040
  # * `vpc-endpoint-state` - The state of the endpoint
25509
26041
  # (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
@@ -28898,71 +29430,91 @@ module Aws::EC2
28898
29430
  # @!attribute [rw] event_sub_type
28899
29431
  # The event.
28900
29432
  #
28901
- # The following are the `error` events:
29433
+ # `error` events:
28902
29434
  #
28903
- # * `iamFleetRoleInvalid` - The EC2 Fleet or Spot Fleet did not have
29435
+ # * `iamFleetRoleInvalid` - The EC2 Fleet or Spot Fleet does not have
28904
29436
  # the required permissions either to launch or terminate an
28905
29437
  # instance.
28906
29438
  #
28907
- # * `spotFleetRequestConfigurationInvalid` - The configuration is not
28908
- # valid. For more information, see the description of the event.
29439
+ # * `allLaunchSpecsTemporarilyBlacklisted` - None of the
29440
+ # configurations are valid, and several attempts to launch instances
29441
+ # have failed. For more information, see the description of the
29442
+ # event.
28909
29443
  #
28910
29444
  # * `spotInstanceCountLimitExceeded` - You've reached the limit on
28911
29445
  # the number of Spot Instances that you can launch.
28912
29446
  #
28913
- # The following are the `fleetRequestChange` events:
29447
+ # * `spotFleetRequestConfigurationInvalid` - The configuration is not
29448
+ # valid. For more information, see the description of the event.
29449
+ #
29450
+ # `fleetRequestChange` events:
28914
29451
  #
28915
29452
  # * `active` - The EC2 Fleet or Spot Fleet request has been validated
28916
29453
  # and Amazon EC2 is attempting to maintain the target number of
28917
- # running Spot Instances.
29454
+ # running instances.
28918
29455
  #
28919
29456
  # * `cancelled` - The EC2 Fleet or Spot Fleet request is canceled and
28920
- # has no running Spot Instances. The EC2 Fleet or Spot Fleet will be
28921
- # deleted two days after its instances were terminated.
29457
+ # has no running instances. The EC2 Fleet or Spot Fleet will be
29458
+ # deleted two days after its instances are terminated.
28922
29459
  #
28923
29460
  # * `cancelled_running` - The EC2 Fleet or Spot Fleet request is
28924
- # canceled and does not launch additional Spot Instances. Existing
28925
- # Spot Instances continue to run until they are interrupted or
28926
- # terminated.
29461
+ # canceled and does not launch additional instances. Its existing
29462
+ # instances continue to run until they are interrupted or
29463
+ # terminated. The request remains in this state until all instances
29464
+ # are interrupted or terminated.
28927
29465
  #
28928
29466
  # * `cancelled_terminating` - The EC2 Fleet or Spot Fleet request is
28929
- # canceled and its Spot Instances are terminating.
29467
+ # canceled and its instances are terminating. The request remains in
29468
+ # this state until all instances are terminated.
28930
29469
  #
28931
- # * `expired` - The EC2 Fleet or Spot Fleet request has expired. A
28932
- # subsequent event indicates that the instances were terminated, if
29470
+ # * `expired` - The EC2 Fleet or Spot Fleet request has expired. If
28933
29471
  # the request was created with `TerminateInstancesWithExpiration`
28934
- # set.
29472
+ # set, a subsequent `terminated` event indicates that the instances
29473
+ # are terminated.
28935
29474
  #
28936
- # * `modify_in_progress` - A request to modify the EC2 Fleet or Spot
28937
- # Fleet request was accepted and is in progress.
29475
+ # * `modify_in_progress` - The EC2 Fleet or Spot Fleet request is
29476
+ # being modified. The request remains in this state until the
29477
+ # modification is fully processed.
28938
29478
  #
28939
29479
  # * `modify_succeeded` - The EC2 Fleet or Spot Fleet request was
28940
29480
  # modified.
28941
29481
  #
28942
29482
  # * `submitted` - The EC2 Fleet or Spot Fleet request is being
28943
29483
  # evaluated and Amazon EC2 is preparing to launch the target number
28944
- # of Spot Instances.
29484
+ # of instances.
28945
29485
  #
28946
- # The following are the `instanceChange` events:
29486
+ # * `progress` - The EC2 Fleet or Spot Fleet request is in the process
29487
+ # of being fulfilled.
28947
29488
  #
28948
- # * `launched` - A request was fulfilled and a new instance was
28949
- # launched.
29489
+ # `instanceChange` events:
29490
+ #
29491
+ # * `launched` - A new instance was launched.
28950
29492
  #
28951
29493
  # * `terminated` - An instance was terminated by the user.
28952
29494
  #
28953
- # The following are the `Information` events:
29495
+ # * `termination_notified` - An instance termination notification was
29496
+ # sent when a Spot Instance was terminated by Amazon EC2 during
29497
+ # scale-down, when the target capacity of the fleet was modified
29498
+ # down, for example, from a target capacity of 4 to a target
29499
+ # capacity of 3.
29500
+ #
29501
+ # `Information` events:
29502
+ #
29503
+ # * `fleetProgressHalted` - The price in every launch specification is
29504
+ # not valid because it is below the Spot price (all the launch
29505
+ # specifications have produced `launchSpecUnusable` events). A
29506
+ # launch specification might become valid if the Spot price changes.
28954
29507
  #
28955
29508
  # * `launchSpecTemporarilyBlacklisted` - The configuration is not
28956
29509
  # valid and several attempts to launch instances have failed. For
28957
29510
  # more information, see the description of the event.
28958
29511
  #
28959
29512
  # * `launchSpecUnusable` - The price in a launch specification is not
28960
- # valid because it is below the Spot price or the Spot price is
28961
- # above the On-Demand price.
29513
+ # valid because it is below the Spot price.
28962
29514
  #
28963
- # * `fleetProgressHalted` - The price in every launch specification is
28964
- # not valid. A launch specification might become valid if the Spot
28965
- # price changes.
29515
+ # * `registerWithLoadBalancersFailed` - An attempt to register
29516
+ # instances with load balancers failed. For more information, see
29517
+ # the description of the event.
28966
29518
  # @return [String]
28967
29519
  #
28968
29520
  # @!attribute [rw] instance_id
@@ -29752,6 +30304,26 @@ module Aws::EC2
29752
30304
  include Aws::Structure
29753
30305
  end
29754
30306
 
30307
+ # Describes a Capacity Reservation Fleet that could not be cancelled.
30308
+ #
30309
+ # @!attribute [rw] capacity_reservation_fleet_id
30310
+ # The ID of the Capacity Reservation Fleet that could not be
30311
+ # cancelled.
30312
+ # @return [String]
30313
+ #
30314
+ # @!attribute [rw] cancel_capacity_reservation_fleet_error
30315
+ # Information about the Capacity Reservation Fleet cancellation error.
30316
+ # @return [Types::CancelCapacityReservationFleetError]
30317
+ #
30318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FailedCapacityReservationFleetCancellationResult AWS API Documentation
30319
+ #
30320
+ class FailedCapacityReservationFleetCancellationResult < Struct.new(
30321
+ :capacity_reservation_fleet_id,
30322
+ :cancel_capacity_reservation_fleet_error)
30323
+ SENSITIVE = []
30324
+ include Aws::Structure
30325
+ end
30326
+
29755
30327
  # Describes a Reserved Instance whose queued purchase was not deleted.
29756
30328
  #
29757
30329
  # @!attribute [rw] error
@@ -29850,6 +30422,95 @@ module Aws::EC2
29850
30422
  include Aws::Structure
29851
30423
  end
29852
30424
 
30425
+ # Information about a Capacity Reservation in a Capacity Reservation
30426
+ # Fleet.
30427
+ #
30428
+ # @!attribute [rw] capacity_reservation_id
30429
+ # The ID of the Capacity Reservation.
30430
+ # @return [String]
30431
+ #
30432
+ # @!attribute [rw] availability_zone_id
30433
+ # The ID of the Availability Zone in which the Capacity Reservation
30434
+ # reserves capacity.
30435
+ # @return [String]
30436
+ #
30437
+ # @!attribute [rw] instance_type
30438
+ # The instance type for which the Capacity Reservation reserves
30439
+ # capacity.
30440
+ # @return [String]
30441
+ #
30442
+ # @!attribute [rw] instance_platform
30443
+ # The type of operating system for which the Capacity Reservation
30444
+ # reserves capacity.
30445
+ # @return [String]
30446
+ #
30447
+ # @!attribute [rw] availability_zone
30448
+ # The Availability Zone in which the Capacity Reservation reserves
30449
+ # capacity.
30450
+ # @return [String]
30451
+ #
30452
+ # @!attribute [rw] total_instance_count
30453
+ # The total number of instances for which the Capacity Reservation
30454
+ # reserves capacity.
30455
+ # @return [Integer]
30456
+ #
30457
+ # @!attribute [rw] fulfilled_capacity
30458
+ # The number of capacity units fulfilled by the Capacity Reservation.
30459
+ # For more information, see [ Total target capacity][1] in the Amazon
30460
+ # EC2 User Guide.
30461
+ #
30462
+ #
30463
+ #
30464
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
30465
+ # @return [Float]
30466
+ #
30467
+ # @!attribute [rw] ebs_optimized
30468
+ # Indicates whether the Capacity Reservation reserves capacity for
30469
+ # EBS-optimized instance types.
30470
+ # @return [Boolean]
30471
+ #
30472
+ # @!attribute [rw] create_date
30473
+ # The date and time at which the Capacity Reservation was created.
30474
+ # @return [Time]
30475
+ #
30476
+ # @!attribute [rw] weight
30477
+ # The weight of the instance type in the Capacity Reservation Fleet.
30478
+ # For more information, see [ Instance type weight][1] in the Amazon
30479
+ # EC2 User Guide.
30480
+ #
30481
+ #
30482
+ #
30483
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#instance-weight
30484
+ # @return [Float]
30485
+ #
30486
+ # @!attribute [rw] priority
30487
+ # The priority of the instance type in the Capacity Reservation Fleet.
30488
+ # For more information, see [ Instance type priority][1] in the Amazon
30489
+ # EC2 User Guide.
30490
+ #
30491
+ #
30492
+ #
30493
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#instance-priority
30494
+ # @return [Integer]
30495
+ #
30496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetCapacityReservation AWS API Documentation
30497
+ #
30498
+ class FleetCapacityReservation < Struct.new(
30499
+ :capacity_reservation_id,
30500
+ :availability_zone_id,
30501
+ :instance_type,
30502
+ :instance_platform,
30503
+ :availability_zone,
30504
+ :total_instance_count,
30505
+ :fulfilled_capacity,
30506
+ :ebs_optimized,
30507
+ :create_date,
30508
+ :weight,
30509
+ :priority)
30510
+ SENSITIVE = []
30511
+ include Aws::Structure
30512
+ end
30513
+
29853
30514
  # Describes an EC2 Fleet.
29854
30515
  #
29855
30516
  # @!attribute [rw] activity_status
@@ -30049,7 +30710,7 @@ module Aws::EC2
30049
30710
  # placement: {
30050
30711
  # availability_zone: "String",
30051
30712
  # affinity: "String",
30052
- # group_name: "String",
30713
+ # group_name: "PlacementGroupName",
30053
30714
  # partition_number: 1,
30054
30715
  # host_id: "String",
30055
30716
  # tenancy: "default", # accepts default, dedicated, host
@@ -30157,7 +30818,7 @@ module Aws::EC2
30157
30818
  # placement: {
30158
30819
  # availability_zone: "String",
30159
30820
  # affinity: "String",
30160
- # group_name: "String",
30821
+ # group_name: "PlacementGroupName",
30161
30822
  # partition_number: 1,
30162
30823
  # host_id: "String",
30163
30824
  # tenancy: "default", # accepts default, dedicated, host
@@ -30599,7 +31260,8 @@ module Aws::EC2
30599
31260
  # @return [String]
30600
31261
  #
30601
31262
  # @!attribute [rw] shell_version
30602
- # The version of the AWS Shell that was used to create the bitstream.
31263
+ # The version of the Amazon Web Services Shell that was used to create
31264
+ # the bitstream.
30603
31265
  # @return [String]
30604
31266
  #
30605
31267
  # @!attribute [rw] pci_id
@@ -30619,7 +31281,7 @@ module Aws::EC2
30619
31281
  # @return [Time]
30620
31282
  #
30621
31283
  # @!attribute [rw] owner_id
30622
- # The AWS account ID of the AFI owner.
31284
+ # The ID of the Amazon Web Services account that owns the AFI.
30623
31285
  # @return [String]
30624
31286
  #
30625
31287
  # @!attribute [rw] owner_alias
@@ -33673,13 +34335,12 @@ module Aws::EC2
33673
34335
  # @return [Array<Types::TagSpecification>]
33674
34336
  #
33675
34337
  # @!attribute [rw] usage_operation
33676
- # The usage operation value. For more information, see [AMI billing
33677
- # information fields][1] in the *Amazon Elastic Compute Cloud User
33678
- # Guide*.
34338
+ # The usage operation value. For more information, see [Licensing
34339
+ # options][1] in the *VM Import/Export User Guide*.
33679
34340
  #
33680
34341
  #
33681
34342
  #
33682
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html
34343
+ # [1]: https://docs.aws.amazon.com/vm-import/latest/userguide/vmie_prereqs.html#prerequisites
33683
34344
  # @return [String]
33684
34345
  #
33685
34346
  # @!attribute [rw] boot_mode
@@ -33914,7 +34575,7 @@ module Aws::EC2
33914
34575
  # placement: {
33915
34576
  # availability_zone: "String",
33916
34577
  # affinity: "String",
33917
- # group_name: "String",
34578
+ # group_name: "PlacementGroupName",
33918
34579
  # partition_number: 1,
33919
34580
  # host_id: "String",
33920
34581
  # tenancy: "default", # accepts default, dedicated, host
@@ -34029,7 +34690,7 @@ module Aws::EC2
34029
34690
  # placement: {
34030
34691
  # availability_zone: "String",
34031
34692
  # affinity: "String",
34032
- # group_name: "String",
34693
+ # group_name: "PlacementGroupName",
34033
34694
  # partition_number: 1,
34034
34695
  # host_id: "String",
34035
34696
  # tenancy: "default", # accepts default, dedicated, host
@@ -34786,7 +35447,7 @@ module Aws::EC2
34786
35447
  # @return [Types::HibernationOptions]
34787
35448
  #
34788
35449
  # @!attribute [rw] licenses
34789
- # The license configurations.
35450
+ # The license configurations for the instance.
34790
35451
  # @return [Array<Types::LicenseConfiguration>]
34791
35452
  #
34792
35453
  # @!attribute [rw] metadata_options
@@ -34807,6 +35468,30 @@ module Aws::EC2
34807
35468
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html
34808
35469
  # @return [String]
34809
35470
  #
35471
+ # @!attribute [rw] platform_details
35472
+ # The platform details value for the instance. For more information,
35473
+ # see [AMI billing information fields][1] in the *Amazon EC2 User
35474
+ # Guide*.
35475
+ #
35476
+ #
35477
+ #
35478
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html
35479
+ # @return [String]
35480
+ #
35481
+ # @!attribute [rw] usage_operation
35482
+ # The usage operation value for the instance. For more information,
35483
+ # see [AMI billing information fields][1] in the *Amazon EC2 User
35484
+ # Guide*.
35485
+ #
35486
+ #
35487
+ #
35488
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html
35489
+ # @return [String]
35490
+ #
35491
+ # @!attribute [rw] usage_operation_update_time
35492
+ # The time that the usage operation was last updated.
35493
+ # @return [Time]
35494
+ #
34810
35495
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Instance AWS API Documentation
34811
35496
  #
34812
35497
  class Instance < Struct.new(
@@ -34858,7 +35543,10 @@ module Aws::EC2
34858
35543
  :licenses,
34859
35544
  :metadata_options,
34860
35545
  :enclave_options,
34861
- :boot_mode)
35546
+ :boot_mode,
35547
+ :platform_details,
35548
+ :usage_operation,
35549
+ :usage_operation_update_time)
34862
35550
  SENSITIVE = []
34863
35551
  include Aws::Structure
34864
35552
  end
@@ -35552,14 +36240,11 @@ module Aws::EC2
35552
36240
  # @return [Integer]
35553
36241
  #
35554
36242
  # @!attribute [rw] http_endpoint
35555
- # This parameter enables or disables the HTTP metadata endpoint on
35556
- # your instances. If the parameter is not specified, the default state
35557
- # is `enabled`.
36243
+ # Enables or disables the HTTP metadata endpoint on your instances. If
36244
+ # the parameter is not specified, the default state is `enabled`.
35558
36245
  #
35559
- # <note markdown="1"> If you specify a value of `disabled`, you will not be able to access
36246
+ # If you specify a value of `disabled`, you will not be able to access
35560
36247
  # your instance metadata.
35561
- #
35562
- # </note>
35563
36248
  # @return [String]
35564
36249
  #
35565
36250
  # @!attribute [rw] http_protocol_ipv_6
@@ -35619,19 +36304,13 @@ module Aws::EC2
35619
36304
  # @return [Integer]
35620
36305
  #
35621
36306
  # @!attribute [rw] http_endpoint
35622
- # This parameter enables or disables the HTTP metadata endpoint on
35623
- # your instances. If the parameter is not specified, the default state
35624
- # is `enabled`.
35625
- #
35626
- # <note markdown="1"> If you specify a value of `disabled`, you will not be able to access
35627
- # your instance metadata.
35628
- #
35629
- # </note>
36307
+ # Indicates whether the HTTP metadata endpoint on your instances is
36308
+ # enabled or disabled.
35630
36309
  # @return [String]
35631
36310
  #
35632
36311
  # @!attribute [rw] http_protocol_ipv_6
35633
- # Whether or not the IPv6 endpoint for the instance metadata service
35634
- # is enabled or disabled.
36312
+ # Indicates whether the IPv6 endpoint for the instance metadata
36313
+ # service is enabled or disabled.
35635
36314
  # @return [String]
35636
36315
  #
35637
36316
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceMetadataOptionsResponse AWS API Documentation
@@ -35859,7 +36538,7 @@ module Aws::EC2
35859
36538
  # ipv_6_address: "String",
35860
36539
  # },
35861
36540
  # ],
35862
- # network_interface_id: "String",
36541
+ # network_interface_id: "NetworkInterfaceId",
35863
36542
  # private_ip_address: "String",
35864
36543
  # private_ip_addresses: [
35865
36544
  # {
@@ -37505,7 +38184,7 @@ module Aws::EC2
37505
38184
  # {
37506
38185
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
37507
38186
  # spot_price: "String",
37508
- # subnet_id: "String",
38187
+ # subnet_id: "SubnetId",
37509
38188
  # availability_zone: "String",
37510
38189
  # weighted_capacity: 1.0,
37511
38190
  # priority: 1.0,
@@ -38478,7 +39157,7 @@ module Aws::EC2
38478
39157
  # {
38479
39158
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
38480
39159
  # spot_price: "String",
38481
- # subnet_id: "String",
39160
+ # subnet_id: "SubnetId",
38482
39161
  # availability_zone: "String",
38483
39162
  # weighted_capacity: 1.0,
38484
39163
  # priority: 1.0,
@@ -39007,7 +39686,7 @@ module Aws::EC2
39007
39686
  # Describes a load permission.
39008
39687
  #
39009
39688
  # @!attribute [rw] user_id
39010
- # The AWS account ID.
39689
+ # The Amazon Web Services account ID.
39011
39690
  # @return [String]
39012
39691
  #
39013
39692
  # @!attribute [rw] group
@@ -39076,7 +39755,7 @@ module Aws::EC2
39076
39755
  # @return [String]
39077
39756
  #
39078
39757
  # @!attribute [rw] user_id
39079
- # The AWS account ID.
39758
+ # The Amazon Web Services account ID.
39080
39759
  # @return [String]
39081
39760
  #
39082
39761
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LoadPermissionRequest AWS API Documentation
@@ -39099,7 +39778,8 @@ module Aws::EC2
39099
39778
  # @return [String]
39100
39779
  #
39101
39780
  # @!attribute [rw] owner_id
39102
- # The AWS account ID that owns the local gateway.
39781
+ # The ID of the Amazon Web Services account that owns the local
39782
+ # gateway.
39103
39783
  # @return [String]
39104
39784
  #
39105
39785
  # @!attribute [rw] state
@@ -39149,7 +39829,8 @@ module Aws::EC2
39149
39829
  # @return [String]
39150
39830
  #
39151
39831
  # @!attribute [rw] owner_id
39152
- # The AWS account ID that owns the local gateway route.
39832
+ # The ID of the Amazon Web Services account that owns the local
39833
+ # gateway route.
39153
39834
  # @return [String]
39154
39835
  #
39155
39836
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRoute AWS API Documentation
@@ -39185,7 +39866,8 @@ module Aws::EC2
39185
39866
  # @return [String]
39186
39867
  #
39187
39868
  # @!attribute [rw] owner_id
39188
- # The AWS account ID that owns the local gateway route table.
39869
+ # The ID of the Amazon Web Services account that owns the local
39870
+ # gateway route table.
39189
39871
  # @return [String]
39190
39872
  #
39191
39873
  # @!attribute [rw] state
@@ -39235,8 +39917,8 @@ module Aws::EC2
39235
39917
  # @return [String]
39236
39918
  #
39237
39919
  # @!attribute [rw] owner_id
39238
- # The AWS account ID that owns the local gateway virtual interface
39239
- # group association.
39920
+ # The ID of the Amazon Web Services account that owns the local
39921
+ # gateway virtual interface group association.
39240
39922
  # @return [String]
39241
39923
  #
39242
39924
  # @!attribute [rw] state
@@ -39287,8 +39969,8 @@ module Aws::EC2
39287
39969
  # @return [String]
39288
39970
  #
39289
39971
  # @!attribute [rw] owner_id
39290
- # The AWS account ID that owns the local gateway route table for the
39291
- # association.
39972
+ # The ID of the Amazon Web Services account that owns the local
39973
+ # gateway route table for the association.
39292
39974
  # @return [String]
39293
39975
  #
39294
39976
  # @!attribute [rw] state
@@ -39346,7 +40028,8 @@ module Aws::EC2
39346
40028
  # @return [Integer]
39347
40029
  #
39348
40030
  # @!attribute [rw] owner_id
39349
- # The AWS account ID that owns the local gateway virtual interface.
40031
+ # The ID of the Amazon Web Services account that owns the local
40032
+ # gateway virtual interface.
39350
40033
  # @return [String]
39351
40034
  #
39352
40035
  # @!attribute [rw] tags
@@ -39384,8 +40067,8 @@ module Aws::EC2
39384
40067
  # @return [String]
39385
40068
  #
39386
40069
  # @!attribute [rw] owner_id
39387
- # The AWS account ID that owns the local gateway virtual interface
39388
- # group.
40070
+ # The ID of the Amazon Web Services account that owns the local
40071
+ # gateway virtual interface group.
39389
40072
  # @return [String]
39390
40073
  #
39391
40074
  # @!attribute [rw] tags
@@ -39540,8 +40223,8 @@ module Aws::EC2
39540
40223
  # @!attribute [rw] opt_in_status
39541
40224
  # Indicates whether you are opted in to the Local Zone group or
39542
40225
  # Wavelength Zone group. The only valid value is `opted-in`. You must
39543
- # contact [AWS Support][1] to opt out of a Local Zone group, or
39544
- # Wavelength Zone group.
40226
+ # contact [Amazon Web Services Support][1] to opt out of a Local Zone
40227
+ # or Wavelength Zone group.
39545
40228
  #
39546
40229
  #
39547
40230
  #
@@ -39577,6 +40260,92 @@ module Aws::EC2
39577
40260
  include Aws::Structure
39578
40261
  end
39579
40262
 
40263
+ # @note When making an API call, you may pass ModifyCapacityReservationFleetRequest
40264
+ # data as a hash:
40265
+ #
40266
+ # {
40267
+ # capacity_reservation_fleet_id: "CapacityReservationFleetId", # required
40268
+ # total_target_capacity: 1,
40269
+ # end_date: Time.now,
40270
+ # dry_run: false,
40271
+ # remove_end_date: false,
40272
+ # }
40273
+ #
40274
+ # @!attribute [rw] capacity_reservation_fleet_id
40275
+ # The ID of the Capacity Reservation Fleet to modify.
40276
+ # @return [String]
40277
+ #
40278
+ # @!attribute [rw] total_target_capacity
40279
+ # The total number of capacity units to be reserved by the Capacity
40280
+ # Reservation Fleet. This value, together with the instance type
40281
+ # weights that you assign to each instance type used by the Fleet
40282
+ # determine the number of instances for which the Fleet reserves
40283
+ # capacity. Both values are based on units that make sense for your
40284
+ # workload. For more information, see [Total target capacity][1] in
40285
+ # the Amazon EC2 User Guide.
40286
+ #
40287
+ #
40288
+ #
40289
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
40290
+ # @return [Integer]
40291
+ #
40292
+ # @!attribute [rw] end_date
40293
+ # The date and time at which the Capacity Reservation Fleet expires.
40294
+ # When the Capacity Reservation Fleet expires, its state changes to
40295
+ # `expired` and all of the Capacity Reservations in the Fleet expire.
40296
+ #
40297
+ # The Capacity Reservation Fleet expires within an hour after the
40298
+ # specified time. For example, if you specify `5/31/2019`, `13:30:55`,
40299
+ # the Capacity Reservation Fleet is guaranteed to expire between
40300
+ # `13:30:55` and `14:30:55` on `5/31/2019`.
40301
+ #
40302
+ # You can't specify **EndDate** and <b> RemoveEndDate</b> in the same
40303
+ # request.
40304
+ # @return [Time]
40305
+ #
40306
+ # @!attribute [rw] dry_run
40307
+ # Checks whether you have the required permissions for the action,
40308
+ # without actually making the request, and provides an error response.
40309
+ # If you have the required permissions, the error response is
40310
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
40311
+ # @return [Boolean]
40312
+ #
40313
+ # @!attribute [rw] remove_end_date
40314
+ # Indicates whether to remove the end date from the Capacity
40315
+ # Reservation Fleet. If you remove the end date, the Capacity
40316
+ # Reservation Fleet does not expire and it remains active until you
40317
+ # explicitly cancel it using the **CancelCapacityReservationFleet**
40318
+ # action.
40319
+ #
40320
+ # You can't specify **RemoveEndDate** and <b> EndDate</b> in the same
40321
+ # request.
40322
+ # @return [Boolean]
40323
+ #
40324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationFleetRequest AWS API Documentation
40325
+ #
40326
+ class ModifyCapacityReservationFleetRequest < Struct.new(
40327
+ :capacity_reservation_fleet_id,
40328
+ :total_target_capacity,
40329
+ :end_date,
40330
+ :dry_run,
40331
+ :remove_end_date)
40332
+ SENSITIVE = []
40333
+ include Aws::Structure
40334
+ end
40335
+
40336
+ # @!attribute [rw] return
40337
+ # Returns `true` if the request succeeds; otherwise, it returns an
40338
+ # error.
40339
+ # @return [Boolean]
40340
+ #
40341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationFleetResult AWS API Documentation
40342
+ #
40343
+ class ModifyCapacityReservationFleetResult < Struct.new(
40344
+ :return)
40345
+ SENSITIVE = []
40346
+ include Aws::Structure
40347
+ end
40348
+
39580
40349
  # @note When making an API call, you may pass ModifyCapacityReservationRequest
39581
40350
  # data as a hash:
39582
40351
  #
@@ -39940,7 +40709,7 @@ module Aws::EC2
39940
40709
  # placement: {
39941
40710
  # availability_zone: "String",
39942
40711
  # affinity: "String",
39943
- # group_name: "String",
40712
+ # group_name: "PlacementGroupName",
39944
40713
  # partition_number: 1,
39945
40714
  # host_id: "String",
39946
40715
  # tenancy: "default", # accepts default, dedicated, host
@@ -40064,8 +40833,8 @@ module Aws::EC2
40064
40833
  # @return [String]
40065
40834
  #
40066
40835
  # @!attribute [rw] user_ids
40067
- # The AWS account IDs. This parameter is valid only when modifying the
40068
- # `loadPermission` attribute.
40836
+ # The Amazon Web Services account IDs. This parameter is valid only
40837
+ # when modifying the `loadPermission` attribute.
40069
40838
  # @return [Array<String>]
40070
40839
  #
40071
40840
  # @!attribute [rw] user_groups
@@ -40971,10 +41740,12 @@ module Aws::EC2
40971
41740
  # @!attribute [rw] tenancy
40972
41741
  # The tenancy for the instance.
40973
41742
  #
40974
- # For T3 instances, you can't change the tenancy from `dedicated` to
41743
+ # <note markdown="1"> For T3 instances, you can't change the tenancy from `dedicated` to
40975
41744
  # `host`, or from `host` to `dedicated`. Attempting to make one of
40976
41745
  # these unsupported tenancy changes results in the `InvalidTenancy`
40977
41746
  # error code.
41747
+ #
41748
+ # </note>
40978
41749
  # @return [String]
40979
41750
  #
40980
41751
  # @!attribute [rw] partition_number
@@ -41447,7 +42218,7 @@ module Aws::EC2
41447
42218
  # {
41448
42219
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
41449
42220
  # spot_price: "String",
41450
- # subnet_id: "String",
42221
+ # subnet_id: "SubnetId",
41451
42222
  # availability_zone: "String",
41452
42223
  # weighted_capacity: 1.0,
41453
42224
  # priority: 1.0,
@@ -41667,7 +42438,7 @@ module Aws::EC2
41667
42438
  # @return [String]
41668
42439
  #
41669
42440
  # @!attribute [rw] traffic_direction
41670
- # The type of traffic (`ingress` \| `egress`) to assign to the rule.
42441
+ # The type of traffic to assign to the rule.
41671
42442
  # @return [String]
41672
42443
  #
41673
42444
  # @!attribute [rw] rule_number
@@ -44849,7 +45620,7 @@ module Aws::EC2
44849
45620
  # {
44850
45621
  # availability_zone: "String",
44851
45622
  # affinity: "String",
44852
- # group_name: "String",
45623
+ # group_name: "PlacementGroupName",
44853
45624
  # partition_number: 1,
44854
45625
  # host_id: "String",
44855
45626
  # tenancy: "default", # accepts default, dedicated, host
@@ -46721,22 +47492,14 @@ module Aws::EC2
46721
47492
  #
46722
47493
  # @!attribute [rw] network_border_group
46723
47494
  # The set of Availability Zones, Local Zones, or Wavelength Zones from
46724
- # which AWS advertises IP addresses.
46725
- #
46726
- # If you provide an incorrect network border group, you will receive
46727
- # an `InvalidAddress.NotFound` error. For more information, see [Error
46728
- # Codes][1].
46729
- #
46730
- # <note markdown="1"> You cannot use a network border group with EC2 Classic. If you
46731
- # attempt this operation on EC2 classic, you will receive an
46732
- # `InvalidParameterCombination` error. For more information, see
46733
- # [Error Codes][1].
46734
- #
46735
- # </note>
47495
+ # which Amazon Web Services advertises IP addresses.
46736
47496
  #
47497
+ # If you provide an incorrect network border group, you receive an
47498
+ # `InvalidAddress.NotFound` error.
46737
47499
  #
46738
- #
46739
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html
47500
+ # You cannot use a network border group with EC2 Classic. If you
47501
+ # attempt this operation on EC2 classic, you receive an
47502
+ # `InvalidParameterCombination` error.
46740
47503
  # @return [String]
46741
47504
  #
46742
47505
  # @!attribute [rw] dry_run
@@ -47858,7 +48621,7 @@ module Aws::EC2
47858
48621
  # ipv_6_address: "String",
47859
48622
  # },
47860
48623
  # ],
47861
- # network_interface_id: "String",
48624
+ # network_interface_id: "NetworkInterfaceId",
47862
48625
  # private_ip_address: "String",
47863
48626
  # private_ip_addresses: [
47864
48627
  # {
@@ -47919,7 +48682,7 @@ module Aws::EC2
47919
48682
  # {
47920
48683
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
47921
48684
  # spot_price: "String",
47922
- # subnet_id: "String",
48685
+ # subnet_id: "SubnetId",
47923
48686
  # availability_zone: "String",
47924
48687
  # weighted_capacity: 1.0,
47925
48688
  # priority: 1.0,
@@ -48063,7 +48826,7 @@ module Aws::EC2
48063
48826
  # ipv_6_address: "String",
48064
48827
  # },
48065
48828
  # ],
48066
- # network_interface_id: "String",
48829
+ # network_interface_id: "NetworkInterfaceId",
48067
48830
  # private_ip_address: "String",
48068
48831
  # private_ip_addresses: [
48069
48832
  # {
@@ -48321,7 +49084,7 @@ module Aws::EC2
48321
49084
  # ipv_6_address: "String",
48322
49085
  # },
48323
49086
  # ],
48324
- # network_interface_id: "String",
49087
+ # network_interface_id: "NetworkInterfaceId",
48325
49088
  # private_ip_address: "String",
48326
49089
  # private_ip_addresses: [
48327
49090
  # {
@@ -48503,6 +49266,94 @@ module Aws::EC2
48503
49266
  include Aws::Structure
48504
49267
  end
48505
49268
 
49269
+ # Information about an instance type to use in a Capacity Reservation
49270
+ # Fleet.
49271
+ #
49272
+ # @note When making an API call, you may pass ReservationFleetInstanceSpecification
49273
+ # data as a hash:
49274
+ #
49275
+ # {
49276
+ # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
49277
+ # instance_platform: "Linux/UNIX", # accepts Linux/UNIX, Red Hat Enterprise Linux, SUSE Linux, Windows, Windows with SQL Server, Windows with SQL Server Enterprise, Windows with SQL Server Standard, Windows with SQL Server Web, Linux with SQL Server Standard, Linux with SQL Server Web, Linux with SQL Server Enterprise
49278
+ # weight: 1.0,
49279
+ # availability_zone: "String",
49280
+ # availability_zone_id: "String",
49281
+ # ebs_optimized: false,
49282
+ # priority: 1,
49283
+ # }
49284
+ #
49285
+ # @!attribute [rw] instance_type
49286
+ # The instance type for which the Capacity Reservation Fleet reserves
49287
+ # capacity.
49288
+ # @return [String]
49289
+ #
49290
+ # @!attribute [rw] instance_platform
49291
+ # The type of operating system for which the Capacity Reservation
49292
+ # Fleet reserves capacity.
49293
+ # @return [String]
49294
+ #
49295
+ # @!attribute [rw] weight
49296
+ # The number of capacity units provided by the specified instance
49297
+ # type. This value, together with the total target capacity that you
49298
+ # specify for the Fleet determine the number of instances for which
49299
+ # the Fleet reserves capacity. Both values are based on units that
49300
+ # make sense for your workload. For more information, see [Total
49301
+ # target capacity][1] in the Amazon EC2 User Guide.
49302
+ #
49303
+ #
49304
+ #
49305
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
49306
+ # @return [Float]
49307
+ #
49308
+ # @!attribute [rw] availability_zone
49309
+ # The Availability Zone in which the Capacity Reservation Fleet
49310
+ # reserves the capacity. A Capacity Reservation Fleet can't span
49311
+ # Availability Zones. All instance type specifications that you
49312
+ # specify for the Fleet must use the same Availability Zone.
49313
+ # @return [String]
49314
+ #
49315
+ # @!attribute [rw] availability_zone_id
49316
+ # The ID of the Availability Zone in which the Capacity Reservation
49317
+ # Fleet reserves the capacity. A Capacity Reservation Fleet can't
49318
+ # span Availability Zones. All instance type specifications that you
49319
+ # specify for the Fleet must use the same Availability Zone.
49320
+ # @return [String]
49321
+ #
49322
+ # @!attribute [rw] ebs_optimized
49323
+ # Indicates whether the Capacity Reservation Fleet supports
49324
+ # EBS-optimized instances types. This optimization provides dedicated
49325
+ # throughput to Amazon EBS and an optimized configuration stack to
49326
+ # provide optimal I/O performance. This optimization isn't available
49327
+ # with all instance types. Additional usage charges apply when using
49328
+ # EBS-optimized instance types.
49329
+ # @return [Boolean]
49330
+ #
49331
+ # @!attribute [rw] priority
49332
+ # The priority to assign to the instance type. This value is used to
49333
+ # determine which of the instance types specified for the Fleet should
49334
+ # be prioritized for use. A lower value indicates a high priority. For
49335
+ # more information, see [Instance type priority][1] in the Amazon EC2
49336
+ # User Guide.
49337
+ #
49338
+ #
49339
+ #
49340
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#instance-priority
49341
+ # @return [Integer]
49342
+ #
49343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservationFleetInstanceSpecification AWS API Documentation
49344
+ #
49345
+ class ReservationFleetInstanceSpecification < Struct.new(
49346
+ :instance_type,
49347
+ :instance_platform,
49348
+ :weight,
49349
+ :availability_zone,
49350
+ :availability_zone_id,
49351
+ :ebs_optimized,
49352
+ :priority)
49353
+ SENSITIVE = []
49354
+ include Aws::Structure
49355
+ end
49356
+
48506
49357
  # The cost associated with the Reserved Instance.
48507
49358
  #
48508
49359
  # @!attribute [rw] hourly_price
@@ -50164,7 +51015,7 @@ module Aws::EC2
50164
51015
  # placement: {
50165
51016
  # availability_zone: "String",
50166
51017
  # affinity: "String",
50167
- # group_name: "String",
51018
+ # group_name: "PlacementGroupName",
50168
51019
  # partition_number: 1,
50169
51020
  # host_id: "String",
50170
51021
  # tenancy: "default", # accepts default, dedicated, host
@@ -50199,7 +51050,7 @@ module Aws::EC2
50199
51050
  # ipv_6_address: "String",
50200
51051
  # },
50201
51052
  # ],
50202
- # network_interface_id: "String",
51053
+ # network_interface_id: "NetworkInterfaceId",
50203
51054
  # private_ip_address: "String",
50204
51055
  # private_ip_addresses: [
50205
51056
  # {
@@ -51726,21 +52577,25 @@ module Aws::EC2
51726
52577
  #
51727
52578
  # {
51728
52579
  # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
51729
- # max_results: 1,
51730
- # next_token: "String",
51731
- # dry_run: false,
51732
- # filters: [ # required
52580
+ # filters: [
51733
52581
  # {
51734
52582
  # name: "String",
51735
52583
  # values: ["String"],
51736
52584
  # },
51737
52585
  # ],
52586
+ # max_results: 1,
52587
+ # next_token: "String",
52588
+ # dry_run: false,
51738
52589
  # }
51739
52590
  #
51740
52591
  # @!attribute [rw] local_gateway_route_table_id
51741
52592
  # The ID of the local gateway route table.
51742
52593
  # @return [String]
51743
52594
  #
52595
+ # @!attribute [rw] filters
52596
+ # One or more filters.
52597
+ # @return [Array<Types::Filter>]
52598
+ #
51744
52599
  # @!attribute [rw] max_results
51745
52600
  # The maximum number of results to return with a single call. To
51746
52601
  # retrieve the remaining results, make another call with the returned
@@ -51758,18 +52613,14 @@ module Aws::EC2
51758
52613
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
51759
52614
  # @return [Boolean]
51760
52615
  #
51761
- # @!attribute [rw] filters
51762
- # One or more filters.
51763
- # @return [Array<Types::Filter>]
51764
- #
51765
52616
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SearchLocalGatewayRoutesRequest AWS API Documentation
51766
52617
  #
51767
52618
  class SearchLocalGatewayRoutesRequest < Struct.new(
51768
52619
  :local_gateway_route_table_id,
52620
+ :filters,
51769
52621
  :max_results,
51770
52622
  :next_token,
51771
- :dry_run,
51772
- :filters)
52623
+ :dry_run)
51773
52624
  SENSITIVE = []
51774
52625
  include Aws::Structure
51775
52626
  end
@@ -52370,8 +53221,8 @@ module Aws::EC2
52370
53221
  # @return [Array<String>]
52371
53222
  #
52372
53223
  # @!attribute [rw] acceptance_required
52373
- # Indicates whether requests from other AWS accounts to create an
52374
- # endpoint to the service must first be accepted.
53224
+ # Indicates whether requests from other Amazon Web Services accounts
53225
+ # to create an endpoint to the service must first be accepted.
52375
53226
  # @return [Boolean]
52376
53227
  #
52377
53228
  # @!attribute [rw] manages_vpc_endpoints
@@ -52446,7 +53297,7 @@ module Aws::EC2
52446
53297
  # @return [Array<String>]
52447
53298
  #
52448
53299
  # @!attribute [rw] owner
52449
- # The AWS account ID of the service owner.
53300
+ # The Amazon Web Services account ID of the service owner.
52450
53301
  # @return [String]
52451
53302
  #
52452
53303
  # @!attribute [rw] base_endpoint_dns_names
@@ -53071,7 +53922,7 @@ module Aws::EC2
53071
53922
  # ipv_6_address: "String",
53072
53923
  # },
53073
53924
  # ],
53074
- # network_interface_id: "String",
53925
+ # network_interface_id: "NetworkInterfaceId",
53075
53926
  # private_ip_address: "String",
53076
53927
  # private_ip_addresses: [
53077
53928
  # {
@@ -53397,7 +54248,7 @@ module Aws::EC2
53397
54248
  # ipv_6_address: "String",
53398
54249
  # },
53399
54250
  # ],
53400
- # network_interface_id: "String",
54251
+ # network_interface_id: "NetworkInterfaceId",
53401
54252
  # private_ip_address: "String",
53402
54253
  # private_ip_addresses: [
53403
54254
  # {
@@ -53458,7 +54309,7 @@ module Aws::EC2
53458
54309
  # {
53459
54310
  # instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r6g.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6gd.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6gd.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, mac1.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge
53460
54311
  # spot_price: "String",
53461
- # subnet_id: "String",
54312
+ # subnet_id: "SubnetId",
53462
54313
  # availability_zone: "String",
53463
54314
  # weighted_capacity: 1.0,
53464
54315
  # priority: 1.0,
@@ -55153,33 +56004,7 @@ module Aws::EC2
55153
56004
  # }
55154
56005
  #
55155
56006
  # @!attribute [rw] resource_type
55156
- # The type of resource to tag on creation. The possible values are:
55157
- # `capacity-reservation` \| `carrier-gateway` \| `client-vpn-endpoint`
55158
- # \| `customer-gateway` \| `dedicated-host` \| `dhcp-options` \|
55159
- # `egress-only-internet-gateway` \| `elastic-gpu` \| `elastic-ip` \|
55160
- # `export-image-task` \| `export-instance-task` \| `fleet` \|
55161
- # `fpga-image` \| `host-reservation` \| `image` \| `import-image-task`
55162
- # \| `import-snapshot-task` \| `instance` \| `instance-event-window`
55163
- # \| `internet-gateway` \| `ipv4pool-ec2` \| `ipv6pool-ec2` \|
55164
- # `key-pair` \| `launch-template` \|
55165
- # `local-gateway-route-table-vpc-association` \| `natgateway` \|
55166
- # `network-acl` \| `network-insights-analysis` \|
55167
- # `network-insights-path` \| `network-interface` \| `placement-group`
55168
- # \| `prefix-list` \| `reserved-instances` \| `route-table` \|
55169
- # `security-group` \| `security-group-rule` \| `snapshot` \|
55170
- # `spot-fleet-request` \| `spot-instances-request` \| `subnet` \|
55171
- # `traffic-mirror-filter` \| `traffic-mirror-session` \|
55172
- # `traffic-mirror-target` \| `transit-gateway` \|
55173
- # `transit-gateway-attachment` \| `transit-gateway-multicast-domain`
55174
- # \| `transit-gateway-route-table` \| `volume` \| `vpc` \|
55175
- # `vpc-endpoint` \| `vpc-endpoint-service` \| `vpc-flow-log` \|
55176
- # `vpc-peering-connection` \| `vpn-connection` \| `vpn-gateway`.
55177
- #
55178
- # To tag a resource after it has been created, see [CreateTags][1].
55179
- #
55180
- #
55181
- #
55182
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
56007
+ # The type of resource to tag on creation.
55183
56008
  # @return [String]
55184
56009
  #
55185
56010
  # @!attribute [rw] tags
@@ -58575,7 +59400,8 @@ module Aws::EC2
58575
59400
  # @return [Array<Types::Tag>]
58576
59401
  #
58577
59402
  # @!attribute [rw] owner_id
58578
- # The ID of the AWS account that owns the VPC endpoint.
59403
+ # The ID of the Amazon Web Services account that owns the VPC
59404
+ # endpoint.
58579
59405
  # @return [String]
58580
59406
  #
58581
59407
  # @!attribute [rw] last_error
@@ -58617,7 +59443,8 @@ module Aws::EC2
58617
59443
  # @return [String]
58618
59444
  #
58619
59445
  # @!attribute [rw] vpc_endpoint_owner
58620
- # The AWS account ID of the owner of the VPC endpoint.
59446
+ # The ID of the Amazon Web Services account that owns the VPC
59447
+ # endpoint.
58621
59448
  # @return [String]
58622
59449
  #
58623
59450
  # @!attribute [rw] vpc_endpoint_state
@@ -58673,8 +59500,8 @@ module Aws::EC2
58673
59500
  #
58674
59501
  # @!attribute [rw] network_border_group
58675
59502
  # The name of the unique set of Availability Zones, Local Zones, or
58676
- # Wavelength Zones from which AWS advertises IP addresses, for
58677
- # example, `us-east-1-wl1-bos-wlz-1`.
59503
+ # Wavelength Zones from which Amazon Web Services advertises IP
59504
+ # addresses, for example, `us-east-1-wl1-bos-wlz-1`.
58678
59505
  # @return [String]
58679
59506
  #
58680
59507
  # @!attribute [rw] ipv_6_pool