describeSimulation method

Future<DescribeSimulationOutput> describeSimulation({
  1. required String simulation,
})

Returns the current state of the given simulation.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ValidationException.

Parameter simulation : The name of the simulation.

Implementation

Future<DescribeSimulationOutput> describeSimulation({
  required String simulation,
}) async {
  final $query = <String, List<String>>{
    'simulation': [simulation],
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/describesimulation',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return DescribeSimulationOutput.fromJson(response);
}