getDomainVerification method

Future<GetDomainVerificationResponse> getDomainVerification({
  1. required String domainVerificationIdentifier,
})

Retrieves information about a domain verification.ß

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

Parameter domainVerificationIdentifier : The ID or ARN of the domain verification to retrieve.

Implementation

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