getConfiguredTable method

Future<GetConfiguredTableOutput> getConfiguredTable({
  1. required String configuredTableIdentifier,
})

Retrieves a configured table.

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

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

Implementation

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