startGraph method

Future<StartGraphOutput> startGraph({
  1. required String graphIdentifier,
})

Starts the specific graph.

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

Parameter graphIdentifier : The unique identifier of the Neptune Analytics graph.

Implementation

Future<StartGraphOutput> startGraph({
  required String graphIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri: '/graphs/${Uri.encodeComponent(graphIdentifier)}/start',
    exceptionFnMap: _exceptionFns,
  );
  return StartGraphOutput.fromJson(response);
}