aws-sdk-ec2 1.265.0 → 1.269.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
  #
@@ -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`).
@@ -18727,9 +19259,12 @@ module Aws::EC2
18727
19259
  # * `instance-storage-info.disk.type` - The storage technology for the
18728
19260
  # local instance storage disks (`hdd` \| `ssd`).
18729
19261
  #
19262
+ # * `instance-storage-info.encryption-supported` - Indicates whether
19263
+ # data is encrypted at rest (`required` \| `unsupported`).
19264
+ #
18730
19265
  # * `instance-storage-info.nvme-support` - Indicates whether
18731
19266
  # non-volatile memory express (NVMe) is supported for instance store
18732
- # (`required` \| `supported`) \| `unsupported`).
19267
+ # (`required` \| `supported` \| `unsupported`).
18733
19268
  #
18734
19269
  # * `instance-storage-info.total-size-in-gb` - The total amount of
18735
19270
  # storage available from all local instance storage, in GB.
@@ -25502,8 +26037,8 @@ module Aws::EC2
25502
26037
  #
25503
26038
  # * `service-id` - The ID of the service.
25504
26039
  #
25505
- # * `vpc-endpoint-owner` - The AWS account number of the owner of the
25506
- # endpoint.
26040
+ # * `vpc-endpoint-owner` - The ID of the Amazon Web Services account
26041
+ # ID that owns the endpoint.
25507
26042
  #
25508
26043
  # * `vpc-endpoint-state` - The state of the endpoint
25509
26044
  # (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
@@ -27743,7 +28278,7 @@ module Aws::EC2
27743
28278
  include Aws::Structure
27744
28279
  end
27745
28280
 
27746
- # Describes the disk.
28281
+ # Describes a disk.
27747
28282
  #
27748
28283
  # @!attribute [rw] size_in_gb
27749
28284
  # The size of the disk in GB.
@@ -28898,71 +29433,91 @@ module Aws::EC2
28898
29433
  # @!attribute [rw] event_sub_type
28899
29434
  # The event.
28900
29435
  #
28901
- # The following are the `error` events:
29436
+ # `error` events:
28902
29437
  #
28903
- # * `iamFleetRoleInvalid` - The EC2 Fleet or Spot Fleet did not have
29438
+ # * `iamFleetRoleInvalid` - The EC2 Fleet or Spot Fleet does not have
28904
29439
  # the required permissions either to launch or terminate an
28905
29440
  # instance.
28906
29441
  #
28907
- # * `spotFleetRequestConfigurationInvalid` - The configuration is not
28908
- # valid. For more information, see the description of the event.
29442
+ # * `allLaunchSpecsTemporarilyBlacklisted` - None of the
29443
+ # configurations are valid, and several attempts to launch instances
29444
+ # have failed. For more information, see the description of the
29445
+ # event.
28909
29446
  #
28910
29447
  # * `spotInstanceCountLimitExceeded` - You've reached the limit on
28911
29448
  # the number of Spot Instances that you can launch.
28912
29449
  #
28913
- # The following are the `fleetRequestChange` events:
29450
+ # * `spotFleetRequestConfigurationInvalid` - The configuration is not
29451
+ # valid. For more information, see the description of the event.
29452
+ #
29453
+ # `fleetRequestChange` events:
28914
29454
  #
28915
29455
  # * `active` - The EC2 Fleet or Spot Fleet request has been validated
28916
29456
  # and Amazon EC2 is attempting to maintain the target number of
28917
- # running Spot Instances.
29457
+ # running instances.
28918
29458
  #
28919
29459
  # * `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.
29460
+ # has no running instances. The EC2 Fleet or Spot Fleet will be
29461
+ # deleted two days after its instances are terminated.
28922
29462
  #
28923
29463
  # * `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.
29464
+ # canceled and does not launch additional instances. Its existing
29465
+ # instances continue to run until they are interrupted or
29466
+ # terminated. The request remains in this state until all instances
29467
+ # are interrupted or terminated.
28927
29468
  #
28928
29469
  # * `cancelled_terminating` - The EC2 Fleet or Spot Fleet request is
28929
- # canceled and its Spot Instances are terminating.
29470
+ # canceled and its instances are terminating. The request remains in
29471
+ # this state until all instances are terminated.
28930
29472
  #
28931
- # * `expired` - The EC2 Fleet or Spot Fleet request has expired. A
28932
- # subsequent event indicates that the instances were terminated, if
29473
+ # * `expired` - The EC2 Fleet or Spot Fleet request has expired. If
28933
29474
  # the request was created with `TerminateInstancesWithExpiration`
28934
- # set.
29475
+ # set, a subsequent `terminated` event indicates that the instances
29476
+ # are terminated.
28935
29477
  #
28936
- # * `modify_in_progress` - A request to modify the EC2 Fleet or Spot
28937
- # Fleet request was accepted and is in progress.
29478
+ # * `modify_in_progress` - The EC2 Fleet or Spot Fleet request is
29479
+ # being modified. The request remains in this state until the
29480
+ # modification is fully processed.
28938
29481
  #
28939
29482
  # * `modify_succeeded` - The EC2 Fleet or Spot Fleet request was
28940
29483
  # modified.
28941
29484
  #
28942
29485
  # * `submitted` - The EC2 Fleet or Spot Fleet request is being
28943
29486
  # evaluated and Amazon EC2 is preparing to launch the target number
28944
- # of Spot Instances.
29487
+ # of instances.
28945
29488
  #
