describeSimulationJob method

Future<DescribeSimulationJobResponse> describeSimulationJob({
  1. required String job,
})

Describes a simulation job.

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

Parameter job : The Amazon Resource Name (ARN) of the simulation job to be described.

Implementation

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