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

Skip to content

Commit d5a21c3

Browse files
ScOut3Rphobologic
authored andcommitted
Use basestring to allow percentage definition in MaintenanceWindowTask (cloudtools#1151)
* add TargetGroupInfo to DeploymentGroup cloudtools#884 * semantic changes cloudtools#884 * update to basestring to allow percentage
1 parent d0f3012 commit d5a21c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

troposphere/ssm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ class MaintenanceWindowTask(AWSObject):
179179
props = {
180180
'Description': (basestring, False),
181181
'LoggingInfo': (LoggingInfo, False),
182-
'MaxConcurrency': (integer, False),
183-
'MaxErrors': (integer, True),
182+
'MaxConcurrency': (basestring, False),
183+
'MaxErrors': (basestring, True),
184184
'Name': (basestring, False),
185185
'Priority': (integer, True),
186186
'ServiceRoleArn': (basestring, True),

0 commit comments

Comments
 (0)