Document vpc properties

AWS::EC2::VPC

Change-Id: I2ee6adfa9639f2e99636f0097dff904facd1593d
Closes-bug: #1224159
This commit is contained in:
Jeff Peeler 2013-10-21 16:06:11 -04:00
parent daa8d6c216
commit a59f58ad53
1 changed files with 11 additions and 3 deletions

View File

@ -29,17 +29,25 @@ class VPC(resource.Resource):
'Required': True}}
properties_schema = {
'CidrBlock': {'Type': 'String'},
'CidrBlock': {
'Type': 'String',
'Description': _('CIDR block to apply to the VPC.')},
'InstanceTenancy': {
'Type': 'String',
'AllowedValues': ['default',
'dedicated'],
'Default': 'default',
'Implemented': False},
'Implemented': False,
'Description': _('Allowed tenancy of instances launched in the '
'VPC. default - any tenancy; dedicated - '
'instance will be dedicated, regardless of '
'the tenancy option specified at instance '
'launch.')},
'Tags': {'Type': 'List', 'Schema': {
'Type': 'Map',
'Implemented': False,
'Schema': tags_schema}}
'Schema': tags_schema,
'Description': _('List of tags to attach to the instance.')}}
}
def handle_create(self):