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¶
ReservedDBInstancesOfferingId |
The offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation identifier. Example: |
DBInstanceClass |
The DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class. |
Duration |
Duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration. Valid Values: |
ProductDescription |
Product 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. |
OfferingType |
The offering type filter value. Specify this parameter to show only the available offerings matching the specified offering type. Valid Values:
|
MultiAZ |
Specifies whether to show only those reservations that support Multi-AZ. |
Filters |
This parameter isn't currently supported. |
MaxRecords |
The maximum number of records to include in the response. If more
than the Default: 100 Constraints: Minimum 20, maximum 100. |
Marker |
An 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
|
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"
)
Examples¶
## Not run:
# This example lists information for all reserved DB instance offerings
# for the specified DB instance class, duration, product, offering type,
# and availability zone settings.
svc$describe_reserved_db_instances_offerings(
DBInstanceClass = "db.t2.micro",
Duration = "1y",
MultiAZ = FALSE,
OfferingType = "No Upfront",
ProductDescription = "mysql"
)
## End(Not run)