describeWorldExportJob method

Future<DescribeWorldExportJobResponse> describeWorldExportJob({
  1. required String job,
})

Describes a world export job.

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

Parameter job : The Amazon Resource Name (arn) of the world export job to describe.

Implementation

Future<DescribeWorldExportJobResponse> describeWorldExportJob({
  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: '/describeWorldExportJob',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeWorldExportJobResponse.fromJson(response);
}