deleteIdMappingTable method

Future<void> deleteIdMappingTable({
  1. required String idMappingTableIdentifier,
  2. required String membershipIdentifier,
})

Deletes an ID mapping table.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter idMappingTableIdentifier : The unique identifier of the ID mapping table that you want to delete.

Parameter membershipIdentifier : The unique identifier of the membership that contains the ID mapping table that you want to delete.

Implementation

Future<void> deleteIdMappingTable({
  required String idMappingTableIdentifier,
  required String membershipIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/memberships/${Uri.encodeComponent(membershipIdentifier)}/idmappingtables/${Uri.encodeComponent(idMappingTableIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
}