Class: Aws::EC2::Types::ReservedCapacityFallbackOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::ReservedCapacityFallbackOptions
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes the fallback behavior for an EC2 Fleet that uses reserved capacity when the reserved capacity is not enough to meet the target capacity. If you don't specify fallback options, EC2 Fleet does not fall back to any other market type after the specified reservation types are exhausted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#market_types ⇒ Array<String>
The instance purchasing options to fall back to when the reserved capacity is not enough to meet the target capacity.
Instance Attribute Details
#market_types ⇒ Array<String>
The instance purchasing options to fall back to when the reserved
capacity is not enough to meet the target capacity. The only
supported value is on-demand, which launches On-Demand Instances
to fulfill the remaining target capacity.
77338 77339 77340 77341 77342 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 77338 class ReservedCapacityFallbackOptions < Struct.new( :market_types) SENSITIVE = [] include Aws::Structure end |