getCollaborationAnalysisTemplate method

Future<GetCollaborationAnalysisTemplateOutput> getCollaborationAnalysisTemplate({
  1. required String analysisTemplateArn,
  2. required String collaborationIdentifier,
})

Retrieves an analysis template within a collaboration.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter analysisTemplateArn : The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.

Parameter collaborationIdentifier : A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.

Implementation

Future<GetCollaborationAnalysisTemplateOutput>
    getCollaborationAnalysisTemplate({
  required String analysisTemplateArn,
  required String collaborationIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/collaborations/${Uri.encodeComponent(collaborationIdentifier)}/analysistemplates/${Uri.encodeComponent(analysisTemplateArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetCollaborationAnalysisTemplateOutput.fromJson(response);
}