deleteHsmConfiguration method
Deletes the specified Amazon Redshift HSM configuration.
May throw HsmConfigurationNotFoundFault.
May throw InvalidHsmConfigurationStateFault.
Parameter hsmConfigurationIdentifier :
The identifier of the Amazon Redshift HSM configuration to be deleted.
Implementation
Future<void> deleteHsmConfiguration({
required String hsmConfigurationIdentifier,
}) async {
final $request = <String, String>{
'HsmConfigurationIdentifier': hsmConfigurationIdentifier,
};
await _protocol.send(
$request,
action: 'DeleteHsmConfiguration',
version: '2012-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}