Class: Aws::EC2::Types::CapacityReservationCommitmentInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CapacityReservationCommitmentInfo
- Defined in:
- gems/aws-sdk-ec2/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.
5279 5280 5281 5282 5283 5284 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5279 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.
5279 5280 5281 5282 5283 5284 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5279 class CapacityReservationCommitmentInfo < Struct.new( :committed_instance_count, :commitment_end_date) SENSITIVE = [] include Aws::Structure end |