Document internet gateway properties:

AWS::EC2::VPCGatewayAttachment

Fixes bug #1224143

Change-Id: Ia896369f4cfcd5d13d66a2defb120b1c05d71fb6
This commit is contained in:
Jeff Peeler 2013-09-23 11:53:53 -04:00
parent 0eeca3c7d2
commit 5a87dbbb0e
1 changed files with 7 additions and 3 deletions

View File

@ -59,11 +59,15 @@ class VPCGatewayAttachment(resource.Resource):
properties_schema = {
'VpcId': {
'Type': 'String',
'Required': True},
'InternetGatewayId': {'Type': 'String'},
'Required': True,
'Description': _('VPC ID for this gateway association.')},
'InternetGatewayId': {
'Type': 'String',
'Description': _('ID of the InternetGateway.')},
'VpnGatewayId': {
'Type': 'String',
'Implemented': False}
'Implemented': False,
'Description': _('ID of the VPNGateway to attach to the VPC.')}
}
def _vpc_route_tables(self):