describePersistentAppUI method

Future<DescribePersistentAppUIOutput> describePersistentAppUI({
  1. required String persistentAppUIId,
})

Describes a persistent application user interface.

May throw InternalServerException. May throw InvalidRequestException.

Parameter persistentAppUIId : The identifier for the persistent application user interface.

Implementation

Future<DescribePersistentAppUIOutput> describePersistentAppUI({
  required String persistentAppUIId,
}) async {
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'ElasticMapReduce.DescribePersistentAppUI'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'PersistentAppUIId': persistentAppUIId,
    },
  );

  return DescribePersistentAppUIOutput.fromJson(jsonResponse.body);
}