getRenewalPricing method

Future<GetRenewalPricingOutput> getRenewalPricing({
  1. required String outpostIdentifier,
})

Gets all available renewal pricing options for the specified Outpost.

May throw AccessDeniedException. May throw InternalServerException. May throw NotFoundException. May throw ValidationException.

Parameter outpostIdentifier : The ID or ARN of the Outpost.

Implementation

Future<GetRenewalPricingOutput> getRenewalPricing({
  required String outpostIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/outpost/${Uri.encodeComponent(outpostIdentifier)}/renewal-pricing',
    exceptionFnMap: _exceptionFns,
  );
  return GetRenewalPricingOutput.fromJson(response);
}