Allow soft deletion of secrets
This commit is contained in:
parent
fc8cf2d872
commit
749f4f63e6
3 changed files with 103 additions and 18 deletions
|
|
@ -27,3 +27,10 @@ class InvalidParameterException(SecretsManagerClientError):
|
|||
super(InvalidParameterException, self).__init__(
|
||||
'InvalidParameterException',
|
||||
message)
|
||||
|
||||
|
||||
class InvalidRequestException(SecretsManagerClientError):
|
||||
def __init__(self, message):
|
||||
super(InvalidRequestException, self).__init__(
|
||||
'InvalidRequestException',
|
||||
message)
|
||||
Loading…
Add table
Add a link
Reference in a new issue