batchDescribeSimulationJob method

Future<BatchDescribeSimulationJobResponse> batchDescribeSimulationJob({
  1. required List<String> jobs,
})

Describes one or more simulation jobs.

May throw ResourceNotFoundException. May throw InvalidParameterException. May throw InternalServerException. May throw ThrottlingException.

Parameter jobs : A list of Amazon Resource Names (ARNs) of simulation jobs to describe.

Implementation

Future<BatchDescribeSimulationJobResponse> batchDescribeSimulationJob({
  required List<String> jobs,
}) async {
  ArgumentError.checkNotNull(jobs, 'jobs');
  final $payload = <String, dynamic>{
    'jobs': jobs,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/batchDescribeSimulationJob',
    exceptionFnMap: _exceptionFns,
  );
  return BatchDescribeSimulationJobResponse.fromJson(response);
}