Describe Capacity Reservations
ec2_describe_capacity_reservations | R Documentation |
Describes one or more of your Capacity Reservations¶
Description¶
Describes one or more of your Capacity Reservations. The results describe only the Capacity Reservations in the Amazon Web Services Region that you're currently using.
Usage¶
ec2_describe_capacity_reservations(CapacityReservationIds, NextToken,
MaxResults, Filters, DryRun)
Arguments¶
CapacityReservationIds |
The ID of the Capacity Reservation. |
NextToken |
The token to use to retrieve the next page of results. |
MaxResults |
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. |
Filters |
One or more filters.
|
DryRun |
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
|
Value¶
A list with the following syntax:
list(
NextToken = "string",
CapacityReservations = list(
list(
CapacityReservationId = "string",
OwnerId = "string",
CapacityReservationArn = "string",
AvailabilityZoneId = "string",
InstanceType = "string",
InstancePlatform = "Linux/UNIX"|"Red Hat Enterprise Linux"|"SUSE Linux"|"Windows"|"Windows with SQL Server"|"Windows with SQL Server Enterprise"|"Windows with SQL Server Standard"|"Windows with SQL Server Web"|"Linux with SQL Server Standard"|"Linux with SQL Server Web"|"Linux with SQL Server Enterprise"|"RHEL with SQL Server Standard"|"RHEL with SQL Server Enterprise"|"RHEL with SQL Server Web"|"RHEL with HA"|"RHEL with HA and SQL Server Standard"|"RHEL with HA and SQL Server Enterprise"|"Ubuntu Pro",
AvailabilityZone = "string",
Tenancy = "default"|"dedicated",
TotalInstanceCount = 123,
AvailableInstanceCount = 123,
EbsOptimized = TRUE|FALSE,
EphemeralStorage = TRUE|FALSE,
State = "active"|"expired"|"cancelled"|"pending"|"failed"|"scheduled"|"payment-pending"|"payment-failed"|"assessing"|"delayed"|"unsupported",
StartDate = as.POSIXct(
"2015-01-01"
),
EndDate = as.POSIXct(
"2015-01-01"
),
EndDateType = "unlimited"|"limited",
InstanceMatchCriteria = "open"|"targeted",
CreateDate = as.POSIXct(
"2015-01-01"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
OutpostArn = "string",
CapacityReservationFleetId = "string",
PlacementGroupArn = "string",
CapacityAllocations = list(
list(
AllocationType = "used"|"future",
Count = 123
)
),
ReservationType = "default"|"capacity-block",
UnusedReservationBillingOwnerId = "string",
CommitmentInfo = list(
CommittedInstanceCount = 123,
CommitmentEndDate = as.POSIXct(
"2015-01-01"
)
),
DeliveryPreference = "fixed"|"incremental"
)
)
)
Request syntax¶
svc$describe_capacity_reservations(
CapacityReservationIds = list(
"string"
),
NextToken = "string",
MaxResults = 123,
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DryRun = TRUE|FALSE
)