Describe Savings Plans Offerings
| savingsplans_describe_savings_plans_offerings | R Documentation |
Describes the offerings for the specified Savings Plans¶
Description¶
Describes the offerings for the specified Savings Plans.
Usage¶
savingsplans_describe_savings_plans_offerings(offeringIds,
paymentOptions, productType, planTypes, durations, currencies,
descriptions, serviceCodes, usageTypes, operations, filters, nextToken,
maxResults)
Arguments¶
offeringIdsThe IDs of the offerings.
paymentOptionsThe payment options.
productTypeThe product type.
planTypesThe plan types.
durationsThe duration, in seconds.
currenciesThe currencies.
descriptionsThe descriptions.
serviceCodesThe services.
usageTypesThe usage details of the line item in the billing report.
operationsThe specific Amazon Web Services operation for the line item in the billing report.
filtersThe filters.
nextTokenThe token for the next page of results.
maxResultsThe maximum number of results to return with a single call. To retrieve additional results, make another call with the returned token value.
Value¶
A list with the following syntax:
list(
searchResults = list(
list(
offeringId = "string",
productTypes = list(
"EC2"|"Fargate"|"Lambda"|"SageMaker"
),
planType = "Compute"|"EC2Instance"|"SageMaker",
description = "string",
paymentOption = "All Upfront"|"Partial Upfront"|"No Upfront",
durationSeconds = 123,
currency = "CNY"|"USD",
serviceCode = "string",
usageType = "string",
operation = "string",
properties = list(
list(
name = "region"|"instanceFamily",
value = "string"
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_savings_plans_offerings(
offeringIds = list(
"string"
),
paymentOptions = list(
"All Upfront"|"Partial Upfront"|"No Upfront"
),
productType = "EC2"|"Fargate"|"Lambda"|"SageMaker",
planTypes = list(
"Compute"|"EC2Instance"|"SageMaker"
),
durations = list(
123
),
currencies = list(
"CNY"|"USD"
),
descriptions = list(
"string"
),
serviceCodes = list(
"string"
),
usageTypes = list(
"string"
),
operations = list(
"string"
),
filters = list(
list(
name = "region"|"instanceFamily",
values = list(
"string"
)
)
),
nextToken = "string",
maxResults = 123
)