Add basic Network ACL create, describe support
This commit is contained in:
parent
79cd93119d
commit
0f18dd597c
5 changed files with 214 additions and 10 deletions
|
|
@ -72,6 +72,14 @@ class InvalidSubnetIdError(EC2ClientError):
|
|||
.format(subnet_id))
|
||||
|
||||
|
||||
class InvalidNetworkAclIdError(EC2ClientError):
|
||||
def __init__(self, network_acl_id):
|
||||
super(InvalidNetworkAclIdError, self).__init__(
|
||||
"InvalidNetworkAclID.NotFound",
|
||||
"The network acl ID '{0}' does not exist"
|
||||
.format(network_acl_id))
|
||||
|
||||
|
||||
class InvalidNetworkInterfaceIdError(EC2ClientError):
|
||||
def __init__(self, eni_id):
|
||||
super(InvalidNetworkInterfaceIdError, self).__init__(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue