getFormType method
Retrieves a form type in Glue Data Catalog by its identifier.
May throw AccessDeniedException.
May throw EntityNotFoundException.
May throw InternalServiceException.
May throw InvalidInputException.
May throw ThrottlingException.
Parameter identifier :
The identifier of the form type to retrieve.
Implementation
Future<GetFormTypeResponse> getFormType({
required String identifier,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSGlue.GetFormType'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'Identifier': identifier,
},
);
return GetFormTypeResponse.fromJson(jsonResponse.body);
}