describeSimulationJobBatch method

Future<DescribeSimulationJobBatchResponse> describeSimulationJobBatch({
  1. required String batch,
})

Describes a simulation job batch.

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

Parameter batch : The id of the batch to describe.

Implementation

Future<DescribeSimulationJobBatchResponse> describeSimulationJobBatch({
  required String batch,
}) async {
  ArgumentError.checkNotNull(batch, 'batch');
  _s.validateStringLength(
    'batch',
    batch,
    1,
    1224,
    isRequired: true,
  );
  final $payload = <String, dynamic>{
    'batch': batch,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/describeSimulationJobBatch',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeSimulationJobBatchResponse.fromJson(response);
}