getReportDefinition method
Retrieves the definition of a report already configured in AWS Application Cost Profiler.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter reportId :
ID of the report to retrieve.
Implementation
Future<GetReportDefinitionResult> getReportDefinition({
required String reportId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/reportDefinition/${Uri.encodeComponent(reportId)}',
exceptionFnMap: _exceptionFns,
);
return GetReportDefinitionResult.fromJson(response);
}