removeBackendConfig method

Future<RemoveBackendConfigResponse> removeBackendConfig({
  1. required String appId,
})

Removes the AWS resources required to access the Amplify Admin UI.

May throw BadRequestException. May throw GatewayTimeoutException. May throw NotFoundException. May throw TooManyRequestsException.

Parameter appId : The app ID.

Implementation

Future<RemoveBackendConfigResponse> removeBackendConfig({
  required String appId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/backend/${Uri.encodeComponent(appId)}/config/remove',
    exceptionFnMap: _exceptionFns,
  );
  return RemoveBackendConfigResponse.fromJson(response);
}