Describe Reserved Db Instances Offerings
| rds_describe_reserved_db_instances_offerings | R Documentation |
Lists available reserved DB instance offerings¶
Description¶
Lists available reserved DB instance offerings.
Usage¶
rds_describe_reserved_db_instances_offerings(
ReservedDBInstancesOfferingId, DBInstanceClass, Duration,
ProductDescription, OfferingType, MultiAZ, Filters, MaxRecords, Marker)
Arguments¶
ReservedDBInstancesOfferingIdThe offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation identifier.
Example:
438012d3-4052-4cc7-b2e3-8d3372e0e706DBInstanceClassThe DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class.
DurationDuration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration.
Valid Values:
1 | 3 | 31536000 | 94608000ProductDescriptionProduct description filter value. Specify this parameter to show only the available offerings that contain the specified product description.
The results show offerings that partially match the filter value.
OfferingTypeThe offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type.
Valid Values:
"Partial Upfront" | "All Upfront" | "No Upfront"MultiAZSpecifies whether to show only those reservations that support Multi-AZ.
FiltersThis parameter isn't currently supported.
MaxRecordsThe maximum number of records to include in the response. If more than the
MaxRecordsvalue is available, a pagination token called a marker is included in the response so you can retrieve the remaining results.Default: 100
Constraints: Minimum 20, maximum 100.
MarkerAn optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by
MaxRecords.
Value¶
A list with the following syntax:
list(
Marker = "string",
ReservedDBInstancesOfferings = list(
list(
ReservedDBInstancesOfferingId = "string",
DBInstanceClass = "string",
Duration = 123,
FixedPrice = 123.0,
UsagePrice = 123.0,
CurrencyCode = "string",
ProductDescription = "string",
OfferingType = "string",
MultiAZ = TRUE|FALSE,
RecurringCharges = list(
list(
RecurringChargeAmount = 123.0,
RecurringChargeFrequency = "string"
)
)
)
)
)
Request syntax¶
svc$describe_reserved_db_instances_offerings(
ReservedDBInstancesOfferingId = "string",
DBInstanceClass = "string",
Duration = "string",
ProductDescription = "string",
OfferingType = "string",
MultiAZ = TRUE|FALSE,
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
MaxRecords = 123,
Marker = "string"
)