getRouterInputSourceMetadata method

Future<GetRouterInputSourceMetadataResponse> getRouterInputSourceMetadata({
  1. required String arn,
})

Retrieves detailed metadata information about a specific router input source, including stream details and connection state.

May throw BadRequestException. May throw ForbiddenException. May throw InternalServerErrorException. May throw NotFoundException. May throw ServiceUnavailableException. May throw TooManyRequestsException.

Parameter arn : The Amazon Resource Name (ARN) of the router input to retrieve metadata for.

Implementation

Future<GetRouterInputSourceMetadataResponse> getRouterInputSourceMetadata({
  required String arn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/routerInput/${Uri.encodeComponent(arn)}/source-metadata',
    exceptionFnMap: _exceptionFns,
  );
  return GetRouterInputSourceMetadataResponse.fromJson(response);
}