Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ee3c88d

Browse files
committed
Add LoggingProperties to Redshift::Cluster
1 parent a78c357 commit ee3c88d

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

troposphere/redshift.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
from .validators import boolean, integer
88

99

10+
class LoggingProperties(AWSProperty):
11+
props = {
12+
'BucketName': (basestring, True),
13+
'S3KeyPrefix': (basestring, False),
14+
}
15+
16+
1017
class Cluster(AWSObject):
1118
resource_type = "AWS::Redshift::Cluster"
1219

@@ -26,6 +33,7 @@ class Cluster(AWSObject):
2633
'HsmConfigurationIdentifier': (basestring, False),
2734
'IamRoles': ([basestring], False),
2835
'KmsKeyId': (basestring, False),
36+
'LoggingProperties': (LoggingProperties, False),
2937
'MasterUsername': (basestring, True),
3038
'MasterUserPassword': (basestring, True),
3139
'NodeType': (basestring, True),

0 commit comments

Comments
 (0)