startApplication method
Request is an operation which starts an application.
Parameter ApplicationId is required.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter applicationId :
The ID of the application.
Implementation
Future<StartApplicationOutput> startApplication({
required String applicationId,
}) async {
final $payload = <String, dynamic>{
'ApplicationId': applicationId,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/start-application',
exceptionFnMap: _exceptionFns,
);
return StartApplicationOutput.fromJson(response);
}