deleteSite method
Deletes the specified site.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw NotFoundException.
May throw ValidationException.
Parameter siteId :
The ID or the Amazon Resource Name (ARN) of the site.
Implementation
Future<void> deleteSite({
required String siteId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/sites/${Uri.encodeComponent(siteId)}',
exceptionFnMap: _exceptionFns,
);
}