describeWorldGenerationJob method
Describes a world generation job.
May throw ResourceNotFoundException. May throw InvalidParameterException. May throw InternalServerException. May throw ThrottlingException.
Parameter job
:
The Amazon Resource Name (arn) of the world generation job to describe.
Implementation
Future<DescribeWorldGenerationJobResponse> describeWorldGenerationJob({
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: '/describeWorldGenerationJob',
exceptionFnMap: _exceptionFns,
);
return DescribeWorldGenerationJobResponse.fromJson(response);
}