describeApp method
Returns the state of the given custom app.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter app :
The name of the app.
Parameter domain :
The name of the domain of the app.
Parameter simulation :
The name of the simulation of the app.
Implementation
Future<DescribeAppOutput> describeApp({
required String app,
required String domain,
required String simulation,
}) async {
final $query = <String, List<String>>{
'app': [app],
'domain': [domain],
'simulation': [simulation],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/describeapp',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return DescribeAppOutput.fromJson(response);
}