28946
- # The following are the `instanceChange` events:
29489
+ # * `progress` - The EC2 Fleet or Spot Fleet request is in the process
29490
+ # of being fulfilled.
28947
29491
  #
28948
- # * `launched` - A request was fulfilled and a new instance was
28949
- # launched.
29492
+ # `instanceChange` events:
29493
+ #
29494
+ # * `launched` - A new instance was launched.
28950
29495
  #
28951
29496
  # * `terminated` - An instance was terminated by the user.
28952
29497
  #
28953
- # The following are the `Information` events:
29498
+ # * `termination_notified` - An instance termination notification was
29499
+ # sent when a Spot Instance was terminated by Amazon EC2 during
29500
+ # scale-down, when the target capacity of the fleet was modified
29501
+ # down, for example, from a target capacity of 4 to a target
29502
+ # capacity of 3.
29503
+ #
29504
+ # `Information` events:
29505
+ #
29506
+ # * `fleetProgressHalted` - The price in every launch specification is
29507
+ # not valid because it is below the Spot price (all the launch
29508
+ # specifications have produced `launchSpecUnusable` events). A
29509
+ # launch specification might become valid if the Spot price changes.
28954
29510
  #
28955
29511
  # * `launchSpecTemporarilyBlacklisted` - The configuration is not
28956
29512
  # valid and several attempts to launch instances have failed. For
28957
29513
  # more information, see the description of the event.
28958
29514
  #
28959
29515
  # * `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.
29516
+ # valid because it is below the Spot price.
28962
29517
  #
28963
- # * `fleetProgressHalted` - The price in every launch specification is
28964
- # not valid. A launch specification might become valid if the Spot
28965
- # price changes.
29518
+ # * `registerWithLoadBalancersFailed` - An attempt to register
29519
+ # instances with load balancers failed. For more information, see
29520
+ # the description of the event.
28966
29521
  # @return [String]
28967
29522
  #
28968
29523
  # @!attribute [rw] instance_id
@@ -29752,6 +30307,26 @@ module Aws::EC2
29752
30307
  include Aws::Structure
29753
30308
  end
29754
30309
 
30310
+ # Describes a Capacity Reservation Fleet that could not be cancelled.
30311
+ #
30312
+ # @!attribute [rw] capacity_reservation_fleet_id
30313
+ # The ID of the Capacity Reservation Fleet that could not be
30314
+ # cancelled.
30315
+ # @return [String]
30316
+ #
30317
+ # @!attribute [rw] cancel_capacity_reservation_fleet_error
30318
+ # Information about the Capacity Reservation Fleet cancellation error.
30319
+ # @return [Types::CancelCapacityReservationFleetError]
30320
+ #
30321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FailedCapacityReservationFleetCancellationResult AWS API Documentation
30322
+ #
30323
+ class FailedCapacityReservationFleetCancellationResult < Struct.new(
30324
+ :capacity_reservation_fleet_id,
30325
+ :cancel_capacity_reservation_fleet_error)
30326
+ SENSITIVE = []
30327
+ include Aws::Structure
30328
+ end
30329
+
29755
30330
  # Describes a Reserved Instance whose queued purchase was not deleted.
29756
30331
  #
29757
30332
  # @!attribute [rw] error
@@ -29850,6 +30425,95 @@ module Aws::EC2
29850
30425
  include Aws::Structure
29851
30426
  end
29852
30427
 
30428
+ # Information about a Capacity Reservation in a Capacity Reservation
30429
+ # Fleet.
30430
+ #
30431
+ # @!attribute [rw] capacity_reservation_id
30432
+ # The ID of the Capacity Reservation.
30433
+ # @return [String]
30434
+ #
30435
+ # @!attribute [rw] availability_zone_id
30436
+ # The ID of the Availability Zone in which the Capacity Reservation
30437
+ # reserves capacity.
30438
+ # @return [String]
30439
+ #
30440
+ # @!attribute [rw] instance_type
30441
+ # The instance type for which the Capacity Reservation reserves
30442
+ # capacity.
30443
+ # @return [String]
30444
+ #
30445
+ # @!attribute [rw] instance_platform
30446
+ # The type of operating system for which the Capacity Reservation
30447
+ # reserves capacity.
30448
+ # @return [String]
30449
+ #
30450
+ # @!attribute [rw] availability_zone
30451
+ # The Availability Zone in which the Capacity Reservation reserves
30452
+ # capacity.
30453
+ # @return [String]
30454
+ #
30455
+ # @!attribute [rw] total_instance_count
30456
+ # The total number of instances for which the Capacity Reservation
30457
+ # reserves capacity.
30458
+ # @return [Integer]
30459
+ #
30460
+ # @!attribute [rw] fulfilled_capacity
30461
+ # The number of capacity units fulfilled by the Capacity Reservation.
30462
+ # For more information, see [ Total target capacity][1] in the Amazon
30463
+ # EC2 User Guide.
30464
+ #
30465
+ #
30466
+ #
30467
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
30468
+ # @return [Float]
30469
+ #
30470
+ # @!attribute [rw] ebs_optimized
30471
+ # Indicates whether the Capacity Reservation reserves capacity for
30472
+ # EBS-optimized instance types.
30473
+ # @return [Boolean]
30474
+ #
30475
+ # @!attribute [rw] create_date
30476
+ # The date and time at which the Capacity Reservation was created.
30477
+ # @return [Time]
30478
+ #
30479
+ # @!attribute [rw] weight
30480
+ # The weight of the instance type in the Capacity Reservation Fleet.
30481
+ # For more information, see [ Instance type weight][1] in the Amazon
30482
+ # EC2 User Guide.
30483
+ #
30484
+ #
30485
+ #
30486
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#instance-weight
30487
+ # @return [Float]
30488
+ #
30489
+ # @!attribute [rw] priority
30490
+ # The priority of the instance type in the Capacity Reservation Fleet.
30491
+ # For more information, see [ Instance type priority][1] in the Amazon
30492
+ # EC2 User Guide.
30493
+ #
30494
+ #
30495
+ #
30496
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#instance-priority
30497
+ # @return [Integer]
30498
+ #
30499
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FleetCapacityReservation AWS API Documentation
30500
+ #
30501
+ class FleetCapacityReservation < Struct.new(
30502
+ :capacity_reservation_id,
30503
+ :availability_zone_id,
30504
+ :instance_type,
30505
+ :instance_platform,
30506
+ :availability_zone,
30507
+ :total_instance_count,
30508
+ :fulfilled_capacity,
30509
+ :ebs_optimized,
30510
+ :create_date,
30511
+ :weight,
30512
+ :priority)
30513
+ SENSITIVE = []
30514
+ include Aws::Structure
30515
+ end
30516
+
29853
30517
  # Describes an EC2 Fleet.
