getEncoderConfiguration method

Future<GetEncoderConfigurationResponse> getEncoderConfiguration({
  1. required String arn,
})

Gets information about the specified EncoderConfiguration resource.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceQuotaExceededException. May throw ValidationException.

Parameter arn : ARN of the EncoderConfiguration resource.

Implementation

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