From f5a13b42aa866b20e8687e9f437a57809b060c8a Mon Sep 17 00:00:00 2001 From: Alexey Tsitkin Date: Wed, 24 Jul 2019 17:27:47 -0700 Subject: [PATCH] fix bug in CodeContent object --- troposphere/kinesisanalyticsv2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/troposphere/kinesisanalyticsv2.py b/troposphere/kinesisanalyticsv2.py index b367e28a5..264e6522f 100644 --- a/troposphere/kinesisanalyticsv2.py +++ b/troposphere/kinesisanalyticsv2.py @@ -30,7 +30,7 @@ class S3ContentLocation(AWSProperty): class CodeContent(AWSProperty): props = { 'ZipFileContent': (basestring, False), - 'S3ContentLocation': S3ContentLocation, + 'S3ContentLocation': (S3ContentLocation, False), 'TextContent': (basestring, False), }