29854
30518
  #
29855
30519
  # @!attribute [rw] activity_status
@@ -30599,7 +31263,8 @@ module Aws::EC2
30599
31263
  # @return [String]
30600
31264
  #
30601
31265
  # @!attribute [rw] shell_version
30602
- # The version of the AWS Shell that was used to create the bitstream.
31266
+ # The version of the Amazon Web Services Shell that was used to create
31267
+ # the bitstream.
30603
31268
  # @return [String]
30604
31269
  #
30605
31270
  # @!attribute [rw] pci_id
@@ -30619,7 +31284,7 @@ module Aws::EC2
30619
31284
  # @return [Time]
30620
31285
  #
30621
31286
  # @!attribute [rw] owner_id
30622
- # The AWS account ID of the AFI owner.
31287
+ # The ID of the Amazon Web Services account that owns the AFI.
30623
31288
  # @return [String]
30624
31289
  #
30625
31290
  # @!attribute [rw] owner_alias
@@ -33673,13 +34338,12 @@ module Aws::EC2
33673
34338
  # @return [Array<Types::TagSpecification>]
33674
34339
  #
33675
34340
  # @!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*.
34341
+ # The usage operation value. For more information, see [Licensing
34342
+ # options][1] in the *VM Import/Export User Guide*.
33679
34343
  #
33680
34344
  #
33681
34345
  #
33682
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html
34346
+ # [1]: https://docs.aws.amazon.com/vm-import/latest/userguide/vmie_prereqs.html#prerequisites
33683
34347
  # @return [String]
33684
34348
  #
33685
34349
  # @!attribute [rw] boot_mode
@@ -35579,14 +36243,11 @@ module Aws::EC2
35579
36243
  # @return [Integer]
35580
36244
  #
35581
36245
  # @!attribute [rw] http_endpoint
35582
- # This parameter enables or disables the HTTP metadata endpoint on
35583
- # your instances. If the parameter is not specified, the default state
35584
- # is `enabled`.
36246
+ # Enables or disables the HTTP metadata endpoint on your instances. If
36247
+ # the parameter is not specified, the default state is `enabled`.
35585
36248
  #
35586
- # <note markdown="1"> If you specify a value of `disabled`, you will not be able to access
36249
+ # If you specify a value of `disabled`, you will not be able to access
35587
36250
  # your instance metadata.
35588
- #
35589
- # </note>
35590
36251
  # @return [String]
35591
36252
  #
35592
36253
  # @!attribute [rw] http_protocol_ipv_6
@@ -35646,19 +36307,13 @@ module Aws::EC2
35646
36307
  # @return [Integer]
35647
36308
  #
35648
36309
  # @!attribute [rw] http_endpoint
35649
- # This parameter enables or disables the HTTP metadata endpoint on
35650
- # your instances. If the parameter is not specified, the default state
35651
- # is `enabled`.
35652
- #
35653
- # <note markdown="1"> If you specify a value of `disabled`, you will not be able to access
35654
- # your instance metadata.
35655
- #
35656
- # </note>
36310
+ # Indicates whether the HTTP metadata endpoint on your instances is
36311
+ # enabled or disabled.
35657
36312
  # @return [String]
35658
36313
  #
35659
36314
  # @!attribute [rw] http_protocol_ipv_6
35660
- # Whether or not the IPv6 endpoint for the instance metadata service
35661
- # is enabled or disabled.
36315
+ # Indicates whether the IPv6 endpoint for the instance metadata
36316
+ # service is enabled or disabled.
35662
36317
  # @return [String]
35663
36318
  #
35664
36319
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceMetadataOptionsResponse AWS API Documentation
@@ -35886,7 +36541,7 @@ module Aws::EC2
35886
36541
  # ipv_6_address: "String",
35887
36542
  # },
35888
36543
  # ],
35889
- # network_interface_id: "String",
36544
+ # network_interface_id: "NetworkInterfaceId",
35890
36545
  # private_ip_address: "String",
35891
36546
  # private_ip_addresses: [
35892
36547
  # {
@@ -36359,7 +37014,8 @@ module Aws::EC2
36359
37014
  include Aws::Structure
36360
37015
  end
36361
37016
 
