deletePolicy method
Permanently delete a policy that you created.
May throw BadRequestException.
May throw ConflictException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw ServiceQuotaExceededException.
May throw TooManyRequestsException.
Implementation
Future<void> deletePolicy() async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/2017-08-29/policy',
exceptionFnMap: _exceptionFns,
);
}