deleteDataProtectionSettings method

Future<void> deleteDataProtectionSettings({
  1. required String dataProtectionSettingsArn,
})

Deletes data protection settings.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter dataProtectionSettingsArn : The ARN of the data protection settings.

Implementation

Future<void> deleteDataProtectionSettings({
  required String dataProtectionSettingsArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/dataProtectionSettings/${dataProtectionSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
}