36362
- # Describes the disks that are available for the instance type.
37017
+ # Describes the instance store features that are supported by the
37018
+ # instance type.
36363
37019
  #
36364
37020
  # @!attribute [rw] total_size_in_gb
36365
37021
  # The total size of the disks, in GB.
@@ -36370,8 +37026,11 @@ module Aws::EC2
36370
37026
  # @return [Array<Types::DiskInfo>]
36371
37027
  #
36372
37028
  # @!attribute [rw] nvme_support
36373
- # Indicates whether non-volatile memory express (NVMe) is supported
36374
- # for instance store.
37029
+ # Indicates whether non-volatile memory express (NVMe) is supported.
37030
+ # @return [String]
37031
+ #
37032
+ # @!attribute [rw] encryption_support
37033
+ # Indicates whether data is encrypted at rest.
36375
37034
  # @return [String]
36376
37035
  #
36377
37036
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStorageInfo AWS API Documentation
@@ -36379,7 +37038,8 @@ module Aws::EC2
36379
37038
  class InstanceStorageInfo < Struct.new(
36380
37039
  :total_size_in_gb,
36381
37040
  :disks,
36382
- :nvme_support)
37041
+ :nvme_support,
37042
+ :encryption_support)
36383
37043
  SENSITIVE = []
36384
37044
  include Aws::Structure
36385
37045
  end
@@ -37532,7 +38192,7 @@ module Aws::EC2
37532
38192
  # {
37533
38193
  # 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
37534
38194
  # spot_price: "String",
37535
- # subnet_id: "String",
38195
+ # subnet_id: "SubnetId",
37536
38196
  # availability_zone: "String",
37537
38197
  # weighted_capacity: 1.0,
37538
38198
  # priority: 1.0,
@@ -38505,7 +39165,7 @@ module Aws::EC2
38505
39165
  # {
38506
39166
  # 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
38507
39167
  # spot_price: "String",
38508
- # subnet_id: "String",
39168
+ # subnet_id: "SubnetId",
38509
39169
  # availability_zone: "String",
38510
39170
  # weighted_capacity: 1.0,
38511
39171
  # priority: 1.0,
@@ -39034,7 +39694,7 @@ module Aws::EC2
39034
39694
  # Describes a load permission.
39035
39695
  #
39036
39696
  # @!attribute [rw] user_id
39037
- # The AWS account ID.
39697
+ # The Amazon Web Services account ID.
39038
39698
  # @return [String]
39039
39699
  #
39040
39700
  # @!attribute [rw] group
@@ -39103,7 +39763,7 @@ module Aws::EC2
39103
39763
  # @return [String]
39104
39764
  #
39105
39765
  # @!attribute [rw] user_id
39106
- # The AWS account ID.
39766
+ # The Amazon Web Services account ID.
39107
39767
  # @return [String]
39108
39768
  #
39109
39769
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LoadPermissionRequest AWS API Documentation
@@ -39126,7 +39786,8 @@ module Aws::EC2
39126
39786
  # @return [String]
39127
39787
  #
39128
39788
  # @!attribute [rw] owner_id
39129
- # The AWS account ID that owns the local gateway.
39789
+ # The ID of the Amazon Web Services account that owns the local
39790
+ # gateway.
39130
39791
  # @return [String]
39131
39792
  #
39132
39793
  # @!attribute [rw] state
@@ -39176,7 +39837,8 @@ module Aws::EC2
39176
39837
  # @return [String]
39177
39838
  #
39178
39839
  # @!attribute [rw] owner_id
39179
- # The AWS account ID that owns the local gateway route.
39840
+ # The ID of the Amazon Web Services account that owns the local
39841
+ # gateway route.
39180
39842
  # @return [String]
39181
39843
  #
39182
39844
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRoute AWS API Documentation
@@ -39212,7 +39874,8 @@ module Aws::EC2
39212
39874
  # @return [String]
39213
39875
  #
39214
39876
  # @!attribute [rw] owner_id
39215
- # The AWS account ID that owns the local gateway route table.
39877
+ # The ID of the Amazon Web Services account that owns the local
39878
+ # gateway route table.
39216
39879
  # @return [String]
39217
39880
  #
39218
39881
  # @!attribute [rw] state
@@ -39262,8 +39925,8 @@ module Aws::EC2
39262
39925
  # @return [String]
39263
39926
  #
39264
39927
  # @!attribute [rw] owner_id
39265
- # The AWS account ID that owns the local gateway virtual interface
39266
- # group association.
39928
+ # The ID of the Amazon Web Services account that owns the local
39929
+ # gateway virtual interface group association.
39267
39930
  # @return [String]
39268
39931
  #
39269
39932
  # @!attribute [rw] state
@@ -39314,8 +39977,8 @@ module Aws::EC2
39314
39977
  # @return [String]
39315
39978
  #
39316
39979
  # @!attribute [rw] owner_id
39317
- # The AWS account ID that owns the local gateway route table for the
39318
- # association.
39980
+ # The ID of the Amazon Web Services account that owns the local
39981
+ # gateway route table for the association.
39319
39982
  # @return [String]
39320
39983
  #
39321
39984
  # @!attribute [rw] state
@@ -39373,7 +40036,8 @@ module Aws::EC2
39373
40036
  # @return [Integer]
39374
40037
  #
39375
40038
  # @!attribute [rw] owner_id
39376
- # The AWS account ID that owns the local gateway virtual interface.
40039
+ # The ID of the Amazon Web Services account that owns the local
40040
+ # gateway virtual interface.
39377
40041
  # @return [String]
39378
40042
  #
39379
40043
  # @!attribute [rw] tags
@@ -39411,8 +40075,8 @@ module Aws::EC2
39411
40075
  # @return [String]
39412
40076
  #
39413
40077
  # @!attribute [rw] owner_id
39414
- # The AWS account ID that owns the local gateway virtual interface
39415
- # group.
40078
+ # The ID of the Amazon Web Services account that owns the local
40079
+ # gateway virtual interface group.
39416
40080
  # @return [String]
39417
40081
  #
39418
40082
  # @!attribute [rw] tags
@@ -39567,8 +40231,8 @@ module Aws::EC2
39567
40231
  # @!attribute [rw] opt_in_status
39568
40232
  # Indicates whether you are opted in to the Local Zone group or
39569
40233
  # Wavelength Zone group. The only valid value is `opted-in`. You must
39570
- # contact [AWS Support][1] to opt out of a Local Zone group, or
39571
- # Wavelength Zone group.
40234
+ # contact [Amazon Web Services Support][1] to opt out of a Local Zone
40235
+ # or Wavelength Zone group.
39572
40236
  #
39573
40237
  #
39574
40238
  #
@@ -39604,6 +40268,92 @@ module Aws::EC2
39604
40268
  include Aws::Structure
39605
40269
  end
39606
40270
 
40271
+ # @note When making an API call, you may pass ModifyCapacityReservationFleetRequest
40272
+ # data as a hash:
40273
+ #
40274
+ # {
40275
+ # capacity_reservation_fleet_id: "CapacityReservationFleetId", # required
40276
+ # total_target_capacity: 1,
40277
+ # end_date: Time.now,
40278
+ # dry_run: false,
40279
+ # remove_end_date: false,
40280
+ # }
40281
+ #
40282
+ # @!attribute [rw] capacity_reservation_fleet_id
40283
+ # The ID of the Capacity Reservation Fleet to modify.
40284
+ # @return [String]
40285
+ #
40286
+ # @!attribute [rw] total_target_capacity
40287
+ # The total number of capacity units to be reserved by the Capacity
40288
+ # Reservation Fleet. This value, together with the instance type
40289
+ # weights that you assign to each instance type used by the Fleet
40290
+ # determine the number of instances for which the Fleet reserves
40291
+ # capacity. Both values are based on units that make sense for your
40292
+ # workload. For more information, see [Total target capacity][1] in
40293
+ # the Amazon EC2 User Guide.
40294
+ #
40295
+ #
40296
+ #
40297
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
40298
+ # @return [Integer]
40299
+ #
40300
+ # @!attribute [rw] end_date
40301
+ # The date and time at which the Capacity Reservation Fleet expires.
40302
+ # When the Capacity Reservation Fleet expires, its state changes to
40303
+ # `expired` and all of the Capacity Reservations in the Fleet expire.
40304
+ #
40305
+ # The Capacity Reservation Fleet expires within an hour after the
40306
+ # specified time. For example, if you specify `5/31/2019`, `13:30:55`,
40307
+ # the Capacity Reservation Fleet is guaranteed to expire between
40308
+ # `13:30:55` and `14:30:55` on `5/31/2019`.
40309
+ #
40310
+ # You can't specify **EndDate** and <b> RemoveEndDate</b> in the same
40311
+ # request.
40312
+ # @return [Time]
40313
+ #
40314
+ # @!attribute [rw] dry_run
40315
+ # Checks whether you have the required permissions for the action,
40316
+ # without actually making the request, and provides an error response.
40317
+ # If you have the required permissions, the error response is
40318
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
40319
+ # @return [Boolean]
40320
+ #
40321
+ # @!attribute [rw] remove_end_date
40322
+ # Indicates whether to remove the end date from the Capacity
40323
+ # Reservation Fleet. If you remove the end date, the Capacity
40324
+ # Reservation Fleet does not expire and it remains active until you
40325
+ # explicitly cancel it using the **CancelCapacityReservationFleet**
40326
+ # action.
40327
+ #
40328
+ # You can't specify **RemoveEndDate** and <b> EndDate</b> in the same
40329
+ # request.
40330
+ # @return [Boolean]
40331
+ #
40332
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationFleetRequest AWS API Documentation
40333
+ #
40334
+ class ModifyCapacityReservationFleetRequest < Struct.new(
40335
+ :capacity_reservation_fleet_id,
40336
+ :total_target_capacity,
40337
+ :end_date,
40338
+ :dry_run,
40339
+ :remove_end_date)
40340
+ SENSITIVE = []
40341
+ include Aws::Structure
40342
+ end
40343
+
40344
+ # @!attribute [rw] return
40345
+ # Returns `true` if the request succeeds; otherwise, it returns an
40346
+ # error.
40347
+ # @return [Boolean]
40348
+ #
40349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationFleetResult AWS API Documentation
40350
+ #
40351
+ class ModifyCapacityReservationFleetResult < Struct.new(
40352
+ :return)
40353
+ SENSITIVE = []
40354
+ include Aws::Structure
40355
+ end
40356
+
39607
40357
  # @note When making an API call, you may pass ModifyCapacityReservationRequest
39608
40358
  # data as a hash:
39609
40359
  #
@@ -40091,8 +40841,8 @@ module Aws::EC2
40091
40841
  # @return [String]
40092
40842
  #
40093
40843
  # @!attribute [rw] user_ids
40094
- # The AWS account IDs. This parameter is valid only when modifying the
40095
- # `loadPermission` attribute.
40844
+ # The Amazon Web Services account IDs. This parameter is valid only
40845
+ # when modifying the `loadPermission` attribute.
40096
40846
  # @return [Array<String>]
40097
40847
  #
40098
40848
  # @!attribute [rw] user_groups
@@ -41476,7 +42226,7 @@ module Aws::EC2
41476
42226
  # {
41477
42227
  # 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
41478
42228
  # spot_price: "String",
41479
- # subnet_id: "String",
42229
+ # subnet_id: "SubnetId",
41480
42230
  # availability_zone: "String",
41481
42231
  # weighted_capacity: 1.0,
41482
42232
  # priority: 1.0,
@@ -41696,7 +42446,7 @@ module Aws::EC2
41696
42446
  # @return [String]
41697
42447
  #
41698
42448
  # @!attribute [rw] traffic_direction
41699
- # The type of traffic (`ingress` \| `egress`) to assign to the rule.
42449
+ # The type of traffic to assign to the rule.
41700
42450
  # @return [String]
41701
42451
  #
41702
42452
  # @!attribute [rw] rule_number
@@ -46750,22 +47500,14 @@ module Aws::EC2
46750
47500
  #
46751
47501
  # @!attribute [rw] network_border_group
46752
47502
  # The set of Availability Zones, Local Zones, or Wavelength Zones from
46753
- # which AWS advertises IP addresses.
46754
- #
46755
- # If you provide an incorrect network border group, you will receive
46756
- # an `InvalidAddress.NotFound` error. For more information, see [Error
46757
- # Codes][1].
47503
+ # which Amazon Web Services advertises IP addresses.
46758
47504
  #
46759
- # <note markdown="1"> You cannot use a network border group with EC2 Classic. If you
46760
- # attempt this operation on EC2 classic, you will receive an
46761
- # `InvalidParameterCombination` error. For more information, see
46762
- # [Error Codes][1].
47505
+ # If you provide an incorrect network border group, you receive an
47506
+ # `InvalidAddress.NotFound` error.
46763
47507
  #
46764
- # </note>
46765
- #
46766
- #
46767
- #
46768
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html
47508
+ # You cannot use a network border group with EC2 Classic. If you
47509
+ # attempt this operation on EC2 classic, you receive an
47510
+ # `InvalidParameterCombination` error.
46769
47511
  # @return [String]
46770
47512
  #
46771
47513
  # @!attribute [rw] dry_run
@@ -47887,7 +48629,7 @@ module Aws::EC2
47887
48629
  # ipv_6_address: "String",
47888
48630
  # },
47889
48631
  # ],
47890
- # network_interface_id: "String",
48632
+ # network_interface_id: "NetworkInterfaceId",
47891
48633
  # private_ip_address: "String",
47892
48634
  # private_ip_addresses: [
47893
48635
  # {
@@ -47948,7 +48690,7 @@ module Aws::EC2
47948
48690
  # {
47949
48691
  # 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
47950
48692
  # spot_price: "String",
47951
- # subnet_id: "String",
48693
+ # subnet_id: "SubnetId",
47952
48694
  # availability_zone: "String",
47953
48695
  # weighted_capacity: 1.0,
47954
48696
  # priority: 1.0,
@@ -48092,7 +48834,7 @@ module Aws::EC2
48092
48834
  # ipv_6_address: "String",
48093
48835
  # },
48094
48836
  # ],
48095
- # network_interface_id: "String",
48837
+ # network_interface_id: "NetworkInterfaceId",
48096
48838
  # private_ip_address: "String",
48097
48839
  # private_ip_addresses: [
48098
48840
  # {
@@ -48350,7 +49092,7 @@ module Aws::EC2
48350
49092
  # ipv_6_address: "String",
48351
49093
  # },
48352
49094
  # ],
48353
- # network_interface_id: "String",
49095
+ # network_interface_id: "NetworkInterfaceId",
48354
49096
  # private_ip_address: "String",
48355
49097
  # private_ip_addresses: [
48356
49098
  # {
@@ -48532,6 +49274,94 @@ module Aws::EC2
48532
49274
  include Aws::Structure
48533
49275
  end
48534
49276
 
