deleteReportDefinition method
Deletes the specified report definition in AWS Application Cost Profiler. This stops the report from being generated.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter reportId :
Required. ID of the report to delete.
Implementation
Future<DeleteReportDefinitionResult> deleteReportDefinition({
required String reportId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/reportDefinition/${Uri.encodeComponent(reportId)}',
exceptionFnMap: _exceptionFns,
);
return DeleteReportDefinitionResult.fromJson(response);
}