getCollaboration method
Returns metadata about a collaboration.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter collaborationIdentifier :
The identifier for the collaboration.
Implementation
Future<GetCollaborationOutput> getCollaboration({
required String collaborationIdentifier,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/collaborations/${Uri.encodeComponent(collaborationIdentifier)}',
exceptionFnMap: _exceptionFns,
);
return GetCollaborationOutput.fromJson(response);
}