Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a78c357 commit ee3c88dCopy full SHA for ee3c88d
1 file changed
troposphere/redshift.py
@@ -7,6 +7,13 @@
7
from .validators import boolean, integer
8
9
10
+class LoggingProperties(AWSProperty):
11
+ props = {
12
+ 'BucketName': (basestring, True),
13
+ 'S3KeyPrefix': (basestring, False),
14
+ }
15
+
16
17
class Cluster(AWSObject):
18
resource_type = "AWS::Redshift::Cluster"
19
@@ -26,6 +33,7 @@ class Cluster(AWSObject):
26
33
'HsmConfigurationIdentifier': (basestring, False),
27
34
'IamRoles': ([basestring], False),
28
35
'KmsKeyId': (basestring, False),
36
+ 'LoggingProperties': (LoggingProperties, False),
29
37
'MasterUsername': (basestring, True),
30
38
'MasterUserPassword': (basestring, True),
31
39
'NodeType': (basestring, True),
0 commit comments