getCollaborationMLInputChannel method

Future<GetCollaborationMLInputChannelResponse> getCollaborationMLInputChannel({
  1. required String collaborationIdentifier,
  2. required String mlInputChannelArn,
})

Returns information about a specific ML input channel in a collaboration.

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

Parameter collaborationIdentifier : The collaboration ID of the collaboration that contains the ML input channel that you want to get.

Parameter mlInputChannelArn : The Amazon Resource Name (ARN) of the ML input channel that you want to get.

Implementation

Future<GetCollaborationMLInputChannelResponse>
    getCollaborationMLInputChannel({
  required String collaborationIdentifier,
  required String mlInputChannelArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/collaborations/${Uri.encodeComponent(collaborationIdentifier)}/ml-input-channels/${Uri.encodeComponent(mlInputChannelArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetCollaborationMLInputChannelResponse.fromJson(response);
}