deleteDirectoryRegistration method
Deletes a directory registration. Deleting a directory registration deauthorizes Amazon Web Services Private CA with the directory.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter directoryRegistrationArn :
The Amazon Resource Name (ARN) that was returned when you called CreateDirectoryRegistration.
Implementation
Future<void> deleteDirectoryRegistration({
required String directoryRegistrationArn,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/directoryRegistrations/${Uri.encodeComponent(directoryRegistrationArn)}',
exceptionFnMap: _exceptionFns,
);
}