Add cluster parameter groups.
This commit is contained in:
parent
2418c83252
commit
5bbcc4505f
4 changed files with 195 additions and 8 deletions
|
|
@ -38,6 +38,13 @@ class ClusterSecurityGroupNotFoundError(RedshiftClientError):
|
|||
"Security group {0} not found.".format(group_identifier))
|
||||
|
||||
|
||||
class ClusterParameterGroupNotFoundError(RedshiftClientError):
|
||||
def __init__(self, group_identifier):
|
||||
super(ClusterParameterGroupNotFoundError, self).__init__(
|
||||
'ClusterParameterGroupNotFound',
|
||||
"Parameter group {0} not found.".format(group_identifier))
|
||||
|
||||
|
||||
class InvalidSubnetError(RedshiftClientError):
|
||||
def __init__(self, subnet_identifier):
|
||||
super(InvalidSubnetError, self).__init__(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue