deleteIdNamespace method
Deletes the IdNamespace with a given name.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter idNamespaceName :
The name of the ID namespace.
Implementation
Future<DeleteIdNamespaceOutput> deleteIdNamespace({
required String idNamespaceName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/idnamespaces/${Uri.encodeComponent(idNamespaceName)}',
exceptionFnMap: _exceptionFns,
);
return DeleteIdNamespaceOutput.fromJson(response);
}