|
1 | | -# Copyright (c) 2012-2021, Mark Peek <mark@peek.org> |
| 1 | +# Copyright (c) 2012-2022, Mark Peek <mark@peek.org> |
2 | 2 | # All rights reserved. |
3 | 3 | # |
4 | 4 | # See LICENSE file for full license. |
5 | 5 | # |
6 | 6 | # *** Do not modify - this file is autogenerated *** |
7 | | -# Resource specification version: 35.0.0 |
| 7 | +# Resource specification version: 51.0.0 |
8 | 8 |
|
9 | 9 |
|
10 | | -from troposphere import Tags |
11 | | - |
12 | | -from . import AWSObject, AWSProperty |
| 10 | +from . import AWSObject, AWSProperty, PropsDictType, Tags |
13 | 11 | from .validators import integer |
14 | 12 |
|
15 | 13 |
|
16 | 14 | class Repository(AWSProperty): |
17 | | - props = { |
| 15 | + """ |
| 16 | + `Repository <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html>`__ |
| 17 | + """ |
| 18 | + |
| 19 | + props: PropsDictType = { |
18 | 20 | "PathComponent": (str, True), |
19 | 21 | "RepositoryUrl": (str, True), |
20 | 22 | } |
21 | 23 |
|
22 | 24 |
|
23 | 25 | class EnvironmentEC2(AWSObject): |
| 26 | + """ |
| 27 | + `EnvironmentEC2 <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html>`__ |
| 28 | + """ |
| 29 | + |
24 | 30 | resource_type = "AWS::Cloud9::EnvironmentEC2" |
25 | 31 |
|
26 | | - props = { |
| 32 | + props: PropsDictType = { |
27 | 33 | "AutomaticStopTimeMinutes": (integer, False), |
28 | 34 | "ConnectionType": (str, False), |
29 | 35 | "Description": (str, False), |
|
0 commit comments