deleteConfiguredTable method

Future<void> deleteConfiguredTable({
  1. required String configuredTableIdentifier,
})

Deletes a configured table.

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

Parameter configuredTableIdentifier : The unique ID for the configured table to delete.

Implementation

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