getTargetResourceType method
Gets information about the specified resource type.
May throw ResourceNotFoundException.
May throw ValidationException.
Parameter resourceType :
The resource type.
Implementation
Future<GetTargetResourceTypeResponse> getTargetResourceType({
required String resourceType,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/targetResourceTypes/${Uri.encodeComponent(resourceType)}',
exceptionFnMap: _exceptionFns,
);
return GetTargetResourceTypeResponse.fromJson(response);
}