deleteDomainVerification method

Future<void> deleteDomainVerification({
  1. required String domainVerificationIdentifier,
})

Deletes the specified domain verification.

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

Parameter domainVerificationIdentifier : The ID of the domain verification to delete.

Implementation

Future<void> deleteDomainVerification({
  required String domainVerificationIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/domainverifications/${Uri.encodeComponent(domainVerificationIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
}