Class: Aws::EC2::Types::GetCapacityReservationUsageResult
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::EC2::Types::GetCapacityReservationUsageResult
 
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #available_instance_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The remaining capacity. 
- 
  
    
      #capacity_reservation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the Capacity Reservation. 
- 
  
    
      #instance_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of instance for which the Capacity Reservation reserves capacity. 
- 
  
    
      #instance_usages  ⇒ Array<Types::InstanceUsage> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Information about the Capacity Reservation usage. 
- 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token to use to retrieve the next page of results. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The current state of the Capacity Reservation. 
- 
  
    
      #total_instance_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of instances for which the Capacity Reservation reserves capacity. 
Instance Attribute Details
#available_instance_count ⇒ Integer
The remaining capacity. Indicates the number of instances that can be launched in the Capacity Reservation.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end | 
#capacity_reservation_id ⇒ String
The ID of the Capacity Reservation.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end | 
#instance_type ⇒ String
The type of instance for which the Capacity Reservation reserves capacity.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end | 
#instance_usages ⇒ Array<Types::InstanceUsage>
Information about the Capacity Reservation usage.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end | 
#next_token ⇒ String
The token to use to retrieve the next page of results. This value is
null when there are no more results to return.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end | 
#state ⇒ String
The current state of the Capacity Reservation. A Capacity Reservation can be in one of the following states:
- active- The capacity is available for use.
- expired- The Capacity Reservation expired automatically at the date and time specified in your reservation request. The reserved capacity is no longer available for your use.
- cancelled- The Capacity Reservation was canceled. The reserved capacity is no longer available for your use.
- pending- The Capacity Reservation request was successful but the capacity provisioning is still pending.
- failed- The Capacity Reservation request has failed. A request can fail due to request parameters that are not valid, capacity constraints, or instance limit constraints. You can view a failed request for 60 minutes.
- scheduled- (Future-dated Capacity Reservations) The future-dated Capacity Reservation request was approved and the Capacity Reservation is scheduled for delivery on the requested start date.
- payment-pending- (Capacity Blocks) The upfront payment has not been processed yet.
- payment-failed- (Capacity Blocks) The upfront payment was not processed in the 12-hour time frame. Your Capacity Block was released.
- assessing- (Future-dated Capacity Reservations) Amazon EC2 is assessing your request for a future-dated Capacity Reservation.
- delayed- (Future-dated Capacity Reservations) Amazon EC2 encountered a delay in provisioning the requested future-dated Capacity Reservation. Amazon EC2 is unable to deliver the requested capacity by the requested start date and time.
- unsupported- (Future-dated Capacity Reservations) Amazon EC2 can't support the future-dated Capacity Reservation request due to capacity constraints. You can view unsupported requests for 30 days. The Capacity Reservation will not be delivered.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end | 
#total_instance_count ⇒ Integer
The number of instances for which the Capacity Reservation reserves capacity.
| 40915 40916 40917 40918 40919 40920 40921 40922 40923 40924 40925 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 40915 class GetCapacityReservationUsageResult < Struct.new( :next_token, :capacity_reservation_id, :instance_type, :total_instance_count, :available_instance_count, :state, :instance_usages) SENSITIVE = [] include Aws::Structure end |