Class: Aws::EC2::Types::SpotPlacementScore
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::SpotPlacementScore
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
The Spot placement score for this Region or Availability Zone. The
score is calculated based on the assumption that the
capacity-optimized
allocation strategy is used and that all of the
Availability Zones in the Region can be used.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone_id ⇒ String
The Availability Zone.
-
#region ⇒ String
The Region.
-
#score ⇒ Integer
The placement score, on a scale from
1
to10
.
Instance Attribute Details
#availability_zone_id ⇒ String
The Availability Zone.
67914 67915 67916 67917 67918 67919 67920 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67914 class SpotPlacementScore < Struct.new( :region, :availability_zone_id, :score) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Region.
67914 67915 67916 67917 67918 67919 67920 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67914 class SpotPlacementScore < Struct.new( :region, :availability_zone_id, :score) SENSITIVE = [] include Aws::Structure end |
#score ⇒ Integer
The placement score, on a scale from 1
to 10
. A score of 10
indicates that your Spot request is highly likely to succeed in this
Region or Availability Zone. A score of 1
indicates that your Spot
request is not likely to succeed.
67914 67915 67916 67917 67918 67919 67920 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67914 class SpotPlacementScore < Struct.new( :region, :availability_zone_id, :score) SENSITIVE = [] include Aws::Structure end |