startApplication method
Starts an application that is currently stopped.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter applicationId :
The unique identifier of the application you want to start.
Implementation
Future<void> startApplication({
required String applicationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'POST',
requestUri: '/applications/${Uri.encodeComponent(applicationId)}/start',
exceptionFnMap: _exceptionFns,
);
}