AWSEC2ModifyCapacityReservationRequest
Objective-C
@interface AWSEC2ModifyCapacityReservationRequest
Swift
class AWSEC2ModifyCapacityReservationRequest
-
Reserved. Capacity Reservations you have created are accepted by default.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable accept;
Swift
var accept: NSNumber? { get set }
-
Reserved for future use.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable additionalInfo;
Swift
var additionalInfo: String? { get set }
-
The ID of the Capacity Reservation.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable capacityReservationId;
Swift
var capacityReservationId: String? { get set }
-
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable dryRun;
Swift
var dryRun: NSNumber? { get set }
-
The date and time at which the Capacity Reservation expires. When a Capacity Reservation expires, the reserved capacity is released and you can no longer launch instances into it. The Capacity Reservation’s state changes to
expired
when it reaches its end date and time.The Capacity Reservation is cancelled within an hour from the specified time. For example, if you specify 5/31/2019, 13:30:55, the Capacity Reservation is guaranteed to end between 13:30:55 and 14:30:55 on 5/31/2019.
You must provide an
EndDate
value ifEndDateType
islimited
. OmitEndDate
ifEndDateType
isunlimited
.Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable endDate;
Swift
var endDate: Date? { get set }
-
Indicates the way in which the Capacity Reservation ends. A Capacity Reservation can have one of the following end types:
unlimited
- The Capacity Reservation remains active until you explicitly cancel it. Do not provide anEndDate
value ifEndDateType
isunlimited
.limited
- The Capacity Reservation expires automatically at a specified date and time. You must provide anEndDate
value ifEndDateType
islimited
.
Declaration
Objective-C
@property (nonatomic) AWSEC2EndDateType endDateType;
Swift
var endDateType: AWSEC2EndDateType { get set }
-
The number of instances for which to reserve capacity. The number of instances can’t be increased or decreased by more than
1000
in a single request.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable instanceCount;
Swift
var instanceCount: NSNumber? { get set }