Skip to content

Commit a1ee643

Browse files
committed
Auto-generate Cloud9
1 parent fdc9d09 commit a1ee643

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

troposphere/cloud9.py

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,35 @@
1-
# Copyright (c) 2012-2021, Mark Peek <mark@peek.org>
1+
# Copyright (c) 2012-2022, Mark Peek <mark@peek.org>
22
# All rights reserved.
33
#
44
# See LICENSE file for full license.
55
#
66
# *** Do not modify - this file is autogenerated ***
7-
# Resource specification version: 35.0.0
7+
# Resource specification version: 51.0.0
88

99

10-
from troposphere import Tags
11-
12-
from . import AWSObject, AWSProperty
10+
from . import AWSObject, AWSProperty, PropsDictType, Tags
1311
from .validators import integer
1412

1513

1614
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 = {
1820
"PathComponent": (str, True),
1921
"RepositoryUrl": (str, True),
2022
}
2123

2224

2325
class EnvironmentEC2(AWSObject):
26+
"""
27+
`EnvironmentEC2 <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html>`__
28+
"""
29+
2430
resource_type = "AWS::Cloud9::EnvironmentEC2"
2531

26-
props = {
32+
props: PropsDictType = {
2733
"AutomaticStopTimeMinutes": (integer, False),
2834
"ConnectionType": (str, False),
2935
"Description": (str, False),

0 commit comments

Comments
 (0)