Skip to content

Commit

Permalink
Fix properties in LookoutMetrics VpcConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek committed Apr 24, 2021
1 parent d371f0d commit 18095d6
Showing 1 changed file with 7 additions and 17 deletions.
24 changes: 7 additions & 17 deletions troposphere/lookoutmetrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
# See LICENSE file for full license.
#
# *** Do not modify - this file is autogenerated ***
# Resource specification version: 31.2.0
# Resource specification version: 35.0.0


from . import AWSObject, AWSProperty
from .validators import boolean, integer
from . import AWSObject
from . import AWSProperty
from .validators import boolean
from .validators import integer


class Alert(AWSObject):
Expand Down Expand Up @@ -44,22 +46,10 @@ class CloudwatchConfig(AWSProperty):
}


class SecurityGroupIdList(AWSProperty):
props = {
"SecurityGroupIdList": ([str], False),
}


class SubnetIdList(AWSProperty):
props = {
"SubnetIdList": ([str], False),
}


class VpcConfiguration(AWSProperty):
props = {
"SecurityGroupIdList": (SecurityGroupIdList, True),
"SubnetIdList": (SubnetIdList, True),
"SecurityGroupIdList": ([str], True),
"SubnetIdList": ([str], True),
}


Expand Down

0 comments on commit 18095d6

Please sign in to comment.