disassociateCertificate method

Future<void> disassociateCertificate({
  1. required String arn,
})

Removes an association between the Amazon Resource Name (ARN) of an AWS Certificate Manager (ACM) certificate and an AWS Elemental MediaConvert resource.

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

Parameter arn : The ARN of the ACM certificate that you want to disassociate from your MediaConvert resource.

Implementation

Future<void> disassociateCertificate({
  required String arn,
}) async {
  ArgumentError.checkNotNull(arn, 'arn');
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/2017-08-29/certificates/${Uri.encodeComponent(arn)}',
    exceptionFnMap: _exceptionFns,
  );
}