Class: Aws::EC2::Types::CapacityReservationCommitmentInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::CapacityReservationCommitmentInfo
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Information about your commitment for a future-dated Capacity Reservation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #commitment_end_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time at which the commitment duration expires, in the ISO8601 format in the UTC time zone (‘YYYY-MM-DDThh:mm:ss.sssZ`).
 - 
  
    
      #committed_instance_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instance capacity that you committed to when you requested the future-dated Capacity Reservation.
 
Instance Attribute Details
#commitment_end_date ⇒ Time
The date and time at which the commitment duration expires, in the ISO8601 format in the UTC time zone (‘YYYY-MM-DDThh:mm:ss.sssZ`). You can’t decrease the instance count or cancel the Capacity Reservation before this date and time.
      5288 5289 5290 5291 5292 5293  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 5288 class CapacityReservationCommitmentInfo < Struct.new( :committed_instance_count, :commitment_end_date) SENSITIVE = [] include Aws::Structure end  | 
  
#committed_instance_count ⇒ Integer
The instance capacity that you committed to when you requested the future-dated Capacity Reservation.
      5288 5289 5290 5291 5292 5293  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 5288 class CapacityReservationCommitmentInfo < Struct.new( :committed_instance_count, :commitment_end_date) SENSITIVE = [] include Aws::Structure end  |