getRecordingConfiguration method

Future<GetRecordingConfigurationResponse> getRecordingConfiguration({
  1. required String arn,
})

Gets the recording configuration for the specified ARN.

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

Parameter arn : ARN of the recording configuration to be retrieved.

Implementation

Future<GetRecordingConfigurationResponse> getRecordingConfiguration({
  required String arn,
}) async {
  final $payload = <String, dynamic>{
    'arn': arn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/GetRecordingConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return GetRecordingConfigurationResponse.fromJson(response);
}