deleteEncoderConfiguration method
Deletes an EncoderConfiguration resource. Ensures that no Compositions are using this template; otherwise, returns an error.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ServiceQuotaExceededException.
May throw ValidationException.
Parameter arn :
ARN of the EncoderConfiguration.
Implementation
Future<void> deleteEncoderConfiguration({
required String arn,
}) async {
final $payload = <String, dynamic>{
'arn': arn,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DeleteEncoderConfiguration',
exceptionFnMap: _exceptionFns,
);
}