Implementation for ModifySnapshotAttribute and DescribeSnapshotAttribute.
This commit is contained in:
parent
348d1803ed
commit
ebc0037659
4 changed files with 168 additions and 4 deletions
|
|
@ -110,6 +110,14 @@ class InvalidAMIIdError(EC2ClientError):
|
|||
.format(ami_id))
|
||||
|
||||
|
||||
class InvalidAMIAttributeItemValueError(EC2ClientError):
|
||||
def __init__(self, attribute, value):
|
||||
super(InvalidAMIAttributeItemValueError, self).__init__(
|
||||
"InvalidAMIAttributeItemValue",
|
||||
"Invalid attribute item value \"{0}\" for {1} item type."
|
||||
.format(value, attribute))
|
||||
|
||||
|
||||
class InvalidSnapshotIdError(EC2ClientError):
|
||||
def __init__(self, snapshot_id):
|
||||
super(InvalidSnapshotIdError, self).__init__(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue