Document route table properties

AWS::EC2::RouteTable
AWS::EC2::SubnetRouteTableAssocation

Change-Id: I8e9651495e9f03a50fd5a4636fffd8f7c2307669
Closes-bug: #1224147
This commit is contained in:
Jeff Peeler 2013-10-21 15:12:04 -04:00
parent daa8d6c216
commit 2fdda2144c
1 changed files with 8 additions and 4 deletions

View File

@ -34,11 +34,13 @@ class RouteTable(resource.Resource):
properties_schema = {
'VpcId': {
'Type': 'String',
'Required': True},
'Required': True,
'Description': _('VPC ID for where the route table is created.')},
'Tags': {'Type': 'List', 'Schema': {
'Type': 'Map',
'Implemented': False,
'Schema': tags_schema}}
'Schema': tags_schema,
'Description': _('List of tags to be attached to this resource.')}}
}
def handle_create(self):
@ -88,10 +90,12 @@ class SubnetRouteTableAssocation(resource.Resource):
properties_schema = {
'RouteTableId': {
'Type': 'String',
'Required': True},
'Required': True,
'Description': _('Route table ID.')},
'SubnetId': {
'Type': 'String',
'Required': True}
'Required': True,
'Description': _('Subnet ID.')}
}
def handle_create(self):