49277
+ # Information about an instance type to use in a Capacity Reservation
49278
+ # Fleet.
49279
+ #
49280
+ # @note When making an API call, you may pass ReservationFleetInstanceSpecification
49281
+ # data as a hash:
49282
+ #
49283
+ # {
49284
+ # 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
49285
+ # 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
49286
+ # weight: 1.0,
49287
+ # availability_zone: "String",
49288
+ # availability_zone_id: "String",
49289
+ # ebs_optimized: false,
49290
+ # priority: 1,
49291
+ # }
49292
+ #
49293
+ # @!attribute [rw] instance_type
49294
+ # The instance type for which the Capacity Reservation Fleet reserves
49295
+ # capacity.
49296
+ # @return [String]
49297
+ #
49298
+ # @!attribute [rw] instance_platform
49299
+ # The type of operating system for which the Capacity Reservation
49300
+ # Fleet reserves capacity.
49301
+ # @return [String]
49302
+ #
49303
+ # @!attribute [rw] weight
49304
+ # The number of capacity units provided by the specified instance
49305
+ # type. This value, together with the total target capacity that you
49306
+ # specify for the Fleet determine the number of instances for which
49307
+ # the Fleet reserves capacity. Both values are based on units that
49308
+ # make sense for your workload. For more information, see [Total
49309
+ # target capacity][1] in the Amazon EC2 User Guide.
49310
+ #
49311
+ #
49312
+ #
49313
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#target-capacity
49314
+ # @return [Float]
49315
+ #
49316
+ # @!attribute [rw] availability_zone
49317
+ # The Availability Zone in which the Capacity Reservation Fleet
49318
+ # reserves the capacity. A Capacity Reservation Fleet can't span
49319
+ # Availability Zones. All instance type specifications that you
49320
+ # specify for the Fleet must use the same Availability Zone.
49321
+ # @return [String]
49322
+ #
49323
+ # @!attribute [rw] availability_zone_id
49324
+ # The ID of the Availability Zone in which the Capacity Reservation
49325
+ # Fleet reserves the capacity. A Capacity Reservation Fleet can't
49326
+ # span Availability Zones. All instance type specifications that you
49327
+ # specify for the Fleet must use the same Availability Zone.
49328
+ # @return [String]
49329
+ #
49330
+ # @!attribute [rw] ebs_optimized
49331
+ # Indicates whether the Capacity Reservation Fleet supports
49332
+ # EBS-optimized instances types. This optimization provides dedicated
49333
+ # throughput to Amazon EBS and an optimized configuration stack to
49334
+ # provide optimal I/O performance. This optimization isn't available
49335
+ # with all instance types. Additional usage charges apply when using
49336
+ # EBS-optimized instance types.
49337
+ # @return [Boolean]
49338
+ #
49339
+ # @!attribute [rw] priority
49340
+ # The priority to assign to the instance type. This value is used to
49341
+ # determine which of the instance types specified for the Fleet should
49342
+ # be prioritized for use. A lower value indicates a high priority. For
49343
+ # more information, see [Instance type priority][1] in the Amazon EC2
49344
+ # User Guide.
49345
+ #
49346
+ #
49347
+ #
49348
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/crfleet-concepts.html#instance-priority
49349
+ # @return [Integer]
49350
+ #
49351
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReservationFleetInstanceSpecification AWS API Documentation
49352
+ #
49353
+ class ReservationFleetInstanceSpecification < Struct.new(
49354
+ :instance_type,
49355
+ :instance_platform,
49356
+ :weight,
49357
+ :availability_zone,
49358
+ :availability_zone_id,
49359
+ :ebs_optimized,
49360
+ :priority)
49361
+ SENSITIVE = []
49362
+ include Aws::Structure
49363
+ end
49364
+
48535
49365
  # The cost associated with the Reserved Instance.
48536
49366
  #
48537
49367
  # @!attribute [rw] hourly_price
@@ -50228,7 +51058,7 @@ module Aws::EC2
50228
51058
  # ipv_6_address: "String",
50229
51059
  # },
50230
51060
  # ],
50231
- # network_interface_id: "String",
51061
+ # network_interface_id: "NetworkInterfaceId",
50232
51062
  # private_ip_address: "String",
50233
51063
  # private_ip_addresses: [
50234
51064
  # {
@@ -51755,21 +52585,25 @@ module Aws::EC2
51755
52585
  #
51756
52586
  # {
51757
52587
  # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
51758
- # max_results: 1,
51759
- # next_token: "String",
51760
- # dry_run: false,
51761
- # filters: [ # required
52588
+ # filters: [
51762
52589
  # {
51763
52590
  # name: "String",
51764
52591
  # values: ["String"],
51765
52592
  # },
51766
52593
  # ],
52594
+ # max_results: 1,
52595
+ # next_token: "String",
52596
+ # dry_run: false,
51767
52597
  # }
51768
52598
  #
51769
52599
  # @!attribute [rw] local_gateway_route_table_id
51770
52600
  # The ID of the local gateway route table.
51771
52601
  # @return [String]
51772
52602
  #
52603
+ # @!attribute [rw] filters
52604
+ # One or more filters.
52605
+ # @return [Array<Types::Filter>]
52606
+ #
51773
52607
  # @!attribute [rw] max_results
51774
52608
  # The maximum number of results to return with a single call. To
51775
52609
  # retrieve the remaining results, make another call with the returned
@@ -51787,18 +52621,14 @@ module Aws::EC2
51787
52621
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
51788
52622
  # @return [Boolean]
51789
52623
  #
51790
- # @!attribute [rw] filters
51791
- # One or more filters.
51792
- # @return [Array<Types::Filter>]
51793
- #
51794
52624
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SearchLocalGatewayRoutesRequest AWS API Documentation
51795
52625
  #
51796
52626
  class SearchLocalGatewayRoutesRequest < Struct.new(
51797
52627
  :local_gateway_route_table_id,
52628
+ :filters,
51798
52629
  :max_results,
51799
52630
  :next_token,
51800
- :dry_run,
51801
- :filters)
52631
+ :dry_run)
51802
52632
  SENSITIVE = []
51803
52633
  include Aws::Structure
51804
52634
  end
@@ -52399,8 +53229,8 @@ module Aws::EC2
52399
53229
  # @return [Array<String>]
52400
53230
  #
52401
53231
  # @!attribute [rw] acceptance_required
52402
- # Indicates whether requests from other AWS accounts to create an
52403
- # endpoint to the service must first be accepted.
53232
+ # Indicates whether requests from other Amazon Web Services accounts
53233
+ # to create an endpoint to the service must first be accepted.
52404
53234
  # @return [Boolean]
52405
53235
  #
52406
53236
  # @!attribute [rw] manages_vpc_endpoints
@@ -52475,7 +53305,7 @@ module Aws::EC2
52475
53305
  # @return [Array<String>]
52476
53306
  #
52477
53307
  # @!attribute [rw] owner
52478
- # The AWS account ID of the service owner.
53308
+ # The Amazon Web Services account ID of the service owner.
52479
53309
  # @return [String]
52480
53310
  #
52481
53311
  # @!attribute [rw] base_endpoint_dns_names
@@ -53100,7 +53930,7 @@ module Aws::EC2
53100
53930
  # ipv_6_address: "String",
53101
53931
  # },
53102
53932
  # ],
53103
- # network_interface_id: "String",
53933
+ # network_interface_id: "NetworkInterfaceId",
53104
53934
  # private_ip_address: "String",
53105
53935
  # private_ip_addresses: [
53106
53936
  # {
@@ -53426,7 +54256,7 @@ module Aws::EC2
53426
54256
  # ipv_6_address: "String",
53427
54257
  # },
53428
54258
  # ],
53429
- # network_interface_id: "String",
54259
+ # network_interface_id: "NetworkInterfaceId",
53430
54260
  # private_ip_address: "String",
53431
54261
  # private_ip_addresses: [
53432
54262
  # {
@@ -53487,7 +54317,7 @@ module Aws::EC2
53487
54317
  # {
53488
54318
  # 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
53489
54319
  # spot_price: "String",
53490
- # subnet_id: "String",
54320
+ # subnet_id: "SubnetId",
53491
54321
  # availability_zone: "String",
53492
54322
  # weighted_capacity: 1.0,
53493
54323
  # priority: 1.0,
@@ -55182,33 +56012,7 @@ module Aws::EC2
55182
56012
  # }
55183
56013
  #
55184
56014
  # @!attribute [rw] resource_type
55185
- # The type of resource to tag on creation. The possible values are:
55186
- # `capacity-reservation` \| `carrier-gateway` \| `client-vpn-endpoint`
55187
- # \| `customer-gateway` \| `dedicated-host` \| `dhcp-options` \|
55188
- # `egress-only-internet-gateway` \| `elastic-gpu` \| `elastic-ip` \|
55189
- # `export-image-task` \| `export-instance-task` \| `fleet` \|
55190
- # `fpga-image` \| `host-reservation` \| `image` \| `import-image-task`
55191
- # \| `import-snapshot-task` \| `instance` \| `instance-event-window`
55192
- # \| `internet-gateway` \| `ipv4pool-ec2` \| `ipv6pool-ec2` \|
55193
- # `key-pair` \| `launch-template` \|
55194
- # `local-gateway-route-table-vpc-association` \| `natgateway` \|
55195
- # `network-acl` \| `network-insights-analysis` \|
55196
- # `network-insights-path` \| `network-interface` \| `placement-group`
55197
- # \| `prefix-list` \| `reserved-instances` \| `route-table` \|
55198
- # `security-group` \| `security-group-rule` \| `snapshot` \|
55199
- # `spot-fleet-request` \| `spot-instances-request` \| `subnet` \|
55200
- # `traffic-mirror-filter` \| `traffic-mirror-session` \|
55201
- # `traffic-mirror-target` \| `transit-gateway` \|
55202
- # `transit-gateway-attachment` \| `transit-gateway-multicast-domain`
55203
- # \| `transit-gateway-route-table` \| `volume` \| `vpc` \|
55204
- # `vpc-endpoint` \| `vpc-endpoint-service` \| `vpc-flow-log` \|
55205
- # `vpc-peering-connection` \| `vpn-connection` \| `vpn-gateway`.
55206
- #
55207
- # To tag a resource after it has been created, see [CreateTags][1].
55208
- #
55209
- #
55210
- #
55211
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
56015
+ # The type of resource to tag on creation.
55212
56016
  # @return [String]
55213
56017
  #
55214
56018
  # @!attribute [rw] tags
@@ -58604,7 +59408,8 @@ module Aws::EC2
58604
59408
  # @return [Array<Types::Tag>]
58605
59409
  #
58606
59410
  # @!attribute [rw] owner_id
58607
- # The ID of the AWS account that owns the VPC endpoint.
59411
+ # The ID of the Amazon Web Services account that owns the VPC
59412
+ # endpoint.
58608
59413
  # @return [String]
58609
59414
  #
58610
59415
  # @!attribute [rw] last_error
@@ -58646,7 +59451,8 @@ module Aws::EC2
58646
59451
  # @return [String]
58647
59452
  #
58648
59453
  # @!attribute [rw] vpc_endpoint_owner
58649
- # The AWS account ID of the owner of the VPC endpoint.
59454
+ # The ID of the Amazon Web Services account that owns the VPC
59455
+ # endpoint.
58650
59456
  # @return [String]
58651
59457
  #
58652
59458
  # @!attribute [rw] vpc_endpoint_state
@@ -58702,8 +59508,8 @@ module Aws::EC2
58702
59508
  #
58703
59509
  # @!attribute [rw] network_border_group
58704
59510
  # The name of the unique set of Availability Zones, Local Zones, or
58705
- # Wavelength Zones from which AWS advertises IP addresses, for
58706
- # example, `us-east-1-wl1-bos-wlz-1`.
59511
+ # Wavelength Zones from which Amazon Web Services advertises IP
59512
+ # addresses, for example, `us-east-1-wl1-bos-wlz-1`.
58707
59513
  # @return [String]
58708
59514
  #
58709
59515
  # @!attribute [rw] ipv_6_pool